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
Running CityGMLParser.parse_and_download() takes so long time. Is it possible to show a progress bar while parsing CityGML?
CityGMLParser.parse_and_download()
My suggestion is adding progressbar at the line 180 of city_gml_parser.py (there might be better location to add progress bar).
city_gml_parser.py
#city_gmle_parser.py from progressbar import progressbar # anywhere before for city_object_member in progressbar(city_object_members): # line 180
Regards, Akito
The text was updated successfully, but these errors were encountered:
I recommend to use tqdm instead of progressbar because I use tqdm in this project.
tqdm
progressbar
Sorry, something went wrong.
No branches or pull requests
Running
CityGMLParser.parse_and_download()
takes so long time. Is it possible to show a progress bar while parsing CityGML?My suggestion is adding progressbar at the line 180 of
city_gml_parser.py
(there might be better location to add progress bar).Regards,
Akito
The text was updated successfully, but these errors were encountered: