Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strange title and no info in way pop-up #256

Closed
zstadler opened this issue Jul 15, 2016 · 3 comments
Closed

Strange title and no info in way pop-up #256

zstadler opened this issue Jul 15, 2016 · 3 comments

Comments

@zstadler
Copy link
Contributor

  • The info pop-up has a strange title and no tag information for requested way
    2016-07-15 17_41_07-overpass turbo

    when running the query :

    (
    way(64734796);
    relation(bw);
    );
    out geom;
    
  • The standard title and tag information is shown
    2016-07-15 17_53_30-overpass turbo
    when replacing out geom; with ( ._;>;); out; :

    (
    way(64734796);
    relation(bw);
    );
    ( ._;>;);
    out;
    
  • Things also look good
    2016-07-15 17_43_49-overpass turbo
    when running without the relation(bw); term:

    (
    way(64734796);
    );
    out geom;
    
@mmd-osm
Copy link
Contributor

mmd-osm commented Jul 15, 2016

I think this was introduced to fix an issue with ref-less and ref-full ways in tyrasd/osmtogeojson@52fff23 and probably belongs to the osmtogeojson library instead: https://github.com/tyrasd/osmtogeojson/issues

Concerning the first query example above, the response includes way 64734796 as part of relation 6410854 without any node ids, and again as a single way with node ids.

@zstadler
Copy link
Contributor Author

zstadler commented Aug 2, 2016

I would appreciate if someone could further investigate and fix this issue.

I find that using out geom significantly reduces the complexity of Overpass queries.
I hope it also reduces the server-side computation. However, bugs like this discourage the use of out geom.

tyrasd added a commit to tyrasd/osmtogeojson that referenced this issue Aug 27, 2016
tyrasd added a commit to tyrasd/osmtogeojson that referenced this issue Aug 27, 2016
@zstadler
Copy link
Contributor Author

zstadler commented Mar 2, 2024

This issue seems to be resolved.
When using the original query with the data of that time

[date: "2016-07-15T00:00:00z"];
(
  way(64734796);
  relation(bw);
);
out geom;

the result is as expected:
image

@zstadler zstadler closed this as completed Mar 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants