gravitystorm / openstreetmap-carto

A general-purpose OpenStreetMap mapnik style, in CartoCSS
Other
1.53k stars 817 forks source link

Change pattern for intermittent water areas #3468

Open jeisenbe opened 5 years ago

jeisenbe commented 5 years ago

Expected behavior

Intermittent and seasonal areas of water should be rendered with a natural-looking pattern, as is the case for other areas of natural landcover. For example, a blue dot pattern, as seen in the two lakes on the right in this sample image:

z10_lake_intermittent

Actual behavior

Intermittent lakes and rivers are rendered with strong horizontal blue and white stripes. This looks unnatural and does not work well with narrow lakes or rivers.

lakes-intermittent-z10

Intermittent river polygons look particularly strange:

timika-river

The dashed line for intermittent waterway=river also clashes with the horizontal stripes:

intermittent-line-area

Proposed fix

Use a random dot pattern, similar to those used for sand or beaches, with blue on a light background, for intermittent or seasonal natural=water. I believe this should also be done for waterway=riverbank polygons and natural=water with water=river.

Text example with natural=riverbank: dots-river-timika

jeisenbe commented 5 years ago

The remaining question for river water polygons is whether the pattern should be transparent, so that we can see the underlying surface (eg sand, shingle, grass). But this would allow the line of the waterway=river to show as well.

I've updated the original post with some examples of intermittent rivers, and a test rendering I made.

matkoniecz commented 5 years ago

For example, a blue dot pattern, as seen in the two lakes on the right in this sample image:

It looks like a wetland for me. I would need to check discussions whatever it was intentional but current rendering of wetlands areas makes this mistake unlikely (at least for me) and (at least for me) works well to suggest that it may be either full of water or completely dry.

kocio-pl commented 5 years ago

I like their current look. We try to show something that can't be depicted in a simple way, something unusual - passage of time on static image, so it's the upside of "unnatural" rendering. We use more natural patterns (like what you've proposed) to show natural looking areas.

jeisenbe commented 5 years ago

What do you think about the intermittent river water areas? I find that the strong horizontal lines make it harder to visually follow the riverbanks, and the lines clash with the dashed line of an intermittent river waterway. On Mon, Oct 22, 2018 at 3:49 AM kocio-pl notifications@github.com wrote:

I like their current look. We try to show something that can't be depicted in a simple way, something unusual - passage of time on static image, so it's the upside of "unnatural" rendering. We use more natural patterns (like what you've proposed) to show natural looking areas.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-431693758, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshDEKhiJ1qtCnBi-JubMf40-tB6_Bks5unMGvgaJpZM4XycbR .

Adamant36 commented 5 years ago
  1. What would the dot pattern look like with a river line underneath it? It would probably make it harder to distinguish.
  2. It would probably make it impossible to tell that a water body is intermittent higher zoom levels, for instance the intermittent lakes in California that are currently visible as such at z6, due to the dots potentially being to condensed at that point.
  3. It probably wouldn't look right with a surface underneath it. Unless it was semi transparent. Which would probably take extra, unnecessary at this point, code to pull off with surfaces as exceptions to normal rendering.
jeisenbe commented 5 years ago

Heres an example with a river aligned east-west. I think this doesn't work well with the current horizontal line pattern:

Priluk, Russia https://www.openstreetmap.org/#map=13/61.3360924/42.981087

Current rendering z13: russia-river-stripes

Dot pattern z13: russia-river-dots

But vertically-oriented rivers and lakes also look a little strange now. You can also see intermittent water near wetlands (mangroves) in the image below: Timika, Papua Indonesia https://www.openstreetmap.org/#map=10/-4.6411825/136.9440304 timika-lowzoom

jeisenbe commented 5 years ago

1. Re: "What would the dot pattern look like with a river line underneath it?" I believe waterways currently render over polygon areas, not under. This makes sense because you still want to be able to see the course of the river through an intermittent or seasonal waterbody.

Current rendering with waterway=river: https://www.openstreetmap.org/#map=15/-4.4002763,136.9389841

Dot pattern for natural=riverbank, with waterway=river: nawaripi-dots

Current rendering with intermittent river:

Dot pattern for water area, with waterway=river intermittent=yes: dots-dashes-river

2. Re: intermittent lakes at z6: The dot pattern doesn't change with the zoom level, so I believe legibility is improved compared to the current pattern.

Australia has many intermittent lakes, small to huge. Here's an example, "Lake Yamma Yamma (Way 220925120) (note that I added surfaces eg grass, shingle, mud, for testing in the small lake)

z6 dots (note this is only the coastline and lakes; I couldn't download all of Australia) z6-lake-dot

z6 stripes z6-lake-stripes

z7 dots z7-dot

z7 stripes z7-stripes

z8 dots (note that the test surfaces are visible in the smaller lake at this level) z8-dots

z8 stripes z8-stripes

3. Re: Surfaces under water. This is easy to implement, because the pattern is transparent. I believe this is already the case. These are some examples I made in JOSM; top right to bottom left are grass, sand, shingle, bare_rock, scrub, mud and wetland=marsh. (The last two look strange in both of the styles; I believe there is an open issue about mud wetland rendering on water)

Current rendering z12 with landcover: lake stripes-overlays

Dot pattern z12 with landcover: lake-dot-overlays

z9 dots: z9-dots

z9 stripes: z9-stripes

@Adamant36, if you have time to test this in California, just add this to /symbol: water_intermittent.png, and change the code in water.mss from intermittent_water.png to water_intermittent.png

Adamant36 commented 5 years ago

@jeisenbe, thanks for the tests. It actually looks a lot better then I thought it would. I'll have to give it a try in California when I have the time. What did you use to create the pattern?

Tomasz-W commented 5 years ago

I'm against this change, beacuse we need a way to show some property of area (so current rendering works good in this aspect), not it's surface.

jeisenbe commented 5 years ago

I've found some rivers are mapped with intermittent water plus natural=sand for sand islands that are covered seasonally. The horizontal stripes obscure too much of the sand pattern. A random dot pattern makes the underlying sand more apparent:

https://www.openstreetmap.org/#map=15/61.3362/72.0177

Regular stripes at z15: z15-stripes

Random dots at z15: z15 dots

Regular stripes at z16: z16-stripes

Random dots at z16: z16-dots

jeisenbe commented 5 years ago

@Imagico made the pattern, I downloaded it from his fork. I believe it was made with his pattern generator tool.

It might be nice to try a few more patterns, eg more closely spaced dots or slightly larger dots. If others are interested in seeing this On Mon, Oct 22, 2018 at 5:59 PM Adamant36 notifications@github.com wrote:

@jeisenbe https://github.com/jeisenbe, thanks for the tests. It actually looks a lot better then I thought it would. I'll have to give it a try in California when I have the time. What did you use to create the pattern?

— You are receiving this because you were mentioned.

Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-431772616, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshGxKQu0VhNRHoq3hqXrFTasKdSIaks5unYjngaJpZM4XycbR .

jeisenbe commented 5 years ago

Re: “We need a way to show some property of area, not it's surface.”

What do you mean? I don’t understand this sentence.

The suggested change is from a regular pattern of stripes to an irregular pattern of dots. Both are transparent, so both the current and proposed rendering show underlying sand/rock/grass etc. On Mon, Oct 22, 2018 at 7:55 PM Tomasz Wójcik notifications@github.com wrote:

I'm against this change, beacuse we need a way to show some property of area (so current rendering works good in this aspect), not it's surface.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-431793564, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshAY-sbze4yPtehSvJK11nr4ehvymks5unaQegaJpZM4XycbR .

kocio-pl commented 5 years ago

What do you mean? I don’t understand this sentence.

I guess the same as what we claimed before - that regular pattern does not suggest that it's kind of wet surface, it's clear that it's something more abstract.

This kind of pattern looks nicer in some places (with intermittent river, I admit), but it's misleading as a symbol for me.

jragusa commented 5 years ago

Please also consider #709 for which I also proposed to use the same pattern than intermittent water

jeisenbe commented 5 years ago

Good idea. I agree that retention basins should be rendered as intermittent water, because they are usually dry but occasionally fill with water.

The pattern used can be the same as with natural=water plus intermittent=yes or seasonal

On Wed, Oct 24, 2018 at 7:02 PM Jérémy Ragusa notifications@github.com wrote:

Please also consider #709 https://github.com/gravitystorm/openstreetmap-carto/issues/709 for which I also proposed to use the same pattern than intermittent water

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-432594979, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshHQjxP7ZztIcg3LiOTf_aZ7fjSmKks5uoDq1gaJpZM4XycbR .

turnsole80 commented 5 years ago

I like the idea of change in this case. The lines are a bit too strong. Although the dots are very wetland like, that's not such a problem, since the idea should be to warn of areas that may be wet or hazardous

jeisenbe commented 5 years ago

In the USA, intermittent lakes and pools are considered wetlands, according to the government, and some wetlands are only seasonal.

Personally I find the random dots to be not much more similar to wetland rendering than the horizontal stripes. The current generic wetland pattern is horizontal dashes. On Wed, Oct 24, 2018 at 9:50 PM Chris notifications@github.com wrote:

I like the idea of change in this case. The lines are a bit too strong. Although the dots are very wetland like, that's not such a problem, since the idea should be to warn of areas that may be wet or hazardous

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-432641532, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshA_ds5qzNQ51dowVQJKYHkghiAnkks5uoGIUgaJpZM4XycbR .

matkoniecz commented 5 years ago

Personally I find the random dots to be not much more similar to wetland rendering than the horizontal stripes. The current generic wetland pattern is horizontal dashes.

Note that it is preferable to have map that is as clear as possible to someone new, not only to ones who know it well.

according to the government

I am not convinced that legal classification is important - for various reasons things are legally classified in sometimes bizarre ways.

turnsole80 commented 5 years ago

I would suggest following that which is used across multiple platforms, and/or best practice, which IMO would lean toward using dots rather than stripes

matkoniecz commented 5 years ago

I would suggest following that which is used across multiple platforms, and/or best practice, which IMO would lean toward using dots rather than stripes

Can you give examples of maps showing intermittent status of water areas? AFAIK this information is rarely displayed and usually in ways not suitable for this map style.

I am pretty sure there is no standard for that.

Such research takes long time, but would be useful (assuming that it looks for rendering overview, not only for map examples that match closely to the preferred rendering).

Adamant36 commented 5 years ago

@matkoniecz, the USGS uses dots in the style suggested here to show intermittent water bodies on some of its topographic maps. Although I can't find the specific map where I saw it, here's a link to their map symbols list. Which shows it on the 3rd and 4th pages. Interestingly, they also show some intermittent lakes as lines also. So I'm not sure which is the preferred method, but at least it shows that intermittent status being used by a major map maker.

https://www.wvgs.wvnet.edu/www/maps/topomapsymbols_MapX1B.pdf

jragusa commented 5 years ago

@jeisenbe could you try with thinner blue stripes ? That would resolved the rendering with intermittent river

turnsole80 commented 5 years ago

Not a problem. I was able to assemble a couple:

Australia: image

Australia/New South Wales: image

Australia/Queensland: image

New Zealand: Not rendered

South Africa (historical): image

jeisenbe commented 5 years ago

Thank you Chris, that was helpful.

Does anyone have links to examples of other possible renderings for intermittent lakes and river areas?

Joseph On Sat, Oct 27, 2018 at 8:10 PM Chris notifications@github.com wrote:

Not a problem. I was able to assemble a couple:

Australia: [image: image] https://user-images.githubusercontent.com/26226665/47603219-bedb5580-da34-11e8-91b1-777426892b30.png

Australia/New South Wales: [image: image] https://user-images.githubusercontent.com/26226665/47603235-06fa7800-da35-11e8-808c-fa776f49974f.png

Australia/Queensland: [image: image] https://user-images.githubusercontent.com/26226665/47603128-445e0600-da33-11e8-8784-9225a552028c.png

New Zealand: Not rendered

South Africa (historical): [image: image] https://user-images.githubusercontent.com/26226665/47603184-41afe080-da34-11e8-95ff-d5ba1c2e37de.png

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-433611441, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshK5WGUWAJz_f8aESVmjgACN0N1oEks5upD8LgaJpZM4XycbR .

jragusa commented 5 years ago

I have published an example on french totopographic map in the previous discussion #996: intermittent

jeisenbe commented 5 years ago

Thank you for the link. This is the French topo map mentioned: https://user-images.githubusercontent.com/9897203/36991179-340db25a-20a7-11e8-9854-97ec997cf850.png

But note “The horizontal hatching in French topographic maps indicates Zone inondable - which means area subject to flooding which is not the same as intermittent waterbodies in OSM” - see http://www.viewranger.com/help/FranceLegend.pdf

“Zone inondable has a fairly specific meaning in French - see https://fr.wikipedia.org/wiki/Zone_inondable - that is strongly tied to French climate and the flooding patterns“ On Mon, Oct 29, 2018 at 5:57 PM Jérémy Ragusa notifications@github.com wrote:

I have published an example on french totopographic map in the previous discussion #996 https://github.com/gravitystorm/openstreetmap-carto/issues/996: [image: intermittent] https://user-images.githubusercontent.com/9897203/36991179-340db25a-20a7-11e8-9854-97ec997cf850.png

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-433833172, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshKpOnXY3am4ufuag0UnoeG2uc9kWks5upsL5gaJpZM4XycbR .

turnsole80 commented 5 years ago

I have to say, I'm really taken with the way the South African maps handle water (and sand too actually - I think there are some ideas there we could work with), so that would be my preferred route to pursue.

kocio-pl commented 5 years ago

Which example do you mean, all of them in general or some particular things?

turnsole80 commented 5 years ago

Just the rendering of intermittent water for now. As far as the sand is concerned, that can wait until another time. The other water features, such as rice, can also wait, but are worth noting for when the time comes :)

jeisenbe commented 5 years ago

I managed to make version of the current intermittent water pattern, but with stripes 1/2 thickness. I believe it should be close to 1 pixel now.

This looks much better and it is more similar to the French map above, although I still prefer the dot pattern as seen in maps used in most English-speaking countries, especially for rivers and long horizontal lakes (see z8 and z10 below)

However, I now believe that the dot pattern really needs to have an outline, either a thin blue line or a dashed blue line. This would also improve the stripe pattern, as seen in the French map.

I've also tried examples with an approximately doubled density of dots. These are not entirely random; I just copied and rotated the original image by 90 degrees and overplayed the result. I would need to use @imagico's random pattern generator before making a real PR, but this gives and idea of what is possible. This denser pattern would be better for thin lakes and rivers.

Does anyone know how the HikeBikeMap style manages to combine water polygons before drawing outlines? Is there some preprocessing of water polygons involved? Outlines would be even better.

Examples in Northern Territory, Australia:

z5 Northern Territory

  1. Current wide stripes nt-z5-bigstripes

  2. Narrower stripes nt-z5-thinstripes

  3. Dots nt-z5-dots

  4. Double Dots nt-z5-2dots

(@Adamant36 is this low zoom enough for you? 😄 )

z6 Northern Territory, Australia

  1. Current wide stripes nt-z6-bigstripes

  2. Narrower stripes nt-z6-smallstripes

  3. Dots nt-z6-dots

  4. Double Dots nt-z6-2dots

z7 Alice Springs, NT, Australia

  1. Wide stripes (current rendering) alice-z7-bigstripes

  2. Narrow stripes nt-z7-smallstripes

  3. Dots alice-z7-dots

  4. Double Dots nt-z7-2dots

z8 Alice Springs, Northern Territory

  1. Wide stripes alice-z8-bigstripes

  2. Narrow stripes alice-z8-small-stripes

  3. Dots alice-z8-dots

  4. Double dots alice-z8-2dots

z9 NT Lakes

  1. Wide stripes nt-z9-bigstripes

  2. Narrow stripes nt-z9-smallstripes

  3. Dots nt-z9-dots

  4. Double dots nt-z9-2dots

z10 Lake Amadeus, near Alice Springs

  1. Wide stripes alice-z10-bigstripes

  2. Narrow stripes alice-z10-smallstripes

  3. Dots alice-z10-dots

  4. Double dots alice-z10-2dots

kocio-pl commented 5 years ago

Thanks for testing.

Narrow stripes are hardly visible for me and it looks like a paler shade of water. Effectively it is the same problem as with all the dots: it looks like new kind of natural water-related surface, which it isn't. Wide stripes look the best for me, since they clearly suggest that the water is still a water (the same color) and this is not depiction of a surface but some abstract idea (changes in time).

sommerluk commented 5 years ago

Agree with @kocio-pl . The stripes might have a not so pleasant look, but it represents quite well that there might be either a lot of water or no water at all. (The dots however look to me like something in the middle, like wetland instead of intermittend).

Adamant36 commented 5 years ago

@sommerluk, less dots perhaps? In the example maps there's a lot more space between them. Maybe that would help.

kocio-pl commented 5 years ago

I don't see a point in more testing this idea, because problem is not related to a density of dots. It was nice to see another solid research by @jeisenbe instead of just guessing, but it proved this looks like a surface with every other pattern. It seems unlikely to me that further playing with this idea will change anything, so I will close this ticket now.

jeisenbe commented 5 years ago

Does anyone else think thinner stripes would be an improvement? It certainly makes it easier to follow the outline of the water body.

Right now the 2 pixel tall gaps between blue stripes lead to significant visual artifacts when the edge of the water area is complex, as seen in the zoom 7 to 10 examples above.

I was going to try testing adding a 0.5 to 1.0 pixel outline for intermittent water bodies to help with this problem; this looks really nice on the version of the HikeBikeMap that is deployed on http://MapOSMatic.osm-baustelle.de/new/ On Sun, Nov 4, 2018 at 1:51 AM kocio-pl notifications@github.com wrote:

I don't see a point in more testing this idea, because problem is not related to a density of dots. It was nice to see another solid research by @jeisenbe https://github.com/jeisenbe instead of just guessing, but it proved this looks like a surface with every other pattern. It seems unlikely to me that further playing with this idea will change anything, so I will close this ticket now.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gravitystorm/openstreetmap-carto/issues/3468#issuecomment-435602998, or mute the thread https://github.com/notifications/unsubscribe-auth/AoxshGrbzN-dN9bn5U8n4Bsj5bg5hyGzks5urcl9gaJpZM4XycbR .

Adamant36 commented 5 years ago

I don't know. I like the thinner stripes if its zoomed in more, but zoomed out they blend together to much and you lose the effect.

sommerluk commented 5 years ago

Does anyone else think thinner stripes would be an improvement? It certainly makes it easier to follow the outline of the water body.

Smaller stripes makes it is indeed easier to follow the outline – especially for water bodies having a bigger est-west distance than north-south.

However, this obvious benefit has to be compared with the disadvantage that smaller stripes are more difficult to recognize as stripes (as @kocio-pl said, “it looks like a paler shade of water”).

For me, in this case the disadvantages weight more than the benefits.

jeisenbe commented 5 years ago

Here are some examples with a 0.4 to 1.2 pixel outline. This really helps with smaller water bodies and at low zoom levels. For the dotted pattern I've tested a dashed outline at z7 and up, but for the stripes I have used a solid line because dashes would interfere with the stripe pattern. I set the size of the outline based on the size of the waterbody, but it would look similar to set it by zoom level

On my 1280 x 800 monitor the thin stripes still look good, but I imagine if you are using a retina display (eg recent smartphone or new laptop) they would be too thin. This is a problem for many of our patterns, which were clearly designed for standard desktop resolution displays.

Examples in Northern Territory, Australia:

z5 Northern Territory Current nt-z5-bigstripes

2 pixel stripes + outline z5-line

1 pixel stripes + outline z5-thin-line

Dots + outline z5-dot-dash

z6 Northern Territory, Australia Current nt-z6-bigstripes

2 pixel stripes + outline z6-line

1 pixel stripes + outline z6-thin-line

Dots + outline z6-dot-dash

z7 Alice Springs, NT, Australia Current alice-z7-bigstripes

2 pixel stripes + outline z7-line

1 pixel stripes + outline z7-thin-line

Dots + dashed outline z7-dot-dash

z8 Alice Springs, Northern Territory Current alice-z8-bigstripes

2 pixel stripes + outline z8-line

1 pixel stripes + outline z8-thin-line

Dots + dashed outline z8-dot-dash

z9 Lakes Current nt-z9-bigstripes

2 pixel stripes + outline z9-line

1 pixel stripes + outline z9-line-thin

Dots + dashed outline z9-dot-dash

z10 Lake Amadeus, SW of Alice Springs Current alice-z10-bigstripes

2 pixel stripes + outline z10-line

1 pixel stripes + outline z10-thin-line

Dots + dashed outline z10-dot-dash

StyXman commented 5 years ago

@jeisenbe do you have this tests in a branch somewhere? I definitely like the dots + dashed outline.

jeisenbe commented 5 years ago

I've rebased the branch "intermittent" and pushed it to https://github.com/jeisenbe/openstreetmap-carto/tree/intermittent

This has the new pattern (borrowed from @imagico - in the osm-carto-alternative-colors style) and also a dashed outline for intermittent water areas.

jeisenbe commented 4 years ago

The current pattern still works poorly for intermittent river areas.

z16-intermittent-river-area-16-43 6138-3 8889

z17-intermittent-river-area-17-43 61373-3 88753

And as mentioned above, the dashed line for intermittent waterway=river features clashes with the horizontal stripes, and strong horizontal lines make it harder to visually follow the riverbanks.

jragusa commented 4 years ago

The dots + dashed outline you proposed previously looks good to me.

Can you test this pattern on your example above ?

jeisenbe commented 4 years ago

Rivers are the main problem with the current pattern (though intermittent reservoirs often have the same issue at mid and low-mid zoom levels , if they follow a narrow river valley):

z15 Aroyelvi river, Norway z15-aroyelvi-intermittent-river

It took me a minute (and zooming in) to figure out the meaning of this crazy zig-zag pattern

z16 z16-aroyelvi-intermittent-river

dots + dashed outline you proposed previously looks good to me

For intermittent rivers the dashed outline isn't possible without significant pre-processing, since most rivers are made of more than one area, and the outline would show in between.

I think the dot pattern works well for natural=water (lakes) but not so well for waterway=riverbank features. There we would need a more solid pattern so that the shape of the river is more visible, and so the dashed waterway=river line is not showing.

jeisenbe commented 4 years ago

Here's the test images as requested. The outline works in this case, but it won't work in all situations:

z17 Montpellier - le Verdanson - dot pattern and dashed outline

le-verdanson-dots-dash-line

z18 z18-le-verdanson-dots-dash-line

No outline - this would be feasible

z17 le verdanson dots no line z17-le-verdanson-dots-no-line

z18 z18-le-verdanson-dots-no-line

Futaspranget, Norway

https://www.openstreetmap.org/#map=17/61.27694/7.16017

z17 current z17-futaspranget-before

z17 dots z17-futaspranget-dots-no-line z16 dots z16-futaspanget-dots-no-line z15 dots z15-futaspranget-dots-no-line

With a waterway=river + intermittent=yes line, the strongly dashed pattern is quite prominent with both the current pattern and with the dots.

jeisenbe commented 4 years ago

I didn't originally understand why @imagico used a different pattern for intermittent river areas in the alt-colors style, but I now see that this is necessary to deal properly with the intermittent river lines showing through the pattern when it is less solid.

Here are examples with the new river color and the river_intermittent.png pattern from alt-colors:

z17 le Verdanson, Montpellier z17-le-verdanson-river_intermittent z18 z18-le-verdanson-river_intermittent

z17 Futaspranget, Norway z17-futaspranget-river_intermittent-17:61 27694:7 16017 z16 z16-flutaspranget-river_intermittent z15 z15-futaspranget-river_intermittent

We will have to think about this while picking a pattern for water with salt=yes

jeisenbe commented 4 years ago

Todd River, in Alice Springs, Australia.

z15 Todd River current

z15-todd-river-before

z16 current z16-todd-river-before

z15 dots - Todd River

z15-todd-river-dots-no-line

z16 dots z16-todd-river-dots-no-line

z15 river_intermittent.png more solid pattern

z15-todd-river-river_intermittent

z16 river_intermittent.png z16-todd-river-river_intermittent

(It would also look better if the dashes were longer for intermittent river lines)