Help with new project  [Solved]

Message
Author
User avatar
Tovian
Posts: 147
Joined: Tue Mar 29, 2011 8:30 pm

Re: Help with new project

#21 Post by Tovian »

HOORAY - got it working exactly the way I wanted !!

:worship: Many, many THANKS to all who helped me with this project :worship:



I hesitate to mark a single post as "the solution" since several folks contributed. But, because the forum leaders request, I will use the supplied tool to mark this "solved"
“I think that this situation absolutely requires a really futile and stupid gesture be done on somebody's part"
"We're just the guys to do it”

Animal House

User avatar
CharlesV
Administrator
Posts: 8068
Joined: Sun Jul 07, 2019 5:11 pm

Re: Help with new project

#22 Post by CharlesV »

Glad to hear you have it working.
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!

User avatar
Tovian
Posts: 147
Joined: Tue Mar 29, 2011 8:30 pm

Re: Help with new project

#23 Post by Tovian »

I absolutely love this new toy. Every time I walk into my "office" I first look at this big, beautiful weather-radar display and instantly know the short-term likelihood of thunderstorms in my part of the world (They pop up almost every afternoon at this time of year, and can be really severe. When I see 'em coming I power down all my computers).

Also, I found the "remote" for the big monitor so I can now turn it on/off without even getting up. And, I used UBlock-Origin to clean up the (web page) display so it's even better now.

Now that I have this terrific tool it will probably never rain another drop in the southeastern United States (??)
But, regardless, thanks again - I'm very pleased !!!

* The only downside is it may motivate me to spend more money on a newer and significantly larger TV/Monitor.
“I think that this situation absolutely requires a really futile and stupid gesture be done on somebody's part"
"We're just the guys to do it”

Animal House

User avatar
DukeComposed
Posts: 1506
Joined: Thu Mar 16, 2023 1:57 pm

Re: Help with new project

#24 Post by DukeComposed »

Tovian wrote: Mon Jun 23, 2025 7:21 pm I absolutely love this new toy. Every time I walk into my "office" I first look at this big, beautiful weather-radar display and instantly know the short-term likelihood of thunderstorms in my part of the world (They pop up almost every afternoon at this time of year, and can be really severe. When I see 'em coming I power down all my computers).
This sounds like a really cool toy, with a good deal of utility behind it, too.

For those curious to know how to set up something similar in a terminal window:

Code: Select all

watch -n 3600 --color "curl https://wttr.in"
should be enough get you a working prototype. Adjust the size of the window and typeface as desired and maybe even put this in a ~/.bashrc or ~/.profile or tmux config to start it automatically if you want a dedicated weather report station like OP.

User avatar
CharlesV
Administrator
Posts: 8068
Joined: Sun Jul 07, 2019 5:11 pm

Re: Help with new project

#25 Post by CharlesV »

Tovian wrote: Mon Jun 23, 2025 7:21 pm I absolutely love this new toy. Every time I walk into my "office" I first look at this big, beautiful weather-radar display and instantly know the short-term likelihood of thunderstorms in my part of the world (They pop up almost every afternoon at this time of year, and can be really severe. When I see 'em coming I power down all my computers).

Also, I found the "remote" for the big monitor so I can now turn it on/off without even getting up. And, I used UBlock-Origin to clean up the (web page) display so it's even better now.

Now that I have this terrific tool it will probably never rain another drop in the southeastern United States (??)
But, regardless, thanks again - I'm very pleased !!!

* The only downside is it may motivate me to spend more money on a newer and significantly larger TV/Monitor.
Excellent! glad to hear this. And yes, I might just do that with one of my old computers too. (or my camera server .)
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!

User avatar
CharlesV
Administrator
Posts: 8068
Joined: Sun Jul 07, 2019 5:11 pm

Re: Help with new project

#26 Post by CharlesV »

@Tovian If I might ask, what weather map are you using?
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!

User avatar
operadude
Posts: 1072
Joined: Tue Nov 05, 2019 12:08 am

Re: Help with new project

#27 Post by operadude »

DukeComposed wrote: Mon Jun 23, 2025 7:55 pm
Tovian wrote: Mon Jun 23, 2025 7:21 pm I absolutely love this new toy. Every time I walk into my "office" I first look at this big, beautiful weather-radar display and instantly know the short-term likelihood of thunderstorms in my part of the world (They pop up almost every afternoon at this time of year, and can be really severe. When I see 'em coming I power down all my computers).
This sounds like a really cool toy, with a good deal of utility behind it, too.

For those curious to know how to set up something similar in a terminal window:

Code: Select all

watch -n 3600 --color "curl https://wttr.in"
should be enough get you a working prototype. Adjust the size of the window and typeface as desired and maybe even put this in a ~/.bashrc or ~/.profile or tmux config to start it automatically if you want a dedicated weather report station like OP.
:number1:

AMAZING :exclamation:

Just tried it, and put my specific location, like this:

Code: Select all

watch -n 3600 --color "curl https://wttr.in/NameOfState"
Note: Enter your actual State for "NameOfState" above...

Not sure if it can do City-specific or GPS coordinates, but WOW :exclamation:

Thanks @DukeComposed :cool:

EDIT/ADDENDUM:

Just checked the Developer's contact info/site (X), and he has examples of specific cities, and more, e.g. comparing the weather in 2 cities. When you run the code to get the weather, there's a link to his X page, where you can see examples of this cool stuff:

https://x.com/igor_chubin

From there, there is a link to his github repo:

https://github.com/chubin

:cool:

User avatar
DukeComposed
Posts: 1506
Joined: Thu Mar 16, 2023 1:57 pm

Re: Help with new project

#28 Post by DukeComposed »

operadude wrote: Tue Jun 24, 2025 6:31 am Not sure if it can do City-specific or GPS coordinates, but WOW :exclamation:
It can:
Supported location types:

Code: Select all

    /paris                  # city name
    /~Eiffel+tower          # any location (+ for spaces)
    /Москва                 # Unicode name of any location in any language
    /muc                    # airport code (3 letters)
    /@stackoverflow.com     # domain name
    /94107                  # area codes
    /-78.46,106.79          # GPS coordinates
I'm pretty sure "area codes" here is supposed to be ZIP codes, but the idea still stands.

User avatar
operadude
Posts: 1072
Joined: Tue Nov 05, 2019 12:08 am

Re: Help with new project

#29 Post by operadude »

DukeComposed wrote: Tue Jun 24, 2025 6:43 am
operadude wrote: Tue Jun 24, 2025 6:31 am Not sure if it can do City-specific or GPS coordinates, but WOW :exclamation:
It can:
Supported location types:

Code: Select all

    /paris                  # city name
    /~Eiffel+tower          # any location (+ for spaces)
    /Москва                 # Unicode name of any location in any language
    /muc                    # airport code (3 letters)
    /@stackoverflow.com     # domain name
    /94107                  # area codes
    /-78.46,106.79          # GPS coordinates
I'm pretty sure "area codes" here is supposed to be ZIP codes, but the idea still stands.
WOW :exclamation:

It just keeps getting better :exclamation:

And...

'Loves me my CLIs'

:cool:

User avatar
Tovian
Posts: 147
Joined: Tue Mar 29, 2011 8:30 pm

Re: Help with new project

#30 Post by Tovian »

@CharlesV - Oops, sorry, I probably should have posted that at the beginning. But, here 'tis:

Code: Select all

https://radar.weather.gov/?settings=v1_eyJhZ2VuZGEiOnsiaWQiOiJ3ZWF0aGVyIiwiY2VudGVyIjpbLTg2LjYzNCwzNC4wNjJdLCJsb2NhdGlvbiI6Wy04NC40NTksMzQuMDYyXSwiem9vbSI6NiwibGF5ZXIiOiJicmVmX3FjZCJ9LCJhbmltYXRpbmciOmZhbHNlLCJiYXNlIjoic3RhbmRhcmQiLCJhcnRjYyI6ZmFsc2UsImNvdW50eSI6ZmFsc2UsImN3YSI6ZmFsc2UsInJmYyI6ZmFsc2UsInN0YXRlIjpmYWxzZSwibWVudSI6ZmFsc2UsInNob3J0RnVzZWRPbmx5IjpmYWxzZSwib3BhY2l0eSI6eyJhbGVydHMiOjAsImxvY2FsIjowLjYsImxvY2FsU3RhdGlvbnMiOjAuOCwibmF0aW9uYWwiOjAuNzl9fQ%3D%3D
That url gets to my general area, but you can mouse-move the map and zoom in/out to get whatever display suits you. And there's a few thousand other weather-data pages on this site as well. This is US Government (NOAA) data - but, as we all know, www.guesswhatscomingnextintheatmosphere.con is probably just as reliable (I always think of the "Wizard of ID" when I think of weather forecasters 9_9 ).
“I think that this situation absolutely requires a really futile and stupid gesture be done on somebody's part"
"We're just the guys to do it”

Animal House

Post Reply

Return to “Software / Configuration”