|
935 | 935 | ), |
936 | 936 | Argument( |
937 | 937 | name="cmap", |
938 | | - help="Matplotlib colormap name (--interactive, --png, --mp4).", |
| 938 | + help="Matplotlib colormap name (--png, --mp4 only).", |
939 | 939 | type=str, |
940 | 940 | default='viridis', |
941 | 941 | metavar="CMAP", |
|
967 | 967 | ), |
968 | 968 | Argument( |
969 | 969 | name="vmin", |
970 | | - help="Minimum value for color scale (--interactive, --png, --mp4).", |
| 970 | + help="Minimum value for color scale (--png, --mp4 only).", |
971 | 971 | type=float, |
972 | 972 | default=None, |
973 | 973 | metavar="VMIN", |
974 | 974 | ), |
975 | 975 | Argument( |
976 | 976 | name="vmax", |
977 | | - help="Maximum value for color scale (--interactive, --png, --mp4).", |
| 977 | + help="Maximum value for color scale (--png, --mp4 only).", |
978 | 978 | type=float, |
979 | 979 | default=None, |
980 | 980 | metavar="VMAX", |
|
988 | 988 | ), |
989 | 989 | Argument( |
990 | 990 | name="slice-axis", |
991 | | - help="Axis for 3D slice (--interactive, --png, --mp4).", |
| 991 | + help="Axis for 3D slice (--png, --mp4 only).", |
992 | 992 | type=str, |
993 | 993 | default='z', |
994 | 994 | choices=["x", "y", "z"], |
|
997 | 997 | ), |
998 | 998 | Argument( |
999 | 999 | name="slice-value", |
1000 | | - help="Coordinate value at which to take the 3D slice (--interactive, --png, --mp4).", |
| 1000 | + help="Coordinate value at which to take the 3D slice (--png, --mp4 only).", |
1001 | 1001 | type=float, |
1002 | 1002 | default=None, |
1003 | 1003 | dest="slice_value", |
1004 | 1004 | metavar="VAL", |
1005 | 1005 | ), |
1006 | 1006 | Argument( |
1007 | 1007 | name="slice-index", |
1008 | | - help="Array index at which to take the 3D slice (--interactive, --png, --mp4).", |
| 1008 | + help="Array index at which to take the 3D slice (--png, --mp4 only).", |
1009 | 1009 | type=int, |
1010 | 1010 | default=None, |
1011 | 1011 | dest="slice_index", |
|
1040 | 1040 | ), |
1041 | 1041 | Argument( |
1042 | 1042 | name="log-scale", |
1043 | | - help="Logarithmic color/y scale (--interactive, --png, --mp4).", |
| 1043 | + help="Logarithmic color/y scale (--png, --mp4 only).", |
1044 | 1044 | action=ArgAction.STORE_TRUE, |
1045 | 1045 | default=False, |
1046 | 1046 | dest="log_scale", |
|
1102 | 1102 | ("--interactive / -i", "Dash web UI (1D/2D/3D, needs browser or SSH tunnel)"), |
1103 | 1103 | ("--png", "Save PNG image(s) to case_dir/viz/"), |
1104 | 1104 | ("--mp4", "Encode frames into an MP4 video"), |
1105 | | - ("-- Appearance (--interactive, --png, --mp4) --", ""), |
| 1105 | + ("-- Rendering (--png, --mp4 only) --", ""), |
1106 | 1106 | ("--cmap NAME", "Matplotlib colormap (default: viridis)"), |
1107 | 1107 | ("--vmin / --vmax", "Fix color-scale limits"), |
1108 | 1108 | ("--log-scale", "Logarithmic color/y axis"), |
1109 | | - ("--dpi N", "Image resolution for --png/--mp4 (default: 150)"), |
1110 | | - ("-- 3D slicing (--interactive, --png, --mp4) --", ""), |
| 1109 | + ("--dpi N", "Image resolution (default: 150)"), |
| 1110 | + ("-o, --output DIR", "Output directory (default: case_dir/viz/)"), |
| 1111 | + ("-- 3D slicing (--png, --mp4 only) --", ""), |
1111 | 1112 | ("--slice-axis x|y|z", "Plane to slice (default: z midplane)"), |
1112 | 1113 | ("--slice-value VAL", "Slice at coordinate value"), |
1113 | 1114 | ("--slice-index IDX", "Slice at array index"), |
1114 | | - ("-- Mode-specific --", ""), |
1115 | | - ("-o, --output DIR", "Output directory for --png/--mp4 (default: case_dir/viz/)"), |
1116 | | - ("--fps N", "Frames per second for --mp4 (default: 10)"), |
1117 | | - ("--port PORT", "Web server port for --interactive (default: 8050)"), |
1118 | | - ("--host HOST", "Bind address for --interactive (default: 127.0.0.1)"), |
| 1115 | + ("-- --mp4 only --", ""), |
| 1116 | + ("--fps N", "Frames per second (default: 10)"), |
| 1117 | + ("-- --interactive only --", ""), |
| 1118 | + ("--port PORT", "Web server port (default: 8050)"), |
| 1119 | + ("--host HOST", "Bind address (default: 127.0.0.1)"), |
1119 | 1120 | ], |
1120 | 1121 | ) |
1121 | 1122 |
|
|
0 commit comments