Re: rendering in JOSM of man_made=embankment

2019-11-20 Thread Gertrud Simson
Hello,
I changed the rendering in JOSM, see
https://josm.openstreetmap.de/ticket/18343
Regards,
Klumbumbus


Re: "JOSM and Java" on German forum

2019-05-05 Thread Gertrud Simson
Am So., 5. Mai 2019 um 22:40 Uhr schrieb Vincent Privat:

> Can someone speaking German share the link there?
>

Done.
Regards, Stefan.


Re: [josm-dev] How do I edit big relations and detailed contours now that XML style is removed?

2016-03-29 Thread Gertrud Simson
When we switched from XML to MapCSS, MapCSS was faster than XML with
processors with 4 or more cores. With 3 or 2 cores it was nearly as fast as
XML. See https://josm.openstreetmap.de/ticket/9691#comment:32.
Does it help, if you adjust some style settings
https://josm.openstreetmap.de/wiki/Help/Dialog/MapPaint/StyleSettings ?
- check Hide icons at low zoom
- check Less obtrusive node symbols at low zoom
- uncheck Display street labels at high zoom

There is also the plugin Open GL
https://github.com/michaelzangl/josm-plugin-opengl/releases . Does it speed
up the drawing for you?

Stefan
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Auto center new node

2016-03-20 Thread Gertrud Simson
Maybe you accidently pressed Strg+Shift+F instead of Strg+F.
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Brief appearance of window when using 'Draw Nodes' tool

2016-02-15 Thread Gertrud Simson
Maybe you are using continuous download plugin?

If that is not the reason, better click on menu help -> report bug in josm
to create a ticket with some more information than posting here on josm-dev.


Stefan
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] validator rule for public_transport=platform

2015-05-07 Thread Gertrud Simson
See http://josm.openstreetmap.de/ticket/11414
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Payment-Preset-Spam?

2015-05-02 Thread Gertrud Simson
Das changeset wurde mit Vespucci erstellt. Hast du dort schon nachgefragt?

VG
Stefan
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Node display at lower zoom

2015-02-21 Thread Gertrud Simson
2015-02-21 21:21 GMT+01:00 Maarten Deen md...@xs4all.nl:

 At some point JOSM was changed so that at high zooms nodes don't display
 their icons anymore but are just a dot that gets smaller the further you
 zoom out.
 Is this configurable?


 Yes, you can switch nodes display and icon display in the style settings.
see https://josm.openstreetmap.de/wiki/Help/Dialog/MapPaint#Stylesettings
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] icons for MapCSS for RoadSigns

2015-02-18 Thread Gertrud Simson
2015-02-18 9:07 GMT+01:00 Martin Vonwald imagic@gmail.com:


 P.S: Anybody know how to disable the new default traffic sign rendering of
 JOSM from within a style?


node[prop(maxspeedclass, default)]::core_maxnodebg {
symbol-shape: none;
}
node[prop(maxspeedclass, default)]::core_maxnodefg {
text: none;
symbol-shape: none;
}


Regards,
Stefan
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] icons for MapCSS for RoadSigns

2015-02-18 Thread Gertrud Simson
2015-02-18 13:46 GMT+01:00 Martin Vonwald imagic@gmail.com:

 Is this documented somewhere or just a hack, that happens to work at the
 moment?


In a mapcss style you can not directly disable parts of another mapcss file
if you use both at the same time. So the only solution is to use the same
selector and override the rule from the other mapcss file.
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] icons for MapCSS for RoadSigns

2015-02-18 Thread Gertrud Simson
2015-02-18 23:23 GMT+01:00 Jo winfi...@gmail.com:


 /* Now render the traffic sign */
 node|z16-[!(prop(traffic_sign_svg)=)]::traffic_signs
 {
 icon-image: eval(concat(data:image/svg+xml,svg width='100px'
 height=',prop(traffic_sign_top),',prop(traffic_sign_svg),/svg));
 icon-width: eval(max(12,prop(pixel_per_metre)));
 }

 prop() depends on the layer. If no layer is given, the default layer is
used. A solution would be to remove ::traffic_signs to use the default
layer. Another solution: if you use the layer ::traffic_signs, the props
of this layer are used (However you set them in the default layer before).
So you need to use prop(traffic_sign_top,default),
prop(traffic_sign_svg,default)
and prop(pixel_per_metre,default).

However this seems not to fix the style completely. I only see white
squares and the sign for BE:C3. Don't know if this is the expected result.


Stefan
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] icons for MapCSS for RoadSigns

2015-02-17 Thread Gertrud Simson
- you cannot rotate icons. There is already an (old) patch for this, see
http://josm.openstreetmap.de/ticket/10217

- you cannot offset icons, only text. There is a ticket for this, see
http://josm.openstreetmap.de/ticket/10216

- the default font, which the mappaint uses, is Droid Sans. You can change
this within mapcss with font-family. See
josm.openstreetmap.de/wiki/Help/Styles/MapCSSImplementation for more
information


Klumbumbus
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Middle click on area?

2015-02-17 Thread Gertrud Simson
Would be a nice feature. Meanwhile you can use double click in an area to
select it.

Klumbumbus


2015-02-17 0:02 GMT+01:00 Bryce Nesbitt bry...@obviously.com:

 I'm writing to see if there's been past discussion about extending middle
 click to areas.

 Right now if I used middle click on the interior of a closed way, nothing
 shows up.
 To select the closed way requires finding one of the edges.

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Mapillary

2015-01-27 Thread Gertrud Simson
You may notice here, if you start working on this:
http://josm.openstreetmap.de/ticket/10648
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] notes

2014-12-17 Thread Gertrud Simson
2014-12-12 17:16 GMT+01:00 colliar colliar4e...@aol.com:


 Sadly, I was only able to create new notes and to have a look at
 downloaded notes but all other actions where disabled (grey buttons). Is
 this intended ?


This was fixed in last josm-latest. See
http://josm.openstreetmap.de/ticket/10845
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] notes

2014-12-11 Thread Gertrud Simson
Oh, I don't know whats wrong there with Thunderbird. I hope this time it
works.
I just want to say that since the notes feature is not yet enabled by
default and a manually configuration of the advanced settings is required
to make it work, I think it should not be mentioned on the Startup page as
new feature of #.

Regards.
Stefan
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev