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

Want to see the progress bar while parsing CityGML #51

Open
aDAVISk opened this issue Oct 11, 2023 · 1 comment
Open

Want to see the progress bar while parsing CityGML #51

aDAVISk opened this issue Oct 11, 2023 · 1 comment

Comments

@aDAVISk
Copy link
Collaborator

aDAVISk commented Oct 11, 2023

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).

#city_gmle_parser.py
from progressbar import progressbar  # anywhere before

        for city_object_member in progressbar(city_object_members):  # line 180

Regards,
Akito

@smellman
Copy link
Contributor

I recommend to use tqdm instead of progressbar because I use tqdm in this project.

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