-
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.
Browse files
Browse the repository at this point in the history
Co-authored-by: jprestop <jpresto@ucar.edu> Co-authored-by: Seth Linden <linden@seneca.rap.ucar.edu> Co-authored-by: John Halley Gotway <johnhg@ucar.edu> Co-authored-by: Daniel Adriaansen <dadriaan@ucar.edu> Co-authored-by: John and Cindy <halleygotway@Halleys-Mac-mini.local> Co-authored-by: rgbullock <bullock@ucar.edu> Co-authored-by: Randy Bullock <bullock@seneca.rap.ucar.edu> Co-authored-by: Dave Albo <dave@seneca.rap.ucar.edu> Co-authored-by: Howard Soh <hsoh@seneca.rap.ucar.edu> Co-authored-by: George McCabe <23407799+georgemccabe@users.noreply.github.com> Co-authored-by: hsoh-u <hsoh@ucar.edu> Co-authored-by: MET Tools Test Account <met_test@seneca.rap.ucar.edu> Co-authored-by: Seth Linden <linden@ucar.edu> Co-authored-by: lisagoodrich <33230218+lisagoodrich@users.noreply.github.com> Co-authored-by: davidalbo <dave@ucar.edu> Co-authored-by: Lisa Goodrich <lisag@ucar.edu> Co-authored-by: metplus-bot <97135045+metplus-bot@users.noreply.github.com> Co-authored-by: j-opatz <59586397+j-opatz@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jonathan Vigh <jvigh@ucar.edu> Co-authored-by: Tracy Hertneky <39317287+hertneky@users.noreply.github.com> Co-authored-by: David Albo <dave@ucar.edu> Co-authored-by: Dan Adriaansen <dadriaan@ucar.edu> fix 2518 dtypes appf docs (#2519) fix 2531 compilation errors (#2533) fix #2531 compilation_errors_configure (#2535) fix #2514 develop clang (#2563) fix #2575 develop python_convert (#2576) Fix Python environment issue (#2407) fix definitions of G172 and G220 based on comments in NOAA-EMC/NCEPLIBS-w3emc#157. (#2406) fix #2380 develop override (#2382) fix #2408 develop empty config (#2410) fix #2390 develop compile zlib (#2404) fix #2412 develop climo (#2422) fix #2437 develop convert (#2439) fix for develop, for #2437, forgot one reference to the search_parent for a dictionary lookup. fix #2452 develop airnow (#2454) fix #2449 develop pdf (#2464) fix #2402 develop sonarqube (#2468) fix #2426 develop buoy (#2475) fix 2596 main v11.1 rpath compilation (#2614) fix #2514 main_v11.1 clang (#2628) fix #2644 develop percentile (#2647)
- Loading branch information
1 parent
80afcac
commit 9fce8d1
Showing
57 changed files
with
851 additions
and
543 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
******************* | ||
Development Details | ||
******************* | ||
|
||
This chapter provides specific details about select topics within the | ||
MET code base. The list of topics is certainly not comprehensive. | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
tmp_file_use |
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,169 @@ | ||
.. _tmp_file_use: | ||
|
||
Use of Temporary Files | ||
====================== | ||
|
||
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 :numref:`User's Guide Section %s <config_tmp_dir>`. | ||
|
||
Whenever a MET application is run, the operating system assigns it a | ||
process identification number (PID). All temporary files created by | ||
MET include the PID in the file name so that multiple instances can | ||
run concurrently without conflict. In addition, when creating a | ||
temporary file name, the :code:`make_temp_file_name(...)` utility | ||
function appends :code:`_0` to the PID, checks to see if the | ||
corresponding file name is already in use, and if so, tries | ||
:code:`_1`, :code:`_2` and so on, until an available file name is | ||
found. | ||
|
||
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 policies | ||
on your system. | ||
|
||
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. | ||
|
||
.. _tmp_files_pb2nc: | ||
|
||
PB2NC Tool | ||
^^^^^^^^^^ | ||
|
||
The PB2NC tool reads input binary files in the BUFR or PrepBUFR | ||
format, extracts and/or derives observations from them, filters | ||
those observations, and writes the result to a NetCDF output file. | ||
|
||
PB2NC creates the following temporary files when running: | ||
|
||
* :code:`tmp_pb2nc_blk_{PID}`, :code:`tmp_pb2nc_meta_blk_{PID}`, | ||
:code:`tmp_pb2nc_tbl_blk_{PID}` | ||
|
||
PB2NC assumes that each input binary file requires Fortran | ||
blocking prior to being read by the BUFRLIB library. It applies | ||
Fortran blocking, writes the result to this temporary file, and | ||
uses BUFRLIB to read its contents. | ||
|
||
* :code:`tmp_pb2nc_bufr_{PID}_tbl`: PB2NC extracts Bufr table data | ||
that is embedded in input files and writes it to this temporary | ||
file for later use. | ||
|
||
.. note:: | ||
The first 3 files listed above are identical. They are all | ||
Fortran-blocked versions of the same input file. Recommend | ||
modifying the logic to only apply Fortran blocking once. | ||
|
||
.. _tmp_files_point2grid: | ||
|
||
Point2Grid Tool | ||
^^^^^^^^^^^^^^^ | ||
|
||
The Point2Grid tool reads point observations from a variety of | ||
inputs and summarizes them on a grid. When processing GOES input | ||
files, a temporary NetCDF file is created to store the mapping of | ||
input pixel locations to output grid cells unless the | ||
MET_GEOSTATIONARY_DATA environment variable defines an existing grid | ||
navigation file to be used. | ||
|
||
If that temporary geostationary grid mapping file already exists, it | ||
is used directly and not recreated. If not, it is created as needed. | ||
|
||
Note that this temporary file is *not* deleted by the Point2Grid | ||
tool. Once created, it is intended to be reused in future runs. | ||
|
||
.. _tmp_files_bootstrap: | ||
|
||
Bootstrap Confidence Intervals | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Several MET tools support the computation of bootstrap confidence | ||
intervals, as described in :numref:`User's Guide Section %s <config_boot>` | ||
and :numref:`User's Guide Appendix D, Section %s <App_D-Confidence-Intervals>`. | ||
When bootstrap confidence intervals are requested, up to two | ||
temporary files are created for each CNT, CTS, MCTS, NBRCNT, or | ||
NBRCTS line type written to the output. | ||
|
||
* :code:`tmp_{LINE_TYPE}_i_{PID}`: When the BCA bootstrapping method | ||
is requested, jackknife resampling is applied to the input matched | ||
pairs. Statistics are computed for each jackknife resample and | ||
written to this temporary file. | ||
|
||
* :code:`tmp_{LINE_TYPE}_r_{PID}`: For each bootstrap replicate | ||
computed from the input matched pairs, statistics are computed | ||
and written to this temporary file. | ||
|
||
Where {LINE_TYPE} is :code:`cnt`, :code:`cts`, :code:`mcts`, | ||
:code:`nbrcnt`, or :code:`nbrcts`. | ||
|
||
.. note:: | ||
Consider whether or not it's realistic to hold the resampled | ||
statistics in memory rather than writing them to temporary files. | ||
If so, that would reduce the I/O. | ||
|
||
.. _tmp_files_stat_analysis: | ||
|
||
Stat-Analysis Tool | ||
^^^^^^^^^^^^^^^^^^ | ||
|
||
The Stat-Analysis tool reads ASCII output created by the MET | ||
statistics tools. A single job can be specified on the command line | ||
or one or more jobs can be specified in an optional configuration | ||
file. When a configuration file is provided, any filtering options | ||
specified are applied to all entries in the :code:`jobs` array. | ||
|
||
Rather than reading all of the input data for each job, Stat-Analysis | ||
reads all the input data once, applies any common filtering options, | ||
and writes the result to a temporary file. | ||
|
||
* :code:`tmp_stat_analysis_{PID}`: Stat-Analysis reads all of the | ||
input data, applies common filtering logic, and writes the result | ||
to this temporary file. All of the specified jobs read data from | ||
this temporary file, apply any additional job-specific filtering | ||
criteria, and perform the requested operation. | ||
|
||
.. note:: | ||
Consider revising the logic to only use a temp file when actually | ||
necessary, when multiple jobs are specified along with non-empty | ||
common filtering logic. | ||
|
||
.. _tmp_files_python_embedding: | ||
|
||
Python Embedding | ||
^^^^^^^^^^^^^^^^ | ||
|
||
As described in | ||
:numref:`User's Guide Appendix F, Section %s <appendixF>`, when the | ||
:code:`MET_PYTHON_EXE` environment variable is set, the MET tools run | ||
any Python embedding commands using the specified Python executable. | ||
|
||
* :code:`tmp_mpr_{PID}`: When Python embedding of matched pair data | ||
is performed, a Python wrapper is run to execute the user-specified | ||
Python script and write the result to this temporary ASCII file. | ||
|
||
* :code:`tmp_met_nc_{PID}`: When Python embedding of gridded data or | ||
point observations is performed, a Python wrapper is run to | ||
execute the user-specified Python script and write the result to | ||
this temporary NetCDF file. | ||
|
||
The compile-time Python instance is run to read data from these | ||
temporary files. | ||
|
||
.. _tmp_files_tc_diag: | ||
|
||
TC-Diag Tool | ||
^^^^^^^^^^^^ | ||
|
||
The TC-Diag tool requires the use of Python embedding. It processes | ||
one or more ATCF tracks and computes model diagnostics. For each | ||
track point, it converts gridded model data to cylindrical | ||
coordinates centered at that point, writes it to a temporary NetCDF | ||
file, and passes it to Python scripts to compute model diagnostics. | ||
|
||
* :code:`tmp_met_nc_{PID}`: Cylindrical coordinate model data is | ||
written to this temporary NetCDF file for each track point | ||
and passed to Python scripts to compute diagnostics. If requested, | ||
these temporary NetCDF files for each track point are combined into | ||
a single NetCDF cylindrical coordinates output file for each track. |
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
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
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
Oops, something went wrong.