We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks to @joto's hawk eyes we now know that stats are not properly done in parallel:
case osmium::item_type::node: ++number_of_nodes; luabind::call_function<void>( scripting_environment.getLuaState(), "node_function", boost::cref(static_cast<osmium::Node &>(*entity)), boost::ref(result_node)); resulting_nodes.push_back(std::make_pair(x, result_node)); break;
same holds true for number_of_ways and number_of_relations.
number_of_ways
number_of_relations
The text was updated successfully, but these errors were encountered:
Should be fixed by #1312 right?
Sorry, something went wrong.
Yes. Good catch.
No branches or pull requests
Thanks to @joto's hawk eyes we now know that stats are not properly done in parallel:
same holds true for
number_of_ways
andnumber_of_relations
.The text was updated successfully, but these errors were encountered: