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
dcfbf1f7
Commit
dcfbf1f7
authored
6 years ago
by
Benjamin Jakimow
Browse files
Options
Downloads
Patches
Plain Diff
added screenshots.py
parent
108c50a8
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
make/screenshots.py
+23
-0
23 additions, 0 deletions
make/screenshots.py
timeseriesviewer/main.py
+3
-0
3 additions, 0 deletions
timeseriesviewer/main.py
with
28 additions
and
0 deletions
.gitignore
+
2
−
0
View file @
dcfbf1f7
...
@@ -9,6 +9,8 @@ doc/build/
...
@@ -9,6 +9,8 @@ doc/build/
doc/build/*
doc/build/*
qgisresources/
qgisresources/
qgisresources/*
qgisresources/*
screenshots/
screenshots/*
example/*.aux.xml
example/*.aux.xml
timeseriesviewer/ui/tmp.ui
timeseriesviewer/ui/tmp.ui
.*
.*
...
...
This diff is collapsed.
Click to expand it.
make/screenshots.py
0 → 100644
+
23
−
0
View file @
dcfbf1f7
#
from
timeseriesviewer.utils
import
*
from
timeseriesviewer.main
import
TimeSeriesViewer
from
timeseriesviewer
import
DIR_REPO
,
DIR_QGIS_RESOURCES
DIR_SCREENSHOTS
=
jp
(
DIR_REPO
,
'
screenshots
'
)
os
.
makedirs
(
DIR_SCREENSHOTS
,
exist_ok
=
True
)
app
=
initQgisApplication
(
qgisResourceDir
=
DIR_QGIS_RESOURCES
)
TS
=
TimeSeriesViewer
(
None
)
TS
.
show
()
TS
.
loadExampleTimeSeries
()
app
.
exec_
()
This diff is collapsed.
Click to expand it.
timeseriesviewer/main.py
+
3
−
0
View file @
dcfbf1f7
...
@@ -676,6 +676,9 @@ class TimeSeriesViewer(QgisInterface, QObject):
...
@@ -676,6 +676,9 @@ class TimeSeriesViewer(QgisInterface, QObject):
"""
Removes the plugin menu item and icon
"""
"""
Removes the plugin menu item and icon
"""
self
.
iface
.
removeToolBarIcon
(
self
.
action
)
self
.
iface
.
removeToolBarIcon
(
self
.
action
)
def
show
(
self
):
self
.
ui
.
show
()
def
run
(
self
):
def
run
(
self
):
#QApplication.processEvents()
#QApplication.processEvents()
self
.
ui
.
show
()
self
.
ui
.
show
()
...
...
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