Page 8 of 30

Re: Weather34 Meteobridge Master Template Download

Posted: Fri Mar 24, 2023 2:37 pm
by ConligWX
Hi Brian, just a quick question on the bottom bar in layout 6, its just cosmetic, but I can see a difference.

on the right hand side of the bottom bar it appears to be shorter in length and does not protrude out like the left of the top bar. can this be fixed?
Capture.PNG
Capture.PNG (6.42 KiB) Viewed 43997 times
Capture1.PNG
Capture1.PNG (10.2 KiB) Viewed 43997 times

Re: Weather34 Meteobridge Master Template Download

Posted: Sat Mar 25, 2023 5:29 am
by weatherist34
Hello Simon

sure no problem
Simple-Update-Aurora-MKII-April-2023-Rev-A.zip
https://www.mediafire.com/file/rayv6s4f ... A.zip/file

fixes toolbar overlap (Simon)
adds requested large numerical numbers to rain gauge to match other modules (Luca)
improves contrast on webcam image module (George)

Re: Weather34 Meteobridge Master Template Download

Posted: Sun Mar 26, 2023 9:40 am
by weatherist34
Good morning

a kind request can you please hang on to your ideas I have quite a few to go through and I will endeavor to look at them all and implement where possible or feasiable .Please don't be offended just too much backlog then often good ideas get lost.brian

Simple-Update-Aurora-MKII-April-2023-Rev-B
https://www.mediafire.com/file/ue8op4wt ... B.zip/file

reworks the wind compass layout to reflect wind speed inside compass itself ,numerical wind bearing moved to end of wind bearing phrases
minor reduction in webcam contrast filter
reworks mobile layout
WIND.png
WIND.png (261.59 KiB) Viewed 43949 times
lar.png
lar.png (161.37 KiB) Viewed 43939 times

Re: Weather34 Meteobridge Master Template Download

Posted: Sun Mar 26, 2023 4:58 pm
by jmontamat
Good afternoon, the overlay if the dewpoint is below zero.
thanks

Re: Weather34 Meteobridge Master Template Download

Posted: Sun Mar 26, 2023 7:49 pm
by weatherist34
i can fix that one :D

Simple-Update-Aurora-MKII-April-2023-Rev-C
https://www.mediafire.com/file/7jl80b6c ... C.zip/file

many thanks
Screenshot at Mar 26 20-56-17.png
Screenshot at Mar 26 20-56-17.png (253.22 KiB) Viewed 43906 times

Re: Weather34 Meteobridge Master Template Download

Posted: Mon Mar 27, 2023 9:31 am
by jmontamat
Good Morning

Thanks Brian.

Android ???

Re: Weather34 Meteobridge Master Template Download

Posted: Mon Mar 27, 2023 9:56 am
by weatherist34
oh shite :D in short yesterday I spilt coffee over my keyboard Im guessing this just inserted loads of random letters and characters in the open file which was that one ,needless to say the keyboard is basically fooked ...

anyway I dont have any android stuff but Im guessing Chrome is close to it .so once again many thanks for highlighting it hopefully this fixes it theoretically .

Simple-Update-Aurora-MKII-April-2023-Rev-D
https://www.mediafire.com/file/bf5nr5tx ... D.zip/file

BROWSERS chrome/firefox/safari in that order
brows.png
brows.png (432.92 KiB) Viewed 43882 times

Re: Weather34 Meteobridge Master Template Download

Posted: Mon Mar 27, 2023 10:07 am
by jmontamat
Solved Thanks. :D :D

Re: Weather34 Meteobridge Master Template Download

Posted: Mon Mar 27, 2023 11:10 am
by jmontamat
It's hidden

$directionchange

and center units

in both modules

directionmod-full-small.php

directionmod-full.php

thank you.

Re: Weather34 Meteobridge Master Template Download

Posted: Mon Mar 27, 2023 1:34 pm
by weatherist34
im sorry Josep i get the centre offset for units to cater for decimal places thats how its intended,cater for upto two decimals places. but the blue arrows i cant reproduce at all in any browser so question does your browser or device support webkit or unicode ??? if not there is not much I can do because they are simple unicode css content "\25C0 \25C0 \25C0" which has been used for a few years in other versions .

perhaps im misunderstanding your question/issue

Re: Weather34 Meteobridge Master Template Download

Posted: Mon Mar 27, 2023 1:53 pm
by jmontamat
If you are right, it looks good on other computers.
to investigate
thank you.

Re: Weather34 Meteobridge Master Template Download

Posted: Wed Mar 29, 2023 10:24 am
by jmontamat
good morning

Could the bar be colored according to its high or low pressure ? ?
thank you.

Re: Weather34 Meteobridge Master Template Download

Posted: Wed Mar 29, 2023 7:05 pm
by jasonmfarrow
Hi Jontamat,

The choice of colour is always a personal one. If there could be one ask from Brian, and I am in no position to ask such things, it would be to somehow allow, as part of the settings page, the ability for a user to define their own colours for cold to hot, wet to dry, high to low.

Eg. AQI. Different contries use different colours at different particulate levels. There's also different partiulate levels as well for each tier of health hazard depending on your country. However, the flexibility to user-select both the criteria and colour would be a lot of coding.

As all the main displays are color coded in CSS, the graphs being color coded in each PHP file, there would be the challenge of propagting variables from PHP into CSS. Quite a challenge as I think all the colour .CSS would be have to be re-written as .PHP scripts.

Re: Weather34 Meteobridge Master Template Download

Posted: Thu Mar 30, 2023 7:06 am
by weatherist34
jmontamat wrote: Wed Mar 29, 2023 10:24 am good morning

Could the bar be colored according to its high or low pressure ? ?
thank you.
good morning Josep

sure we can what range of colours would you like .?

<?php
//barometer | pressure colours //

if ($baro>=900 && $baro<=990) {$barocolor='hsl(201, 79%, 47%)';} //red
else if ($baro>990 && $baro<=1010) {$barocolor='hsl(75, 62%, 43%)';} // yellow
else if ($baro>1010 && $baro<=1020) {$barocolor='hsl(35, 77%, 58%)';} //green
else if ($baro>1020 && $baro<=1030) {$barocolor='hsl(19, 66%, 55%)';} //???
else if ($baro>1030 && $baro<=1040) {$barocolor='hsl(12, 80%, 52%)';} // ???
else if ($baro>1040 && $baro<=1060) {$barocolor='hsl(2, 56%, 55%)';} // ???

?>

just fill in the question marks (??? ) there is css already built in I can just change the color to suit * note i use hsl or hsla to create a shade of particular colur. if you can just type the name of the color i.e blue , purple etc then its very easy implement for all be it inHg,hPa,mb etc .

brian

Re: Weather34 Meteobridge Master Template Download

Posted: Thu Mar 30, 2023 8:48 am
by jmontamat
thank you will try it.