>Well I am getting a lot of 500's both on upload from POI and download in
>JOSM.
>But it seems pretty consistent which nodes it gets and which it doesn't -
I
>always see Fishguard, I always see Newcastle Emlyn, I never see
Llansawel.
>You are obviously culling nodes which you don't want to display, like
roads
>and rivers, so do you think it is possible there is something about these
>nodes that is making them count among the non-displayed ones?
Only nodes that have tags other than 'created_by', 'source', 'note' are
shown; also nodes which only have the above tags plus 'class=node' (a
hangover from the very early days of OSM and osmeditor) are ignored. If it
has a 'place' tag, for instance, it should certainly be shown. Do you have
the full tag list of the problem nodes?
Code of the discriminatory function BTW:
isPOI: function() {
if(this.tags) {
for(k in this.tags) {
if (k != 'created_by' && k != 'source' && k != 'note'
&&
!(k=='class' && this.tags[k]=='node')) {
return true;
}
}
}
return false;
},
Nick
_______________________________________________
Talk-GB mailing list
[email protected]
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk-gb