Merge branch 'ohd_14.3.1' of ssh://collaborate3.nws.noaa.gov:29418/AWIPS2_Dev_Baseline into master_14.3.1
Former-commit-id:ca9a4ac6fb
[formerlyfc77941b88
] [formerlyb7cfb9e752
] [formerly1f0a6112c7
[formerlyb7cfb9e752
[formerly 161ffe72d115c7846697afa8be559d2f5fd199da]]] Former-commit-id:1f0a6112c7
Former-commit-id: 17ca0f25d2213832508bb0d62b7865a4e3af8ce7 [formerlyc377233491
] Former-commit-id:f85d84246f
This commit is contained in:
commit
a8e144476a
19 changed files with 17 additions and 113 deletions
|
@ -1,113 +0,0 @@
|
|||
#! /bin/ksh
|
||||
## create new directories for dual-pol products and logs in redmine ticket3454 in A2 14.3.1
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/daa_decoded ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/daa_decoded
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/daa_decoded
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/daa_archive ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/daa_archive
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/daa_archive
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/rdmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/rdmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/rdmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/bdmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/bdmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/bdmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/ldmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/ldmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/ldmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/mdmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/mdmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/mdmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/mldmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/mldmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/mldmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/avgrdmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/avgrdmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/avgrdmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/maxrdmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/maxrdmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/maxrdmosaic
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/locspandp ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/locspandp
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/locspandp
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/locbiasdp ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/locbiasdp
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/locbiasdp
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/state_var_dp ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/state_var_dp
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/state_var_dp
|
||||
fi
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/srdmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/srdmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/srdmosaic
|
||||
fi
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/srdgmosaic ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/srdgmosaic
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/srdgmosaic
|
||||
fi
|
||||
|
||||
# create directory defined by the token dsa_grid_dir
|
||||
# this directory contains the decoded DSA products
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/dsa_decoded ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/dsa_decoded
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/dsa_decoded
|
||||
fi
|
||||
|
||||
# create directory defined by the token dpr_grid_dir
|
||||
# this directory contains the decoded DPR products.
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/dpr_decoded ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/dpr_decoded
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/dpr_decoded
|
||||
fi
|
||||
|
||||
# create directory for Post Analysis
|
||||
# this directory contains 1 hr QPE files generated by the Save/separate option
|
||||
|
||||
if [[ ! -d /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/post_analysis ]]
|
||||
then
|
||||
mkdir /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/post_analysis
|
||||
chmod 777 /awips2/edex/data/share/hydroapps/precip_proc/local/data/mpe/post_analysis
|
||||
fi
|
||||
|
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/daa_archive/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/daa_archive/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/daa_decoded/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/daa_decoded/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/dpr_decoded/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/dpr_decoded/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/dsa_decoded/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/dsa_decoded/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/bdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/bdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/ldmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/ldmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/locbiasdp/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/locbiasdp/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/locspandp/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/locspandp/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/mdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/mdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/mldmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/mldmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/rdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/rdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/srdgmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/srdgmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/srdmosaic/.gitignore
vendored
Normal file
0
nativeLib/files.native/awipsShare/hydroapps/precip_proc/local/data/mpe/srdmosaic/.gitignore
vendored
Normal file
17
ohd/com.raytheon.uf.edex.ohd.feature/.project
Normal file
17
ohd/com.raytheon.uf.edex.ohd.feature/.project
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>com.raytheon.uf.edex.ohd.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
Loading…
Add table
Reference in a new issue