Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Update gridlabd-plot
Browse files Browse the repository at this point in the history
  • Loading branch information
David P. Chassin committed Aug 26, 2021
1 parent a6b49b9 commit 1733795
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gldcore/scripts/gridlabd-plot
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,13 @@ def main(args):

validate = {
"plot:y" : lambda x: x.split(","),
"plot:layout" : lambda x: list(map(int,x.split(','))),
"plot:figsize" : lambda x: list(map(int,x.split(','))),
"plot:xtick" : lambda x: list(map(str,x.split(','))),
"plot:ytick" : lambda x: list(map(str,x.split(','))),
"plot:xlim" : lambda x: list(map(float,x.split(','))),
"plot:ylim" : lambda x: list(map(float,x.split(','))),
"plot:secondary_y" : lambda x: list(map(str,x.split(','))),
"plot:fontsize" : int,
"plot:position" : float,
"figure:dpi" : float,
Expand Down

0 comments on commit 1733795

Please sign in to comment.