Skip to content

Commit

Permalink
moved pano list shuffle to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
misaugstad committed Apr 14, 2020
1 parent 5d4d5aa commit 4b4b413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DownloadRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ def download_panorama_images(storage_path, pano_list):
fail_count = 0
total_panos = len(pano_list)

shuffle(pano_list)
for pano_id in pano_list:
print("IMAGEDOWNLOAD: Processing pano %s " % (pano_id))
try:
Expand Down Expand Up @@ -292,6 +291,7 @@ def generate_depthmapfiles(path_to_scrapes):

print "Fetching pano-ids"
pano_list = fetch_pano_ids_from_webserver()
shuffle(pano_list)

##### Debug Line - remove for prod ##########
# pano_list = [pano_list[111], pano_list[112]]
Expand Down

0 comments on commit 4b4b413

Please sign in to comment.