Skip to content

Commit

Permalink
plot arg
Browse files Browse the repository at this point in the history
  • Loading branch information
changliao1025 committed Jul 18, 2023
1 parent 4533fc8 commit 874719b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions pyflowline/classes/_visual.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
def plot(self,
iFlag_type_in = None,
iFlag_title_in = None,
sFilename_output_in=None,
sVariable_in=None,
sFilename_output_in = None,
sVariable_in = None,
aExtent_in = None,
pProjection_map_in = None):
"""_summary_
Expand All @@ -22,6 +22,15 @@ def plot(self,
aExtent_in (_type_, optional): _description_. Defaults to None.
pProjection_map_in (_type_, optional): _description_. Defaults to None.
"""

if iFlag_type_in is None:
iFlag_type_in = 2

if iFlag_title_in is None:
iFlag_title_in = 1

if sVariable_in is None:
sVariable_in = 'flowline_conceptual'


if iFlag_type_in == 1: #point based, such as dam
Expand Down

0 comments on commit 874719b

Please sign in to comment.