Skip to content

Commit 7a0edd6

Browse files
committed
chore: increase the filesize limit per sequence to 110GB
1 parent a619ea0 commit 7a0edd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mapillary_tools/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@
4545
# Max number of images per sequence
4646
MAX_SEQUENCE_LENGTH = int(os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_LENGTH", 1000))
4747
# Max file size per sequence (sum of image filesizes in the sequence)
48-
MAX_SEQUENCE_FILESIZE: str = os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_FILESIZE", "10G")
48+
MAX_SEQUENCE_FILESIZE: str = os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_FILESIZE", "110G")
4949
# Max number of pixels per sequence (sum of image pixels in the sequence)
5050
MAX_SEQUENCE_PIXELS: str = os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_PIXELS", "6G")

0 commit comments

Comments
 (0)