-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
513 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .plot import Line, Subplot, Plot | ||
from .plot import Line, Subplot, Plot, NoDataError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Plotting data | ||
|
||
Plots are the prime place to get data - either for visual inspection or for | ||
export. Plots are defined with general properties !fa-cog , subplots and | ||
lines. The lines define the data to be shown. | ||
|
||
## !fa-chart-line The plot content | ||
|
||
### Subplots | ||
|
||
You start with an empty plot and you can !fa-plus-circle add subplots (common time axis) to the plot. The subplot can be changed with: | ||
|
||
- !fa-trash : delete subplot | ||
- <i>y</i>↕ : set y axis to a fixed range | ||
- !fa-tags : show log messages for a certain site | ||
|
||
### Lines | ||
Then you !fa-plus-circle add data lines to the subplot. You can leave the name of | ||
a line empty. Select the datassets by valuetype, site, level and instrument. | ||
In case of an aggregated plot, ypu can select one of the aggregation functions. | ||
|
||
Use markers, line styles, colors and width to seperate lines in a subplot visually. | ||
|
||
After creation of a line you can click on it to drop down the line tools: | ||
|
||
- !fa-trash : remove line | ||
- !fa-list : show datasets of this line | ||
- !fa-edit : Change the line properties | ||
- !fa-copy : Copy this line and start editing | ||
|
||
|
||
## !fa-cog Properties | ||
|
||
Here you describe how the plot as a whole functions, which timespan, the layout of subplots, the aggregation and you can describe the figure | ||
|
||
### !fa-clock Time span | ||
|
||
Select the timespan for the plot. | ||
|
||
## !fa-file load / save plot | ||
|
||
Give the subplot a name and select a fitting directory in the filemanager. Plot files can be opened | ||
from the file manager also. | ||
|
||
## !fa-file-export Export data | ||
|
||
See help:export | ||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.