Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EO Time Series Viewer
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
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
Benjamin Jakimow
EO Time Series Viewer
Commits
8e9b9e43
Commit
8e9b9e43
authored
8 years ago
by
benjamin.jakimow@geo.hu-berlin.de
Browse files
Options
Downloads
Patches
Plain Diff
DATE_EXTRACTION_FUNCTIONS
parent
d722ccbe
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
timeseriesviewer/timeseries.py
+25
-5
25 additions, 5 deletions
timeseriesviewer/timeseries.py
with
25 additions
and
5 deletions
timeseriesviewer/timeseries.py
+
25
−
5
View file @
8e9b9e43
...
...
@@ -628,20 +628,40 @@ def parseWavelength(lyr):
def
parseAcquisitionDate
(
text
):
def
extractDateFromLandsatID
(
text
):
match
=
regLandsatSceneID
.
search
(
text
)
if
match
:
id
=
match
.
group
()
return
getDateTime64FromYYYYDOY
(
id
[
9
:
16
])
match
=
regYYYYMMDD
.
search
(
text
)
return
None
def
extractDateFromRapidEyeID
(
text
):
pass
def
extractDateFromISO
(
text
):
match
=
regYYYY
.
search
(
text
)
if
match
:
return
np
.
datetime64
(
match
.
group
())
return
None
def
extractDateFromYYYYDOY
(
text
):
match
=
regYYYYDOY
.
search
(
text
)
if
match
:
return
getDateTime64FromYYYYDOY
(
match
.
group
())
match
=
regYYYY
.
search
(
text
)
if
match
:
return
np
.
datetime64
(
match
.
group
())
return
None
DATE_EXTRACTION_FUNCTIONS
=
[]
DATE_EXTRACTION_FUNCTIONS
.
append
(
extractDateFromISO
)
DATE_EXTRACTION_FUNCTIONS
.
append
(
extractDateFromLandsatID
)
DATE_EXTRACTION_FUNCTIONS
.
append
(
extractDateFromRapidEyeID
)
DATE_EXTRACTION_FUNCTIONS
.
append
(
extractDateFromYYYYDOY
)
def
parseAcquisitionDate
(
text
):
for
func
in
DATE_EXTRACTION_FUNCTIONS
:
v
=
func
(
text
)
if
isinstance
(
v
,
np
.
datetime64
):
return
v
return
None
...
...
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