usgs-makerspace / makerspace-sandbox

Some initial R code for playing with data processing (maybe some light visualization).
Other
0 stars 5 forks source link

Water Temp Symbology updates #692

Closed jenniferRapp closed 3 years ago

jenniferRapp commented 3 years ago

Updates to the Water Temperature map

jenniferRapp commented 3 years ago

@mwernimont About this map suggestion insert the second sentence into the existing text: It shows the latest available daily estimates of natural water temperature for approximately 58,000 stream reaches across the lower forty-eight states. The real-time temperature monitoring sites are visible at finer zoom levels, and clicking will open a graph of the past 7 days of temperature monitoring data along-side the modeled temperature estimates.

mwernimont commented 3 years ago

@jenniferRapp look right? Screen Shot 2020-12-02 at 9 08 05 AM

jenniferRapp commented 3 years ago

I would like to retain the text that followed the "58,000 stream reach' sentence too, just insert the one new sentence about the real-time monitoring sites... @mwernimont

mwernimont commented 3 years ago

Readded: Water temperature is one factor of overall water quality due to its impact on aquatic habitat. Streams naturally have different temperatures depending on how big they are, where they are located, and the time of year. However, there are also external forces such as thermoelectric power plants that may change a stream's temperature and impact aquatic life or the usability of the stream for other purposes.

PR merged here https://github.com/usgs-makerspace/wbeep-viz/pull/604

mwernimont commented 3 years ago

add to legend label: "USGS monitoring station"

add to layer list "USGS temperature monitoring stations"

Increase zoom levels by 2 (or a reasonable zoom for dense urban areas)

update text for About this map.

On test for review

mhines-usgs commented 3 years ago

bumped these few up to circle radius 5 (current wbeep-test is size 4)

original USGS green! :usgs-usgs: with white outline

'paint': {
                'circle-color':  '#006633',
                'circle-stroke-color': 'white',
                'circle-stroke-width': 1,
                'circle-opacity': 0.5,
                'circle-radius': 5
            },

image image

same USGS green with dark green outline instead

'paint': {
                'circle-color':  '#006633',
                'circle-stroke-color': '#014421',
                'circle-stroke-width': 1,
                'circle-opacity': 0.5,
                'circle-radius': 5
            },

image

image

dark gray with black outlines

'paint': {
                'circle-color':  '#2B2D2F',
                'circle-stroke-color': 'black',
                'circle-stroke-width': 1,
                'circle-opacity': 0.5,
                'circle-radius': 5
            },

image nationally gets a bit dark, though. image

some examples with smaller point as we currently have (4)

lighter gray, might not be enough contrast, but i kind of wanted to try some colors that blend into the background more so they're not as dominant/distracting when they appear

        'paint': {
                'circle-color':  '#aaaaaa',
                'circle-stroke-color': '#7e7e7e',
                'circle-stroke-width': 1,
                'circle-opacity': 0.5,
                'circle-radius': 4
            },

image image

similar using gray colors, but more opacity:

'paint': {
                'circle-color':  '#aaaaaa',
                'circle-stroke-color': '#aaaaaa',
                'circle-stroke-width': 1,
                'circle-opacity': 0.2,
                'circle-radius': 4
            },

image image

tiny black dot?

'paint': {
                'circle-color':  '#000000',
                'circle-stroke-color': '#000000',
                'circle-stroke-width': 1,
                'circle-opacity': 1,
                'circle-radius': 2
            },

image

image

mhines-usgs commented 3 years ago

any thoughts on any of those? I really don't have much of a preference, but am thinking we might consider turning them on when the user is slightly more zoomed in now that we give them more zooms to go through. if you want to see any other color ideas, let me know. i tried brighter colors like orange and yellow and they are too crazy at the national level. we should steer clear of red or blue, which is why i originally went with green. gray of a different hue seems ok to me. very undecided.

mwernimont commented 3 years ago

Guess I'm torn, as we aren't really trying to highlight the sites as the main focus on this app right? Its more just of a hey look extra stuff! So I don't really want them blocking the stream color views, which makes me more preferable to the ones where they don't show up as much. Or I could be wrong on the understanding of what we are trying to accomplish and we need the sites to be bold and easily noticeable. Either way I like the original or the gray.

mhines-usgs commented 3 years ago

yeah, it's bonus material, so shouldn't be too dominant or distracting from the stream segments.

jenniferRapp commented 3 years ago

Sweet. Thanks for all the updates. I like the USGS Green circles. I like the size too. can I demo this for the oNHM team tonight? My second favorite is the solid black circle. Third would be triangles pointing downward that are not filled. I think that is what Water Quality Watch uses.

I like the zoom level.

I like that we can turn on and off.

mhines-usgs commented 3 years ago

@jenniferRapp -- sure, do you mean the original green or green with green outline? and size 5 or 4? I'll make the changes and get them out to test if you want to demo for feedback tonight! thanks.

jenniferRapp commented 3 years ago

Green with dark green outline. I think maybe keep them at 4. @mhines-usgs

jenniferRapp commented 3 years ago

@mwernimont When I move around the map, I only have the "hand" panning functionality. As I hover over a Monitoring Site the hand does not switch to a pointed finger or arrow. Is that something we can add in the App?

mwernimont commented 3 years ago

Sure can.

mwernimont commented 3 years ago

PR: https://github.com/usgs-makerspace/wbeep-viz/pull/608

mwernimont commented 3 years ago

on Test

jenniferRapp commented 3 years ago

The modelers really liked the addition of the stream temp monitoring sites. There was discussion about symbology. We ended on the solid black dot so that it doesn't take away from the rivers as much. I wonder if we need a white circle around the black dot to make them seem discrete? Molly really liked the tiny black dot example above.

@mhines-usgs @mwernimont

mhines-usgs commented 3 years ago

tiny black dot with white outline at a more national view image all the way zoomed in image image

will push the change up to test shortly and we can iterate from here!

jenniferRapp commented 3 years ago

Thank you, @mhines-usgs The black dots look good at national and regional scales. They are quite small when we zoom in to the reach scale. They are difficult to click too. I think we might need to bump it up a little in size. I like the white outline. Tough, I liked the green better, but this does create a view that focuses on the river colors.... I think when zoomed in the dot should be wider than the stream.

mhines-usgs commented 3 years ago

ok, I can see about having the dot change size when further zoomed in.

mhines-usgs commented 3 years ago

The station sizes now grow slightly with each zoom level increase -- up on test tier to check out.

If you think they're still too hard to click on, I can bump them up another level.

jenniferRapp commented 3 years ago

I think these look great. Should try on Mobile though!

mhines-usgs commented 3 years ago

I did also push this out to beta, (https://labs-beta.waterdata.usgs.gov/estimated-availability/index.html#/water-temperature) if you can try from your phone and see what you think. it's tight overall with all the headers/warnings/banners .. not sure if we need to consider shrinking the size of the pop up on mobile.

mwernimont commented 3 years ago

Example of popups with a 240px and 300px max width on my phone

240 300

mwernimont commented 3 years ago

Then we could just have the popups bigger on desktop like normal. Feel like 240px would fit most mobile screens pretty easily.

mhines-usgs commented 3 years ago

I think that's a good idea

jenniferRapp commented 3 years ago

240 looks good.