-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Per #2690, add initial description of temp file usage to the contribu…
…tor's guide.
- Loading branch information
1 parent
bc83fc6
commit 336c118
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
************** | ||
Code Structure | ||
************** | ||
|
||
This chapter provides specific details about select topics within the | ||
MET code base. The list of topics is certainly not comprehensive. | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
tmp_files_in_met |
35 changes: 35 additions & 0 deletions
35
docs/Contributors_Guide/code_structure/tmp_files_in_met.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Temporary Files in MET | ||
====================== | ||
|
||
The MET application and library code uses temporary files in several | ||
places. Each specific use of temporary files is described below. The | ||
directory in which temporary files are stored is configurable as | ||
described in the User's Guide section :numref:`config_tmp_dir`. | ||
|
||
Note that creating, reading, and deleting temporary files from the | ||
local filesystem is much more efficient than performing these | ||
operations across a network filesystem. Using the default | ||
:code:`/tmp` directory is recommended, unless prohibited by High | ||
Performance Computing policies. | ||
|
||
In general, MET applications delete any temporary files they create | ||
when they are no longer needed. However, if the application exits | ||
abnormally, the temporary files may remain. | ||
|
||
PB2NC Tool | ||
^^^^^^^^^^ | ||
|
||
Point2Grid Tool | ||
^^^^^^^^^^^^^^^ | ||
|
||
TC-Diag Tool | ||
^^^^^^^^^^^^ | ||
|
||
Bootstrap Confidence Intervals | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Stat-Analysis Tool | ||
^^^^^^^^^^^^^^^^^^ | ||
|
||
Python Embedding | ||
^^^^^^^^^^^^^^^^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters