Error following mamoth request
Closed this issue · 9 comments
Experimenting, I tried to get all proposed new national cycle paths in the UK:
from_robin <- '[out:xml][timeout:25];
(
node["ncn"="proposed"](49.16,-13.4,60.85,1.76);
way["ncn"="proposed"](49.16,-13.4,60.85,1.76);
relation["ncn"="proposed"](49.16,-13.4,60.85,1.76);
);
out body;
>;
out skel qt;'
frb <- overpass_query(from_robin)
Error in `row.names<-.data.frame`(`*tmp*`, value = value) :
duplicate 'row.names' are not allowed
In addition: Warning message:
non-unique value when setting 'row.names': ‘299893104’
Can anyone reproduce this?
hrm. there are prbly duplicate node
, way
or relation
ids in the response. i'll take a look and put in a strategic distinct
here or there.
yep. duplicated way id. working on it.
latest build shld see a noticeable speedup (it reads in points much faster) and it also handles dup in ways. I'll try to do the same for ways but it's harder since we need to make lines. also a new function read_osm
to read already downloaded files (major short-term benefit is no need to bug the server for every req anymore!)
OK thanks for reproducing the error and for the updates.
I'm still getting this bug in the latest version.
Robin
argh. fixed it in one place and left it in another (that's what I get for doing it at 0dark30). gimme a cpl mins.
OK, 60m :-) Fixed AND faster. The biggest delay now is waiting for the actual query results.
and introduced another bug…working on it but give that mammoth query a go
OK! fixed and a 4-step testthat
harness setup (which this passes). the pkg also installs an osm
directory in the package with 4 test data files and 4 test query files.
Confirmed - this is now fixed. Thanks!