Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installed versioneer code; fix tests to adapt to Flopy naming change of rno to ifno #150

Merged
merged 3 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/meras/meras_sfrmaker_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ flowlines:
name_column: GNIS_NAME
attr_length_units: feet # units of source data
attr_height_units: feet # units of source data
inflows: # see sfrmaker.data.add_to_perioddata for arguments
inflows: # see sfrmaker.flows.add_to_perioddata for arguments
filename: inflows.csv
line_id_column: line_id
period_column: per # column with model stress periods
Expand Down
4 changes: 3 additions & 1 deletion examples/tylerforks/inflows.csv
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
end_datetime,inflow_m3d,SP,line_id_COMID
10/31/1990,15000.0000,0,1815035
11/30/1990,16000.0000,1,1815035
11/30/1990,16000.0000,1,1815035
10/31/1990,1500.0000,0,1814949
11/30/1990,1600.0000,1,1814949
2 changes: 1 addition & 1 deletion examples/tylerforks/tf_sfrmaker_config2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ flowlines:
PlusFlowlineVAA: NHDPlus/NHDPlusAttributes/PlusFlowlineVAA.dbf
PlusFlow: NHDPlus/NHDPlusAttributes/PlusFlow.dbf
elevslope: NHDPlus/NHDPlusAttributes/elevslope.dbf
inflows: # see sfrmaker.data.add_to_perioddata for arguments
inflows: # see sfrmaker.flows.add_to_segment_data for arguments
filename: inflows.csv
line_id_column: line_id_COMID
period_column: SP # column with model stress periods
Expand Down
3 changes: 3 additions & 0 deletions sfrmaker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@

__version__ = get_versions()['version']
del get_versions

from . import _version
__version__ = _version.get_versions()['version']
Loading