Skip to content

Commit

Permalink
polyline
Browse files Browse the repository at this point in the history
  • Loading branch information
changliao1025 committed Aug 9, 2023
1 parent 8ec2f66 commit b0ece5d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pyflowline/external/pyearth/visual/map/map_vector_polyline_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,20 @@ def map_vector_polyline_data(sFilename_in,
else:
iFont_size = 12

if dData_min_in is not None:
iFlag_data_min = 1
dData_min = dData_min_in
else:
iFlag_data_min = 0
pass

if dData_max_in is not None:
iFlag_data_max = 1
dData_max = dData_max_in
else:
iFlag_data_max = 0
pass

if sField_thickness_in is not None:
sField_thickness = sField_thickness_in
else:
Expand Down

0 comments on commit b0ece5d

Please sign in to comment.