Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Sen2Chain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ESPACE-DEV
Sen2Chain
Commits
47df6bdb
Commit
47df6bdb
authored
5 years ago
by
Jeremy Commins
Browse files
Options
Downloads
Patches
Plain Diff
Add a 2 seconds pause when a file is downloaded before going on.
parent
e77cdfaf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sen2chain/automatization.py
+4
-1
4 additions, 1 deletion
sen2chain/automatization.py
with
4 additions
and
1 deletion
sen2chain/automatization.py
+
4
−
1
View file @
47df6bdb
...
...
@@ -3,7 +3,7 @@
"""
Module for automatized downloading, processing and time series computing of new Sentinel-2 images.
"""
import
time
import
logging
import
pandas
as
pd
import
numpy
as
np
...
...
@@ -223,6 +223,9 @@ class Automatization:
failed
=
prods
.
failed_products
if
failed
:
print
(
failed
)
# When working on a local network storage, pause the process in
# order to let the file to be checked by the filesystem (lags).
time
.
sleep
(
2
)
self
.
_update_df
()
self
.
_save_csv
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment