Return True if the requested time index is for :data:`wrf.ALL_TIMES` or :obj:`None`. Args: timeidx (:obj:`int`, :data:`wrf.ALL_TIMES`, or :obj:`None`): The requested time index. Returns: :obj:`bool`: True if the time index is :data:`wrf.ALL_TIMES` or
(timeidx)
| 102 | |
| 103 | |
| 104 | def is_multi_time_req(timeidx): |
| 105 | """Return True if the requested time index is for :data:`wrf.ALL_TIMES` or |
| 106 | :obj:`None`. |
| 107 | |
| 108 | Args: |
| 109 | |
| 110 | timeidx (:obj:`int`, :data:`wrf.ALL_TIMES`, or :obj:`None`): The |
| 111 | requested time index. |
| 112 | |
| 113 | Returns: |
| 114 | |
| 115 | :obj:`bool`: True if the time index is :data:`wrf.ALL_TIMES` or |
| 116 | :obj:`None`, otherwise False. |
| 117 | |
| 118 | """ |
| 119 | return timeidx is None |
| 120 | |
| 121 | |
| 122 | def is_multi_file(wrfin): |
no outgoing calls
no test coverage detected