We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3bd887 commit a46cd20Copy full SHA for a46cd20
flopy4/mf6/codec/reader/grammar/basic.lark
@@ -4,7 +4,7 @@ block_name: CNAME [INT]
4
_list: line*
5
line: [WS] item+ _NL+
6
item: word | NUMBER
7
-word: /[a-zA-Z0-9._'~,-\\(\\)]+/
+word: /[a-zA-Z0-9._+'~,-\\(\\)]+/
8
9
%import common.NEWLINE -> _NL
10
%import common.WS
flopy4/mf6/codec/writer/filters.py
@@ -115,7 +115,7 @@ def array2string(value: NDArray) -> str:
115
format = (
116
"%d"
117
if np.issubdtype(value.dtype, np.integer)
118
- else "%.9f"
+ else "%.9e"
119
if np.issubdtype(value.dtype, np.floating)
120
else "%s"
121
)
0 commit comments