n0bel / PiClock

A Fancy Clock built around a monitor and a Raspberry Pi
MIT License
564 stars 182 forks source link

Pi Clock Weather Web Display #274

Closed maserowik closed 6 months ago

maserowik commented 6 months ago

@SerBrynden

image

How did you get the full USA to display on this?

Mike

SerBrynden commented 6 months ago

Adjust the zoom level and coordinates for that particular radar frame in the config file.

maserowik commented 6 months ago

do you happend to know what section on the in the code to change.  There a quite a few places in there.

On Thursday, January 4, 2024 at 10:54:06 AM EST, Brendan Curley ***@***.***> wrote:  

Adjust the zoom level and coordinates for that particular radar frame in the config file.

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

SerBrynden commented 6 months ago

In your config file:

radar4 = {
    'center': LatLng(38, -96),
    'zoom': 4,
    'basemap': map_base,
    'overlay': map_overlay,
    'color': 6,
    'smooth': 1,
    'snow': 1,
    'markers': (
        {
            'visible': 0,
            'location': radar_location,
            'color': 'red',
            'size': 'small',
            'image': 'teardrop-dot',
        },
    )
}
maserowik commented 6 months ago

thanks closing this.