From c734f41c15ada7be59b713caf907cf71159c09bf Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Thu, 20 Jun 2024 14:34:47 -0400 Subject: [PATCH 01/14] Add restart capability to job JGFS_ATMOS_POSTSND --- jobs/JGFS_ATMOS_POSTSND | 4 ++ scripts/exgfs_atmos_postsnd.sh | 26 +++++++++-- ush/gfs_bufr.sh | 79 +++++++++++++++++++++++++++++++--- 3 files changed, 101 insertions(+), 8 deletions(-) diff --git a/jobs/JGFS_ATMOS_POSTSND b/jobs/JGFS_ATMOS_POSTSND index a038fca9e67..2d9c3a81961 100755 --- a/jobs/JGFS_ATMOS_POSTSND +++ b/jobs/JGFS_ATMOS_POSTSND @@ -29,6 +29,10 @@ YMD=${PDY} HH=${cyc} declare_from_tmpl -rx COM_ATMOS_HISTORY COM_ATMOS_BUFR \ [[ ! -d ${COM_ATMOS_GEMPAK} ]] && mkdir -p "${COM_ATMOS_GEMPAK}" [[ ! -d ${COM_ATMOS_WMO} ]] && mkdir -p "${COM_ATMOS_WMO}" +# Create a restart directory in ptmp to hold temporary output from the job JGFS_ATMOS_POSTSND + +export DATA_ATMOS_RESTART=${DATAROOT}/${RUN}.${PDY}/${cyc}/products/atmos/restart +if [[ ! -d ${DATA_ATMOS_RESTART} ]]; then mkdir -p "${DATA_ATMOS_RESTART}"; fi ######################################################## # Execute the script. diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index caf5443a50b..06d2fffcd2f 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -18,6 +18,7 @@ # 7) 2018-07-18 Guang Ping Lou Generalize this version to other platforms # 8) 2019-10-18 Guang Ping Lou Transition to reading in NetCDF model data # 9) 2019-12-18 Guang Ping Lou generalizing to reading in NetCDF or nemsio +# 10) 2024_05_15 Bo Cui Add restart capability ################################################################ source "${USHgfs}/preamble.sh" @@ -48,11 +49,30 @@ GETDIM="${USHgfs}/getncdimlen" LEVS=$(${GETDIM} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf000.${atmfm}" pfull) declare -x LEVS +# Assume there was no run before and hence this is not a RESTART for job postsnd + +export RESTART_postsnd="NO" + +# However, if there was a run before, a directory DATA_ATMOS_RESTART must exist with data in it. + +nrestarts=$(find "$DATA_ATMOS_RESTART" -maxdepth 1 -type f -name '*.bufr.logf*' | wc -l || true) + +echo "${nrestarts}" + +if (( nrestarts == 0 )); then + echo "No restarts found in '${DATA_ATMOS_RESTART}', RESTART_postsnd='${RESTART_postsnd}'" + +else + echo "Restarts found in '${DATA_ATMOS_RESTART}', RESTART_postsnd='YES'" + export RESTART_postsnd="YES" +fi + ### Loop for the hour and wait for the sigma and surface flux file: export FSTART=$STARTHOUR sleep_interval=10 max_tries=360 # + while [ $FSTART -lt $ENDHOUR ] do export FINT=$NINT1 @@ -78,9 +98,9 @@ export FINT=$NINT1 ## 1-hourly output before $NEND1, 3-hourly output after if [[ $((10#$FEND)) -gt $((10#$NEND1)) ]]; then - export FINT=$NINT3 + export FINT="${NINT3}" fi - ${USHgfs}/gfs_bufr.sh + "${USHgfs}/gfs_bufr.sh" export FSTART="${FEND}" done @@ -90,7 +110,7 @@ done ############################################################## cd "${COM_ATMOS_BUFR}" || exit 2 tar -cf - . | /usr/bin/gzip > "${RUN}.${cycle}.bufrsnd.tar.gz" -cd "${DATA}" || exit 2 +cd "${DATA}" || exit ######################################## # Send the single tar file to OSO diff --git a/ush/gfs_bufr.sh b/ush/gfs_bufr.sh index 8a7d9b10918..d608fa1be57 100755 --- a/ush/gfs_bufr.sh +++ b/ush/gfs_bufr.sh @@ -18,6 +18,7 @@ # 2018-05-30 Guang Ping Lou: Make sure all files are available. # 2019-10-10 Guang Ping Lou: Read in NetCDF files # 2024-03-03 Bo Cui: Add options to use different bufr table for different resolution NetCDF files +# 2024_05_15 Bo Cui: Add restart capability # echo "History: February 2003 - First implementation of this utility script" # source "${USHgfs}/preamble.sh" @@ -64,7 +65,6 @@ for (( hr = 10#${FSTART}; hr <= 10#${FEND}; hr = hr + 10#${FINT} )); do echo "FATAL ERROR: COULD NOT LOCATE logf${hh3} file" exit 2 fi - #------------------------------------------------------------------ ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf${hh3}.${atmfm}" "sigf${hh2}" ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${hh3}.${atmfm}" "flxf${hh2}" @@ -82,19 +82,88 @@ case "${CASE}" in ${NLN} "${PARMgfs}/product/bufr_ij9km.txt" fort.7 ;; *) - echo "WARNING: No bufr table for this resolution, using the one for C768" - ${NLN} "${PARMgfs}/product/bufr_ij13km.txt" fort.7 + echo "FATAL ERROR: Unrecognized bufr_ij*km.txt For CASE ${CASE}, ABORT!" + exit 1 ;; esac -${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" -export err=$? + +if [[ ${RESTART_postsnd} == "YES" ]]; then + + if [ -f "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" ]; then + + echo "Copy job postsnd files from restart directory" + + cp -p "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" . + while IFS= read -r fortname; do + cp -p "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr_${fortname}" "${fortname}" + done < "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" + err=0 + + if [[ ${FEND} -eq ${ENDHOUR} ]]; then + ${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" + export err=$? + fi + + else + + echo "No more job postsnd restart file found in '${DATA_ATMOS_RESTART}'" + export RESTART_postsnd="NO" + echo "set RESTART_postsnd='${RESTART_postsnd}'" + ${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" + export err=$? + fi + +else + + ${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" + export err=$? +fi if [[ "${err}" -ne 0 ]]; then echo "GFS postsnd job error, Please check files " echo "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf${hh2}.${atmfm}" echo "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${hh2}.${atmfm}" err_chk + +else + + # Count the number of restart files + nrestarts=0 + nrestarts=$(find ./ -maxdepth 1 -type f -name 'fort.*' | wc -l || true) + echo "Number of restart fort.* files found: ${nrestarts}" + + # Check if there are restart files + if [[ "${nrestarts}" -gt 0 ]]; then + echo "Copying GFS postsnd files to restart directory..." + + # Exclude specific files and save the rest to a log file + #ls fort.* | grep -v -e 'fort\.1' -e 'fort\.7' -e 'fort\.8' > "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" + + # Initialize an empty array to store fort file names + files=() + + # Loop through files in the directory + for file in fort.*; do + # Check if the file is not fort.1 or fort.7 or fort.8 + if [[ "${file}" != "fort.1" && "${file}" != "fort.7" && "${file}" != "fort.8" ]]; then + files+=("${file}") + fi + done + + # Write the list of fort files to the log file + printf "%s\n" "${files[@]}" > "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" + + # Copy each restart file to the restart directory + while IFS= read -r fortname; do + # echo "Copying restart file: $fortname" + cp -p "${fortname}" "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr_${fortname}" + done < "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" + fi + + # Copy the log file to the restart directory + cp -p "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" "${DATA_ATMOS_RESTART}/" + fi exit "${err}" From b0637b78018efba4d80b40d554edf223728c91ae Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Wed, 21 Aug 2024 09:23:20 -0400 Subject: [PATCH 02/14] Convert bufr to handle one forecast at a time --- jobs/JGFS_ATMOS_POSTSND | 4 - scripts/exgfs_atmos_postsnd.sh | 151 ++++++++++++++++++++++----------- ush/gfs_bufr.sh | 128 +++++++++------------------- 3 files changed, 141 insertions(+), 142 deletions(-) diff --git a/jobs/JGFS_ATMOS_POSTSND b/jobs/JGFS_ATMOS_POSTSND index 9f6fe04212b..13adb11d7d3 100755 --- a/jobs/JGFS_ATMOS_POSTSND +++ b/jobs/JGFS_ATMOS_POSTSND @@ -28,10 +28,6 @@ YMD=${PDY} HH=${cyc} declare_from_tmpl -rx COM_ATMOS_HISTORY COM_ATMOS_BUFR \ [[ ! -d ${COM_ATMOS_GEMPAK} ]] && mkdir -p "${COM_ATMOS_GEMPAK}" [[ ! -d ${COM_ATMOS_WMO} ]] && mkdir -p "${COM_ATMOS_WMO}" -# Create a restart directory in ptmp to hold temporary output from the job JGFS_ATMOS_POSTSND - -export DATA_ATMOS_RESTART=${DATAROOT}/${RUN}.${PDY}/${cyc}/products/atmos/restart -if [[ ! -d ${DATA_ATMOS_RESTART} ]]; then mkdir -p "${DATA_ATMOS_RESTART}"; fi ######################################################## # Execute the script. diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index 06d2fffcd2f..e4395343424 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -18,11 +18,15 @@ # 7) 2018-07-18 Guang Ping Lou Generalize this version to other platforms # 8) 2019-10-18 Guang Ping Lou Transition to reading in NetCDF model data # 9) 2019-12-18 Guang Ping Lou generalizing to reading in NetCDF or nemsio -# 10) 2024_05_15 Bo Cui Add restart capability +# 10) 2024-08-08 Bo Cui Update to handle one forecast at a time +# For GFSv17 bufr, total number of forecast hours is 141(num_hours=141) +# it requires 7 nodes & allocate 21 processes per node(num_ppn=21) ################################################################ source "${USHgfs}/preamble.sh" +runscript=${USHgfs}/gfs_bufr.sh + cd $DATA ######################################## @@ -45,72 +49,122 @@ export NINT3=${FHOUT_GFS:-3} rm -f -r "${COM_ATMOS_BUFR}" mkdir -p "${COM_ATMOS_BUFR}" +export COM_ATMOS_BUFR="${COM_ATMOS_BUFR}" + GETDIM="${USHgfs}/getncdimlen" -LEVS=$(${GETDIM} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf000.${atmfm}" pfull) +export LEVS=$(${GETDIM} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf000.${atmfm}" pfull) declare -x LEVS -# Assume there was no run before and hence this is not a RESTART for job postsnd +### wait for the sigma and surface flux file: +sleep_interval=10 +max_tries=360 +# -export RESTART_postsnd="NO" +# Initialize an empty list to store the hours +hour_list=() -# However, if there was a run before, a directory DATA_ATMOS_RESTART must exist with data in it. +# Generate hours from 0 to NEND1 with interval NINT1 +# Convert ENDHOUR to decimal through $((10#$ENDHOUR)) to avoid it is thought as octal number +for (( hour=0; hour<=$((10#$NEND1)) && hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT1)) )); do + hour_list+=($(printf "%03d" $hour)) +done -nrestarts=$(find "$DATA_ATMOS_RESTART" -maxdepth 1 -type f -name '*.bufr.logf*' | wc -l || true) +# Generate hours from NEND1 + NINT3 to ENDHOUR with interval NINT3 +for (( hour=$((10#$NEND1))+$((10#$NINT3)); hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT3)) )); do + hour_list+=($(printf "%03d" $hour)) +done + +# Print the hour list +echo "Hour List: ${hour_list[@]}" + +# Count the number of elements in the hour_list +num_hours=${#hour_list[@]} -echo "${nrestarts}" +# Print the total number of hours +echo "Total number of hours: $num_hours" -if (( nrestarts == 0 )); then - echo "No restarts found in '${DATA_ATMOS_RESTART}', RESTART_postsnd='${RESTART_postsnd}'" +# allocate 21 processes per node +# don't allocate more processes, or it might have memory issue +num_ppn=21 +export APRUN="mpiexec -np "${num_hours}" -ppn "${num_ppn}" --cpu-bind core cfp " -else - echo "Restarts found in '${DATA_ATMOS_RESTART}', RESTART_postsnd='YES'" - export RESTART_postsnd="YES" +if [ -s "${DATA}/poescript_bufr" ]; then + rm ${DATA}/poescript_bufr fi -### Loop for the hour and wait for the sigma and surface flux file: -export FSTART=$STARTHOUR -sleep_interval=10 -max_tries=360 -# +for fhr in ${hour_list[@]}; do + + if [ ! -s "${DATA}/${fhr}" ]; then mkdir -p ${DATA}/${fhr}; fi + export fhr=${fhr} + export FINT=${NINT1} + ## 1-hourly output before $NEND1, 3-hourly output after + if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then + export FINT=${NINT3} + fi + if [ ${fhr} -eq 000 ]; then + export F00FLAG="YES" + else + export F00FLAG="NO" + fi + + # Convert fhr to integer + fhr_int=$((10#$fhr)) + + # Get previous hour + if (( fhr_int == STARTHOUR )); then + fhr_p=${fhr_int} + else + fhr_p=$(( fhr_int - FINT )) + fi + + # Format fhr_p with leading zeros + fhr_p=$(printf "%03d" $fhr_p) + + filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr}.${logfm}" + if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then + echo "Waiting for the file ${filename} for $((sleep_interval * (max_tries - 1))) seconds..." + err_exit "FATAL ERROR: logf${fhr} not found after waiting $((sleep_interval * (max_tries - 1))) secs" + fi + echo "${runscript} \"${fhr}\" \"${fhr_p}\" \"${FINT}\" \"${F00FLAG}\" \"${DATA}/${fhr}\"" >> "${DATA}/poescript_bufr" +done -while [ $FSTART -lt $ENDHOUR ] -do -export FINT=$NINT1 - # Define the end hour for the input - export FEND=$(expr $FSTART + $INCREMENT) - if test $FEND -lt 100; then FEND=0$FEND; fi - if [ $FSTART -eq 00 ] - then - export F00FLAG=YES - else - export F00FLAG=NO - fi - - if [ $FEND -eq $ENDHOUR ] - then - export MAKEBUFR=YES - fi - - filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${FEND}.${logfm}" - if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then - err_exit "FATAL ERROR: logf${FEND} not found after waiting $((sleep_interval * ( max_tries - 1) )) secs" - fi +chmod +x "${DATA}/poescript_bufr" +startmsg +$APRUN "${DATA}/poescript_bufr" +export err=$?; err_chk -## 1-hourly output before $NEND1, 3-hourly output after - if [[ $((10#$FEND)) -gt $((10#$NEND1)) ]]; then - export FINT="${NINT3}" - fi - "${USHgfs}/gfs_bufr.sh" - - export FSTART="${FEND}" +cd ${DATA} + +# Initialize fortnum +fortnum=20 + +# Loop through each element in the array +for fhr in "${hour_list[@]}"; do + # Increment fortnum + fortnum=$((fortnum + 1)) + ${NLN} "${DATA}/${fhr}/fort.${fortnum}" "fort.${fortnum}" done +export MAKEBUFR=YES +export fhr=${ENDHOUR} +export FINT=${NINT1} +## 1-hourly output before $NEND1, 3-hourly output after +if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then + export FINT=${NINT3} +fi +if [ ${fhr} -eq 000 ]; then + export F00FLAG="YES" +else + export F00FLAG="NO" +fi +${runscript} "${fhr}" "${fhr_p}" "${FINT}" "${F00FLAG}" "${DATA}" + ############################################################## # Tar and gzip the individual bufr files and send them to /com ############################################################## cd "${COM_ATMOS_BUFR}" || exit 2 tar -cf - . | /usr/bin/gzip > "${RUN}.${cycle}.bufrsnd.tar.gz" -cd "${DATA}" || exit +cd "${DATA}" || exit 2 ######################################## # Send the single tar file to OSO @@ -125,7 +179,7 @@ fi # add appropriate WMO Headers. ######################################## rm -rf poe_col -for (( m = 1; m <= NUM_SND_COLLECTIVES ; m++ )); do +for (( m = 1; m <= $((10#$NUM_SND_COLLECTIVES)); m++ )); do echo "sh ${USHgfs}/gfs_sndp.sh ${m} " >> poe_col done @@ -143,4 +197,5 @@ ${APRUN_POSTSNDCFP} cmdfile sh "${USHgfs}/gfs_bfr2gpk.sh" + ############## END OF SCRIPT ####################### diff --git a/ush/gfs_bufr.sh b/ush/gfs_bufr.sh index d608fa1be57..499481e8288 100755 --- a/ush/gfs_bufr.sh +++ b/ush/gfs_bufr.sh @@ -18,9 +18,17 @@ # 2018-05-30 Guang Ping Lou: Make sure all files are available. # 2019-10-10 Guang Ping Lou: Read in NetCDF files # 2024-03-03 Bo Cui: Add options to use different bufr table for different resolution NetCDF files -# 2024_05_15 Bo Cui: Add restart capability +# 2024-08-08 Bo Cui: Update to handle one forecast at a time # echo "History: February 2003 - First implementation of this utility script" # +fhr=$1 +fhr_p=$2 +FINT=$3 +F00FLAG=$4 +workdir=$5 + +cd ${workdir} + source "${USHgfs}/preamble.sh" if [[ "${F00FLAG}" == "YES" ]]; then @@ -46,29 +54,37 @@ cat << EOF > gfsparm &NAMMET levs=${LEVS},makebufr=${bufrflag}, dird="${COM_ATMOS_BUFR}/bufr", - nstart=${FSTART},nend=${FEND},nint=${FINT}, + nstart=${fhr},nend=${fhr},nint=${FINT}, nend1=${NEND1},nint1=${NINT1},nint3=${NINT3}, - nsfc=80,f00=${f00flag},fformat=${fformat},np1=0 + nsfc=80,f00=${f00flag},fformat=${fformat},np1=0, + fnsig="sigf${fhr}", + fngrib="flxf${fhr}", + fngrib2="flxf${fhr_p}" / EOF sleep_interval=10 max_tries=1000 -for (( hr = 10#${FSTART}; hr <= 10#${FEND}; hr = hr + 10#${FINT} )); do - hh2=$(printf %02i "${hr}") - hh3=$(printf %03i "${hr}") - - #--------------------------------------------------------- - # Make sure all files are available: - filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${hh3}.${logfm}" - if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then - echo "FATAL ERROR: COULD NOT LOCATE logf${hh3} file" - exit 2 - fi - #------------------------------------------------------------------ - ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf${hh3}.${atmfm}" "sigf${hh2}" - ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${hh3}.${atmfm}" "flxf${hh2}" -done + +#--------------------------------------------------------- +# Make sure all files are available: + +filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr}.${logfm}" +if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then + echo "FATAL ERROR: COULD NOT LOCATE logf${fhr} file" + exit 2 +fi + +filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr_p}.${logfm}" +if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then + echo "FATAL ERROR: COULD NOT LOCATE logf${fhr_p} file" + exit 2 +fi + +#------------------------------------------------------------------ +${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf${fhr}.${atmfm}" "sigf${fhr}" +${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${fhr}.${atmfm}" "flxf${fhr}" +${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${fhr_p}.${atmfm}" "flxf${fhr_p}" # define input BUFR table file. ${NLN} "${PARMgfs}/product/bufr_gfs_${CLASS}.tbl" fort.1 @@ -87,83 +103,15 @@ case "${CASE}" in ;; esac +"${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${fhr}" -if [[ ${RESTART_postsnd} == "YES" ]]; then - - if [ -f "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" ]; then - - echo "Copy job postsnd files from restart directory" - - cp -p "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" . - while IFS= read -r fortname; do - cp -p "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr_${fortname}" "${fortname}" - done < "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" - err=0 - - if [[ ${FEND} -eq ${ENDHOUR} ]]; then - ${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" - export err=$? - fi - - else - - echo "No more job postsnd restart file found in '${DATA_ATMOS_RESTART}'" - export RESTART_postsnd="NO" - echo "set RESTART_postsnd='${RESTART_postsnd}'" - ${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" - export err=$? - fi - -else - - ${APRUN_POSTSND} "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${FEND}" - export err=$? -fi +export err=$? if [[ "${err}" -ne 0 ]]; then echo "GFS postsnd job error, Please check files " - echo "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf${hh2}.${atmfm}" - echo "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${hh2}.${atmfm}" + echo "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf${fhr}.${atmfm}" + echo "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${fhr}.${atmfm}" err_chk - -else - - # Count the number of restart files - nrestarts=0 - nrestarts=$(find ./ -maxdepth 1 -type f -name 'fort.*' | wc -l || true) - echo "Number of restart fort.* files found: ${nrestarts}" - - # Check if there are restart files - if [[ "${nrestarts}" -gt 0 ]]; then - echo "Copying GFS postsnd files to restart directory..." - - # Exclude specific files and save the rest to a log file - #ls fort.* | grep -v -e 'fort\.1' -e 'fort\.7' -e 'fort\.8' > "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" - - # Initialize an empty array to store fort file names - files=() - - # Loop through files in the directory - for file in fort.*; do - # Check if the file is not fort.1 or fort.7 or fort.8 - if [[ "${file}" != "fort.1" && "${file}" != "fort.7" && "${file}" != "fort.8" ]]; then - files+=("${file}") - fi - done - - # Write the list of fort files to the log file - printf "%s\n" "${files[@]}" > "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" - - # Copy each restart file to the restart directory - while IFS= read -r fortname; do - # echo "Copying restart file: $fortname" - cp -p "${fortname}" "${DATA_ATMOS_RESTART}/${RUN}.${cycle}.bufr_${fortname}" - done < "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" - fi - - # Copy the log file to the restart directory - cp -p "${RUN}.${cycle}.bufr.logf${FEND}.${logfm}" "${DATA_ATMOS_RESTART}/" - fi exit "${err}" From c4f0399d575cca91608acd96b489813e12c8737b Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Wed, 21 Aug 2024 17:08:47 -0400 Subject: [PATCH 03/14] update to fix shellcheck warning --- scripts/exgfs_atmos_postsnd.sh | 20 ++++++++++---------- ush/gfs_bufr.sh | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index e4395343424..18199002964 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -66,19 +66,19 @@ hour_list=() # Generate hours from 0 to NEND1 with interval NINT1 # Convert ENDHOUR to decimal through $((10#$ENDHOUR)) to avoid it is thought as octal number for (( hour=0; hour<=$((10#$NEND1)) && hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT1)) )); do - hour_list+=($(printf "%03d" $hour)) + hour_list+=("$(printf "%03d" $hour)") done # Generate hours from NEND1 + NINT3 to ENDHOUR with interval NINT3 for (( hour=$((10#$NEND1))+$((10#$NINT3)); hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT3)) )); do - hour_list+=($(printf "%03d" $hour)) + hour_list+=("$(printf "%03d" $hour)") done # Print the hour list -echo "Hour List: ${hour_list[@]}" +echo "Hour List:" "${hour_list[@]}" # Count the number of elements in the hour_list -num_hours=${#hour_list[@]} +num_hours="${#hour_list[@]}" # Print the total number of hours echo "Total number of hours: $num_hours" @@ -86,13 +86,13 @@ echo "Total number of hours: $num_hours" # allocate 21 processes per node # don't allocate more processes, or it might have memory issue num_ppn=21 -export APRUN="mpiexec -np "${num_hours}" -ppn "${num_ppn}" --cpu-bind core cfp " +export APRUN="mpiexec -np ${num_hours} -ppn ${num_ppn} --cpu-bind core cfp " if [ -s "${DATA}/poescript_bufr" ]; then rm ${DATA}/poescript_bufr fi -for fhr in ${hour_list[@]}; do +for fhr in "${hour_list[@]}"; do if [ ! -s "${DATA}/${fhr}" ]; then mkdir -p ${DATA}/${fhr}; fi export fhr=${fhr} @@ -101,7 +101,7 @@ for fhr in ${hour_list[@]}; do if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then export FINT=${NINT3} fi - if [ ${fhr} -eq 000 ]; then + if [[ ${fhr} -eq 000 ]]; then export F00FLAG="YES" else export F00FLAG="NO" @@ -118,7 +118,7 @@ for fhr in ${hour_list[@]}; do fi # Format fhr_p with leading zeros - fhr_p=$(printf "%03d" $fhr_p) + fhr_p="$(printf "%03d" $fhr_p)" filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr}.${logfm}" if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then @@ -133,7 +133,7 @@ startmsg $APRUN "${DATA}/poescript_bufr" export err=$?; err_chk -cd ${DATA} +cd "${DATA}" # Initialize fortnum fortnum=20 @@ -152,7 +152,7 @@ export FINT=${NINT1} if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then export FINT=${NINT3} fi -if [ ${fhr} -eq 000 ]; then +if [[ ${fhr} -eq 000 ]]; then export F00FLAG="YES" else export F00FLAG="NO" diff --git a/ush/gfs_bufr.sh b/ush/gfs_bufr.sh index 499481e8288..3ce4ecd522e 100755 --- a/ush/gfs_bufr.sh +++ b/ush/gfs_bufr.sh @@ -21,13 +21,13 @@ # 2024-08-08 Bo Cui: Update to handle one forecast at a time # echo "History: February 2003 - First implementation of this utility script" # -fhr=$1 -fhr_p=$2 -FINT=$3 -F00FLAG=$4 -workdir=$5 +fhr="$1" +fhr_p="$2" +FINT="$3" +F00FLAG="$4" +workdir="$5" -cd ${workdir} +cd "${workdir}" source "${USHgfs}/preamble.sh" From f711c3fccb6862d6f34f2082b2dc1e910030993c Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Wed, 21 Aug 2024 17:53:51 -0400 Subject: [PATCH 04/14] fix shellcheck issue --- scripts/exgfs_atmos_postsnd.sh | 10 +++++----- ush/gfs_bufr.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index 18199002964..b13e64a6cc6 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -27,7 +27,7 @@ source "${USHgfs}/preamble.sh" runscript=${USHgfs}/gfs_bufr.sh -cd $DATA +cd "${DATA}" || exit 2 ######################################## @@ -66,12 +66,12 @@ hour_list=() # Generate hours from 0 to NEND1 with interval NINT1 # Convert ENDHOUR to decimal through $((10#$ENDHOUR)) to avoid it is thought as octal number for (( hour=0; hour<=$((10#$NEND1)) && hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT1)) )); do - hour_list+=("$(printf "%03d" $hour)") + hour_list+=("$(printf "%03d" "$hour")") done # Generate hours from NEND1 + NINT3 to ENDHOUR with interval NINT3 for (( hour=$((10#$NEND1))+$((10#$NINT3)); hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT3)) )); do - hour_list+=("$(printf "%03d" $hour)") + hour_list+=("$(printf "%03d" "$hour")") done # Print the hour list @@ -118,7 +118,7 @@ for fhr in "${hour_list[@]}"; do fi # Format fhr_p with leading zeros - fhr_p="$(printf "%03d" $fhr_p)" + fhr_p="$(printf "%03d" "$fhr_p")" filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr}.${logfm}" if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then @@ -133,7 +133,7 @@ startmsg $APRUN "${DATA}/poescript_bufr" export err=$?; err_chk -cd "${DATA}" +cd "${DATA}" || exit 2 # Initialize fortnum fortnum=20 diff --git a/ush/gfs_bufr.sh b/ush/gfs_bufr.sh index 3ce4ecd522e..58404aabc90 100755 --- a/ush/gfs_bufr.sh +++ b/ush/gfs_bufr.sh @@ -27,7 +27,7 @@ FINT="$3" F00FLAG="$4" workdir="$5" -cd "${workdir}" +cd "${workdir}" || exit 2 source "${USHgfs}/preamble.sh" From 202c4495e1f7fb61fcf0480245ed2eea81708a3d Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Thu, 29 Aug 2024 14:22:11 -0400 Subject: [PATCH 05/14] Updated gfs_utils hash --- sorc/gfs_utils.fd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorc/gfs_utils.fd b/sorc/gfs_utils.fd index 279bbf2097d..bd8f13d8677 160000 --- a/sorc/gfs_utils.fd +++ b/sorc/gfs_utils.fd @@ -1 +1 @@ -Subproject commit 279bbf2097d87321294436d17bf5b73c4c07ab4a +Subproject commit bd8f13d867721e4ee28de4af437a0de4283609c3 From 133755a76c577ae81475f470cbfb0961339f8fba Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Tue, 3 Sep 2024 12:35:08 -0400 Subject: [PATCH 06/14] 20240903 gfsv17 bufr package update --- env/WCOSS2.env | 2 +- parm/config/gfs/config.resources | 6 ++--- scripts/exgfs_atmos_postsnd.sh | 44 +++++++++++++++----------------- ush/gfs_bufr.sh | 7 ++--- 4 files changed, 27 insertions(+), 32 deletions(-) diff --git a/env/WCOSS2.env b/env/WCOSS2.env index 18caf1bc037..1170a41d9f7 100755 --- a/env/WCOSS2.env +++ b/env/WCOSS2.env @@ -223,7 +223,7 @@ elif [[ "${step}" = "postsnd" ]]; then export OMP_NUM_THREADS=1 export NTHREADS_POSTSND=${NTHREADS1} - export APRUN_POSTSND="${APRUN} --depth=${NTHREADS_POSTSND} --cpu-bind depth" + export APRUN_POSTSND="${APRUN} -n ${ntasks} -ppn ${tasks_per_node} ${mpmd_opt}" export NTHREADS_POSTSNDCFP=${threads_per_task_postsndcfp:-1} [[ ${NTHREADS_POSTSNDCFP} -gt ${max_threads_per_task} ]] && export NTHREADS_POSTSNDCFP=${max_threads_per_task} diff --git a/parm/config/gfs/config.resources b/parm/config/gfs/config.resources index 719b31342a7..c7a3f27d20d 100644 --- a/parm/config/gfs/config.resources +++ b/parm/config/gfs/config.resources @@ -1094,9 +1094,9 @@ case ${step} in "postsnd") walltime="02:00:00" - ntasks=40 - threads_per_task=8 - tasks_per_node=10 + export ntasks=141 + threads_per_task=6 + export tasks_per_node=21 export ntasks_postsndcfp=9 export tasks_per_node_postsndcfp=1 postsnd_req_cores=$(( tasks_per_node * threads_per_task )) diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index b13e64a6cc6..dbae118d52b 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -49,28 +49,21 @@ export NINT3=${FHOUT_GFS:-3} rm -f -r "${COM_ATMOS_BUFR}" mkdir -p "${COM_ATMOS_BUFR}" -export COM_ATMOS_BUFR="${COM_ATMOS_BUFR}" GETDIM="${USHgfs}/getncdimlen" -export LEVS=$(${GETDIM} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf000.${atmfm}" pfull) +LEVS=$(${GETDIM} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atmf000.${atmfm}" pfull) declare -x LEVS -### wait for the sigma and surface flux file: -sleep_interval=10 -max_tries=360 -# - # Initialize an empty list to store the hours hour_list=() # Generate hours from 0 to NEND1 with interval NINT1 -# Convert ENDHOUR to decimal through $((10#$ENDHOUR)) to avoid it is thought as octal number -for (( hour=0; hour<=$((10#$NEND1)) && hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT1)) )); do +for (( hour=0; hour<=NEND1 && hour<=ENDHOUR; hour+=NINT1 )); do hour_list+=("$(printf "%03d" "$hour")") done # Generate hours from NEND1 + NINT3 to ENDHOUR with interval NINT3 -for (( hour=$((10#$NEND1))+$((10#$NINT3)); hour<=$((10#$ENDHOUR)); hour+=$((10#$NINT3)) )); do +for (( hour=NEND1+NINT3; hour<=ENDHOUR; hour+=NINT3 )); do hour_list+=("$(printf "%03d" "$hour")") done @@ -78,15 +71,15 @@ done echo "Hour List:" "${hour_list[@]}" # Count the number of elements in the hour_list -num_hours="${#hour_list[@]}" +export ntasks="${#hour_list[@]}" # Print the total number of hours -echo "Total number of hours: $num_hours" +echo "Total number of hours: $ntasks" # allocate 21 processes per node # don't allocate more processes, or it might have memory issue -num_ppn=21 -export APRUN="mpiexec -np ${num_hours} -ppn ${num_ppn} --cpu-bind core cfp " +#export tasks_per_node=21 +export APRUN="mpiexec -np ${ntasks} -ppn ${tasks_per_node} --cpu-bind core cfp " if [ -s "${DATA}/poescript_bufr" ]; then rm ${DATA}/poescript_bufr @@ -95,13 +88,12 @@ fi for fhr in "${hour_list[@]}"; do if [ ! -s "${DATA}/${fhr}" ]; then mkdir -p ${DATA}/${fhr}; fi - export fhr=${fhr} export FINT=${NINT1} ## 1-hourly output before $NEND1, 3-hourly output after if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then export FINT=${NINT3} fi - if [[ ${fhr} -eq 000 ]]; then + if [[ $((10#${fhr})) -eq 0 ]]; then export F00FLAG="YES" else export F00FLAG="NO" @@ -121,18 +113,24 @@ for fhr in "${hour_list[@]}"; do fhr_p="$(printf "%03d" "$fhr_p")" filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr}.${logfm}" - if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then - echo "Waiting for the file ${filename} for $((sleep_interval * (max_tries - 1))) seconds..." - err_exit "FATAL ERROR: logf${fhr} not found after waiting $((sleep_interval * (max_tries - 1))) secs" + if [[ -z ${filename} ]]; then + echo "File ${filename} is required but not found." + err_exit "FATAL ERROR: logf${fhr} not found." + else + echo "${runscript} \"${fhr}\" \"${fhr_p}\" \"${FINT}\" \"${F00FLAG}\" \"${DATA}/${fhr}\"" >> "${DATA}/poescript_bufr" fi - echo "${runscript} \"${fhr}\" \"${fhr_p}\" \"${FINT}\" \"${F00FLAG}\" \"${DATA}/${fhr}\"" >> "${DATA}/poescript_bufr" done +# Run with MPMD chmod +x "${DATA}/poescript_bufr" -startmsg $APRUN "${DATA}/poescript_bufr" export err=$?; err_chk +# Run with MPMD +#chmod +x "${DATA}/poescript_bufr" +#bash +x "${DATA}/poescript_bufr" > mpmd.out 2>&1 +#export err=$?; err_chk + cd "${DATA}" || exit 2 # Initialize fortnum @@ -152,7 +150,7 @@ export FINT=${NINT1} if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then export FINT=${NINT3} fi -if [[ ${fhr} -eq 000 ]]; then +if [[ $((10#${fhr})) -eq 0 ]]; then export F00FLAG="YES" else export F00FLAG="NO" @@ -179,7 +177,7 @@ fi # add appropriate WMO Headers. ######################################## rm -rf poe_col -for (( m = 1; m <= $((10#$NUM_SND_COLLECTIVES)); m++ )); do +for (( m = 1; m <= NUM_SND_COLLECTIVES; m++ )); do echo "sh ${USHgfs}/gfs_sndp.sh ${m} " >> poe_col done diff --git a/ush/gfs_bufr.sh b/ush/gfs_bufr.sh index 58404aabc90..546b542b00c 100755 --- a/ush/gfs_bufr.sh +++ b/ush/gfs_bufr.sh @@ -63,20 +63,17 @@ cat << EOF > gfsparm / EOF -sleep_interval=10 -max_tries=1000 - #--------------------------------------------------------- # Make sure all files are available: filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr}.${logfm}" -if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then +if [[ -z ${filename} ]]; then echo "FATAL ERROR: COULD NOT LOCATE logf${fhr} file" exit 2 fi filename="${COM_ATMOS_HISTORY}/${RUN}.${cycle}.atm.logf${fhr_p}.${logfm}" -if ! wait_for_file "${filename}" "${sleep_interval}" "${max_tries}"; then +if [[ -z ${filename} ]]; then echo "FATAL ERROR: COULD NOT LOCATE logf${fhr_p} file" exit 2 fi From e2933706214a998717a0bcda671f46789e844b32 Mon Sep 17 00:00:00 2001 From: BoCui-NOAA <53531984+BoCui-NOAA@users.noreply.github.com> Date: Wed, 4 Sep 2024 13:06:22 -0400 Subject: [PATCH 07/14] Update env/WCOSS2.env Co-authored-by: Walter Kolczynski - NOAA --- env/WCOSS2.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/WCOSS2.env b/env/WCOSS2.env index 1170a41d9f7..9f73657e7ad 100755 --- a/env/WCOSS2.env +++ b/env/WCOSS2.env @@ -223,7 +223,7 @@ elif [[ "${step}" = "postsnd" ]]; then export OMP_NUM_THREADS=1 export NTHREADS_POSTSND=${NTHREADS1} - export APRUN_POSTSND="${APRUN} -n ${ntasks} -ppn ${tasks_per_node} ${mpmd_opt}" + export mpmd_opt="${mpmd_opt} -ppn 21" export NTHREADS_POSTSNDCFP=${threads_per_task_postsndcfp:-1} [[ ${NTHREADS_POSTSNDCFP} -gt ${max_threads_per_task} ]] && export NTHREADS_POSTSNDCFP=${max_threads_per_task} From 0e94d926e751af9b1de3b093e9cce7964740826d Mon Sep 17 00:00:00 2001 From: BoCui-NOAA <53531984+BoCui-NOAA@users.noreply.github.com> Date: Wed, 4 Sep 2024 13:09:43 -0400 Subject: [PATCH 08/14] Update scripts/exgfs_atmos_postsnd.sh Co-authored-by: Walter Kolczynski - NOAA --- scripts/exgfs_atmos_postsnd.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index dbae118d52b..c4075fdb556 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -122,14 +122,7 @@ for fhr in "${hour_list[@]}"; do done # Run with MPMD -chmod +x "${DATA}/poescript_bufr" -$APRUN "${DATA}/poescript_bufr" -export err=$?; err_chk - -# Run with MPMD -#chmod +x "${DATA}/poescript_bufr" -#bash +x "${DATA}/poescript_bufr" > mpmd.out 2>&1 -#export err=$?; err_chk +"${USHgfs}/run_mpmd.sh" "${DATA}/poescript_bufr" cd "${DATA}" || exit 2 From 5f5e542f78d794ae0d50a403d24ba514747cdb94 Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Fri, 6 Sep 2024 12:36:04 -0400 Subject: [PATCH 09/14] Add new bufr table for GFS C96 output --- env/WCOSS2.env | 2 +- .../{bufr_ij9km.txt => bufr_ij_gfs_C1152.txt} | 0 .../{bufr_ij13km.txt => bufr_ij_gfs_C768.txt} | 0 parm/product/bufr_ij_gfs_C96.txt | 2115 +++++++++++++++++ scripts/exgfs_atmos_postsnd.sh | 6 +- ush/gfs_bufr.sh | 31 +- 6 files changed, 2136 insertions(+), 18 deletions(-) rename parm/product/{bufr_ij9km.txt => bufr_ij_gfs_C1152.txt} (100%) rename parm/product/{bufr_ij13km.txt => bufr_ij_gfs_C768.txt} (100%) create mode 100644 parm/product/bufr_ij_gfs_C96.txt diff --git a/env/WCOSS2.env b/env/WCOSS2.env index 9f73657e7ad..731c82e7137 100755 --- a/env/WCOSS2.env +++ b/env/WCOSS2.env @@ -223,7 +223,7 @@ elif [[ "${step}" = "postsnd" ]]; then export OMP_NUM_THREADS=1 export NTHREADS_POSTSND=${NTHREADS1} - export mpmd_opt="${mpmd_opt} -ppn 21" + export mpmd_opt="-ppn 21 ${mpmd_opt}" export NTHREADS_POSTSNDCFP=${threads_per_task_postsndcfp:-1} [[ ${NTHREADS_POSTSNDCFP} -gt ${max_threads_per_task} ]] && export NTHREADS_POSTSNDCFP=${max_threads_per_task} diff --git a/parm/product/bufr_ij9km.txt b/parm/product/bufr_ij_gfs_C1152.txt similarity index 100% rename from parm/product/bufr_ij9km.txt rename to parm/product/bufr_ij_gfs_C1152.txt diff --git a/parm/product/bufr_ij13km.txt b/parm/product/bufr_ij_gfs_C768.txt similarity index 100% rename from parm/product/bufr_ij13km.txt rename to parm/product/bufr_ij_gfs_C768.txt diff --git a/parm/product/bufr_ij_gfs_C96.txt b/parm/product/bufr_ij_gfs_C96.txt new file mode 100644 index 00000000000..c005cc3170c --- /dev/null +++ b/parm/product/bufr_ij_gfs_C96.txt @@ -0,0 +1,2115 @@ + 1 235 22 69.58 -140.18 + 2 247 21 69.90 -128.97 + 3 256 22 69.58 -120.75 + 4 244 26 65.00 -132.00 + 5 256 26 65.00 -120.00 + 6 275 26 65.10 -102.43 + 7 235 32 60.00 -140.00 + 8 256 32 60.00 -120.00 + 9 278 32 60.00 -100.00 + 10 249 35 57.00 -127.00 + 11 226 21 70.20 -148.47 + 12 271 39 53.63 -106.20 + 13 216 24 67.10 -157.85 + 14 272 38 53.99 -105.12 + 15 259 39 52.88 -118.07 + 16 270 29 62.50 -107.00 + 17 267 49 43.90 -110.00 + 18 281 47 45.80 -97.45 + 19 283 49 43.50 -95.60 + 20 286 60 33.22 -92.80 + 21 283 51 42.04 -94.79 + 22 285 51 42.11 -92.92 + 23 293 60 34.10 -86.10 + 24 294 58 35.20 -84.80 + 25 295 59 34.80 -84.05 + 26 298 57 36.72 -80.97 + 27 264 44 48.32 -113.35 + 28 270 51 42.20 -107.20 + 29 273 50 42.76 -104.45 + 30 275 51 42.30 -102.40 + 31 278 50 42.60 -99.90 + 32 271 54 39.10 -106.20 + 33 290 56 37.30 -88.90 + 34 286 53 40.20 -92.60 + 35 280 59 34.90 -98.10 + 36 272 44 48.31 -105.10 + 37 289 59 34.25 -89.87 + 38 272 53 40.13 -105.24 + 39 281 56 37.48 -96.93 + 40 295 58 35.96 -84.29 + 41 277 50 42.86 -100.41 + 42 284 52 41.02 -94.36 + 43 302 51 42.04 -77.76 + 44 300 54 39.17 -79.52 + 45 289 62 31.71 -89.41 + 46 299 48 44.92 -80.42 + 47 274 48 45.27 -103.54 + 48 273 48 44.79 -104.73 + 49 274 48 44.46 -103.85 + 50 273 50 43.35 -104.69 + 51 274 49 43.53 -103.65 + 52 282 47 45.50 -95.90 + 53 285 49 44.10 -93.50 + 54 260 58 35.34 -116.88 + 55 291 59 34.40 -87.60 + 56 255 45 47.50 -121.10 + 57 254 48 44.50 -122.70 + 58 262 49 44.00 -115.00 + 59 255 46 46.90 -121.30 + 60 256 49 44.10 -120.50 + 61 255 50 42.70 -121.40 + 62 266 61 32.42 -110.73 + 63 281 57 36.61 -97.49 + 64 255 47 45.68 -121.27 + 65 255 47 45.72 -121.56 + 66 256 47 45.68 -120.82 + 67 256 47 45.72 -120.21 + 68 255 55 38.06 -121.77 + 69 254 56 37.10 -122.28 + 70 254 56 37.82 -122.47 + 71 254 55 37.94 -122.50 + 72 255 56 37.07 -121.12 + 73 264 53 40.20 -113.30 + 74 306 53 40.42 -73.98 + 75 305 56 37.20 -74.80 + 76 305 57 36.05 -74.25 + 77 302 61 32.80 -77.20 + 78 306 55 38.60 -73.75 + 79 291 65 29.20 -87.25 + 80 293 46 46.31 -85.46 + 81 291 46 47.18 -87.22 + 82 290 50 42.97 -88.55 + 83 307 48 44.94 -72.51 + 84 297 56 37.27 -82.10 + 85 297 56 90.00 0.00 + 86 217 17 74.30 -156.60 + 87 235 16 75.00 -140.00 + 88 200 31 60.60 -173.30 + 89 212 32 59.90 -161.75 + 90 225 29 62.88 -149.83 + 91 226 31 60.79 -148.83 + 92 225 31 60.49 -149.79 + 93 225 31 60.95 -149.14 + 94 226 31 60.78 -148.72 + 95 263 65 29.22 -114.28 + 96 297 57 36.20 -81.65 + 97 291 50 42.59 -87.94 + 98 259 50 42.59 -117.87 + 99 254 46 47.08 -122.36 + 100 252 46 46.91 -124.11 + 101 288 45 47.66 -90.91 + 102 287 46 46.77 -91.25 + 103 213 37 55.31 -160.52 + 104 302 58 35.33 -77.60 + 105 307 48 44.53 -72.61 + 106 299 51 41.63 -80.21 + 107 298 55 38.69 -80.65 + 108 259 59 34.57 -117.67 + 109 259 59 34.63 -117.61 + 110 293 47 45.97 -86.17 + 111 292 46 46.42 -86.65 + 112 289 54 39.16 -89.67 + 113 276 49 44.05 -101.60 + 114 293 49 43.58 -86.24 + 115 294 50 43.43 -85.30 + 116 294 50 43.37 -84.44 + 117 273 59 34.38 -104.23 + 118 333 46 46.70 -48.00 + 119 326 46 47.20 -55.10 + 120 293 50 42.75 -86.10 + 121 292 51 42.41 -86.28 + 122 259 48 45.35 -117.23 + 123 283 52 41.59 -95.34 + 124 291 49 43.78 -87.85 + 125 275 63 30.90 -102.85 + 126 287 60 33.64 -91.75 + 127 286 57 36.22 -92.28 + 128 274 62 31.38 -103.51 + 129 298 68 26.42 -81.44 + 130 298 67 26.75 -80.94 + 131 279 63 31.18 -99.32 + 132 277 63 30.59 -100.65 + 133 255 54 39.08 -120.94 + 134 256 56 37.51 -120.04 + 135 256 56 37.58 -120.27 + 136 257 57 36.83 -119.33 + 137 255 58 35.85 -121.31 + 138 255 45 47.31 -121.85 + 139 255 55 38.49 -121.22 + 140 256 54 39.13 -120.80 + 141 254 52 40.72 -122.43 + 142 305 53 40.50 -74.45 + 143 310 51 42.99 -70.62 + 144 306 47 45.50 -73.57 + 145 307 53 41.10 -72.89 + 146 254 54 39.69 -121.91 + 147 255 54 39.17 -121.11 + 148 257 58 35.62 -119.69 + 149 255 58 35.66 -121.28 + 150 253 55 38.61 -123.21 + 151 253 55 38.51 -123.22 + 152 253 55 38.78 -122.99 + 153 256 56 37.11 -120.24 + 154 254 53 39.99 -122.06 + 155 253 54 39.00 -123.12 + 156 253 55 38.51 -122.96 + 157 271 60 33.50 -106.18 + 158 271 60 33.82 -106.65 + 159 265 53 40.58 -111.63 + 160 296 49 43.78 -82.99 + 161 233 34 58.00 -142.00 + 162 232 38 54.00 -143.00 + 163 238 36 56.00 -137.00 + 164 219 37 55.00 -155.00 + 165 236 39 53.00 -139.00 + 166 227 41 51.10 -147.40 + 167 212 40 52.00 -162.00 + 168 221 43 49.50 -153.70 + 169 204 43 49.20 -168.80 + 170 240 43 50.00 -135.00 + 171 247 55 38.50 -129.00 + 172 250 60 34.00 -126.00 + 173 253 64 29.50 -123.00 + 174 256 69 25.00 -120.00 + 175 262 69 25.00 -115.00 + 176 234 49 44.30 -140.80 + 177 231 45 47.70 -144.10 + 178 238 56 37.40 -137.00 + 179 237 46 47.00 -138.00 + 180 240 49 43.60 -135.50 + 181 242 54 39.70 -133.30 + 182 246 44 48.50 -129.50 + 183 248 48 44.60 -127.50 + 184 234 42 50.50 -141.38 + 185 249 53 40.50 -126.98 + 186 182 37 55.00 170.00 + 187 192 37 55.00 180.00 + 188 187 32 60.00 175.00 + 189 267 50 42.80 -109.81 + 190 254 54 39.15 -122.15 + 191 255 52 40.88 -121.66 + 192 256 55 37.99 -120.38 + 193 258 56 37.74 -118.59 + 194 257 57 36.20 -119.10 + 195 258 58 35.97 -118.54 + 196 258 59 34.83 -118.95 + 197 256 57 36.14 -120.35 + 198 258 57 36.65 -118.48 + 199 306 51 42.47 -73.29 + 200 297 54 39.21 -82.23 + 201 266 53 40.48 -111.43 + 202 263 61 33.02 -114.24 + 203 267 62 31.49 -110.30 + 204 269 62 32.02 -107.87 + 205 273 63 30.43 -104.33 + 206 278 66 28.39 -100.29 + 207 279 68 26.57 -98.82 + 208 282 65 28.71 -95.96 + 209 287 64 29.81 -91.66 + 210 298 70 24.70 -81.51 + 211 313 77 17.98 -67.08 + 212 255 47 46.19 -121.70 + 213 254 47 46.28 -122.28 + 214 254 48 45.35 -121.94 + 215 254 49 44.17 -122.06 + 216 279 48 45.03 -99.11 + 217 281 47 45.46 -96.99 + 218 283 55 38.28 -95.22 + 219 281 53 39.86 -96.63 + 220 271 49 44.38 -106.72 + 221 269 48 44.52 -108.08 + 222 288 48 45.10 -90.30 + 223 286 48 44.46 -92.29 + 224 270 56 37.29 -107.06 + 225 269 55 38.23 -108.56 + 226 269 53 40.05 -107.89 + 227 287 51 41.64 -91.54 + 228 272 54 39.05 -105.51 + 229 271 53 40.05 -106.36 + 230 291 55 38.76 -87.61 + 231 290 54 39.07 -88.53 + 232 288 52 40.94 -90.43 + 233 288 53 39.77 -90.24 + 234 290 54 39.48 -88.28 + 235 278 50 43.39 -99.84 + 236 275 50 43.02 -102.52 + 237 273 49 43.89 -104.32 + 238 275 48 44.56 -102.66 + 239 272 49 43.74 -105.74 + 240 289 47 46.15 -89.21 + 241 291 46 46.54 -87.39 + 242 293 46 46.68 -85.97 + 243 290 46 46.61 -88.91 + 244 292 66 28.00 -87.00 + 245 285 66 28.20 -93.70 + 246 286 66 28.50 -92.30 + 247 287 66 27.90 -91.00 + 248 290 66 28.00 -89.00 + 249 294 66 28.00 -85.00 + 250 300 63 31.00 -79.00 + 251 316 45 48.00 -65.00 + 252 266 54 39.30 -111.46 + 253 273 57 36.74 -104.65 + 254 302 56 36.99 -77.00 + 255 302 56 37.86 -76.89 + 256 303 55 38.54 -76.03 + 257 302 57 36.77 -77.79 + 258 312 49 43.78 -68.86 + 259 299 55 38.40 -80.00 + 260 259 58 35.10 -117.56 + 261 274 50 43.37 -103.39 + 262 274 49 44.41 -103.48 + 263 290 51 42.21 -88.32 + 264 291 53 40.46 -88.10 + 265 299 61 32.78 -79.92 + 266 299 61 32.66 -79.93 + 267 298 62 32.03 -80.89 + 268 259 45 47.97 -117.43 + 269 298 57 36.22 -81.10 + 270 297 52 42.47 -82.76 + 271 294 48 43.80 -83.72 + 272 296 49 44.02 -82.79 + 273 292 51 41.69 -87.15 + 274 291 52 41.61 -88.10 + 275 299 57 36.46 -80.55 + 276 264 56 37.20 -112.99 + 277 266 55 38.29 -111.26 + 278 265 55 38.74 -112.10 + 279 258 56 37.20 -118.80 + 280 274 45 47.61 -103.26 + 281 281 56 37.80 -97.01 + 282 284 59 34.60 -94.30 + 283 283 55 37.90 -95.20 + 284 276 55 38.50 -101.50 + 285 272 56 37.40 -105.20 + 286 272 57 36.00 -105.30 + 287 276 59 34.20 -101.70 + 288 279 60 33.60 -99.30 + 289 281 60 33.70 -97.40 + 290 286 56 37.10 -92.30 + 291 270 52 41.00 -107.00 + 292 263 47 46.25 -114.15 + 293 264 46 47.00 -112.50 + 294 263 44 49.00 -114.00 + 295 269 43 49.50 -108.00 + 296 274 44 49.00 -104.00 + 297 279 45 47.50 -99.00 + 298 280 47 46.20 -97.50 + 299 283 47 46.00 -95.00 + 300 295 52 40.80 -84.20 + 301 299 55 38.00 -80.00 + 302 296 59 34.50 -82.50 + 303 280 51 41.73 -98.01 + 304 283 52 41.58 -95.34 + 305 281 51 42.24 -96.98 + 306 279 56 37.70 -98.75 + 307 280 44 48.75 -98.39 + 308 281 44 48.75 -96.94 + 309 282 48 44.46 -96.25 + 310 283 50 43.17 -95.21 + 311 278 50 43.22 -99.40 + 312 279 50 43.26 -98.76 + 313 280 52 40.90 -97.62 + 314 278 52 40.79 -99.78 + 315 280 53 40.15 -97.58 + 316 279 54 39.73 -99.32 + 317 288 57 36.77 -90.32 + 318 291 56 37.36 -87.40 + 319 293 54 39.05 -85.61 + 320 296 56 37.75 -82.64 + 321 295 57 36.61 -83.74 + 322 294 57 36.86 -84.86 + 323 295 55 38.06 -83.98 + 324 276 52 41.12 -101.77 + 325 277 51 41.96 -100.57 + 326 267 49 43.55 -109.69 + 327 266 50 42.71 -110.94 + 328 267 51 41.82 -110.56 + 329 268 48 44.87 -108.79 + 330 269 48 44.91 -108.45 + 331 271 49 43.71 -106.63 + 332 289 49 43.52 -89.77 + 333 290 49 43.77 -88.49 + 334 288 50 42.89 -90.24 + 335 290 50 43.04 -88.24 + 336 289 49 44.04 -89.31 + 337 289 52 41.35 -89.15 + 338 292 51 41.70 -86.82 + 339 291 52 41.07 -87.85 + 340 289 51 41.89 -89.08 + 341 287 47 45.42 -91.77 + 342 284 48 45.10 -94.51 + 343 282 48 44.73 -96.27 + 344 275 53 40.10 -102.24 + 345 275 55 38.76 -102.79 + 346 292 48 45.29 -86.98 + 347 289 49 44.36 -89.84 + 348 305 53 39.99 -74.17 + 349 293 56 37.70 -85.87 + 350 280 56 37.67 -98.12 + 351 280 56 37.28 -98.04 + 352 282 55 38.30 -95.72 + 353 282 56 37.85 -96.29 + 354 280 55 38.75 -98.23 + 355 307 54 39.55 -73.90 + 356 308 54 39.70 -71.60 + 357 283 56 37.09 -95.57 + 358 280 55 38.35 -97.69 + 359 279 56 37.35 -99.35 + 360 279 58 35.30 -98.90 + 361 281 58 35.50 -97.00 + 362 283 59 34.98 -94.69 + 363 276 57 36.60 -101.60 + 364 301 51 42.50 -78.68 + 365 304 49 43.76 -75.68 + 366 287 61 32.35 -91.03 + 367 298 68 25.86 -81.38 + 368 297 65 28.84 -82.33 + 369 296 62 32.07 -82.90 + 370 291 62 31.71 -87.78 + 371 290 60 33.45 -88.82 + 372 287 59 34.89 -91.20 + 373 293 58 35.48 -86.09 + 374 291 58 35.62 -87.84 + 375 294 56 36.95 -85.26 + 376 275 60 33.62 -103.02 + 377 278 58 35.21 -100.25 + 378 277 54 39.13 -100.87 + 379 287 56 37.01 -91.36 + 380 284 55 38.37 -93.79 + 381 286 54 39.42 -92.44 + 382 300 59 34.61 -79.06 + 383 309 51 41.65 -70.52 + 384 298 60 33.46 -80.85 + 385 287 47 45.50 -91.00 + 386 285 47 45.89 -93.27 + 387 286 48 45.15 -92.54 + 388 282 48 45.23 -96.00 + 389 288 49 44.03 -90.08 + 390 254 52 41.32 -122.32 + 391 257 50 42.55 -119.66 + 392 256 50 43.33 -120.84 + 393 253 52 41.39 -123.49 + 394 255 52 41.43 -121.46 + 395 259 47 45.36 -117.25 + 396 258 49 44.40 -118.96 + 397 302 57 36.33 -77.64 + 398 299 59 34.89 -79.76 + 399 298 53 40.47 -81.42 + 400 300 52 40.82 -79.53 + 401 300 53 40.63 -79.11 + 402 300 54 39.58 -79.34 + 403 299 53 40.14 -80.29 + 404 304 51 42.46 -75.06 + 405 276 57 36.68 -101.50 + 406 292 61 33.17 -86.77 + 407 289 63 31.27 -89.26 + 408 298 66 28.29 -81.44 + 409 297 65 28.82 -81.81 + 410 283 64 30.36 -95.41 + 411 283 63 30.73 -95.47 + 412 276 48 45.02 -102.02 + 413 278 65 29.21 -99.74 + 414 280 58 35.87 -98.42 + 415 290 52 40.92 -88.62 + 416 307 52 41.56 -73.05 + 417 260 44 48.69 -116.32 + 418 258 44 48.65 -118.73 + 419 256 45 47.76 -120.65 + 420 256 44 48.49 -120.24 + 421 261 45 47.54 -116.14 + 422 253 52 40.73 -122.94 + 423 253 52 40.94 -123.63 + 424 253 53 40.34 -123.07 + 425 253 53 39.75 -123.21 + 426 285 57 36.54 -93.20 + 427 203 28 63.68 -170.50 + 428 223 23 68.13 -151.73 + 429 201 28 63.77 -171.73 + 430 207 31 60.37 -166.27 + 431 212 35 56.65 -161.37 + 432 171 38 54.05 159.43 + 433 307 48 44.89 -72.23 + 434 276 50 43.46 -101.50 + 435 274 49 43.99 -103.79 + 436 295 65 29.30 -84.04 + 437 282 66 27.90 -96.64 + 438 294 59 34.31 -84.42 + 439 295 59 34.27 -83.83 + 440 294 52 41.34 -84.43 + 441 293 52 41.28 -85.84 + 442 293 51 41.81 -85.44 + 443 292 52 41.57 -86.73 + 444 274 44 48.93 -103.30 + 445 278 44 48.88 -99.62 + 446 274 47 46.19 -103.43 + 447 279 47 46.02 -99.35 + 448 280 47 46.17 -98.07 + 449 295 47 46.01 -83.74 + 450 289 46 46.88 -89.32 + 451 292 46 45.58 -87.00 + 452 259 59 34.36 -117.63 + 453 257 59 34.94 -119.69 + 454 256 59 34.48 -120.23 + 455 256 59 34.61 -120.08 + 456 266 49 43.74 -111.10 + 457 295 59 34.85 -84.00 + 458 274 49 44.35 -103.77 + 459 273 49 44.41 -104.36 + 460 283 56 37.80 -94.77 + 461 286 56 37.64 -92.65 + 462 285 55 38.35 -93.34 + 463 255 54 39.49 -121.61 + 464 290 60 33.90 -88.33 + 465 274 59 34.64 -103.63 + 466 304 54 38.83 -75.43 + 467 279 61 32.54 -99.25 + 468 284 54 38.81 -94.26 + 469 280 57 36.34 -97.92 + 470 279 59 34.36 -98.98 + 471 293 52 40.72 -85.93 + 472 281 63 30.72 -97.38 + 473 279 53 40.32 -98.44 + 474 293 62 31.46 -85.46 + 475 293 61 32.54 -85.79 + 476 276 44 48.50 -101.40 + 477 296 57 36.17 -83.40 + 478 304 50 43.47 -75.46 + 479 296 61 32.68 -83.35 + 480 291 57 36.74 -87.29 + 481 263 63 31.40 -114.49 + 482 264 61 32.37 -112.87 + 483 268 61 32.82 -109.68 + 484 261 44 48.39 -115.55 + 485 273 44 48.76 -104.52 + 486 253 56 37.70 -123.00 + 487 253 55 38.32 -123.07 + 488 273 46 46.37 -104.28 + 489 266 48 44.42 -111.37 + 490 265 51 42.17 -112.28 + 491 261 54 39.50 -115.95 + 492 257 55 38.30 -119.16 + 493 306 48 44.65 -73.49 + 494 304 52 41.14 -75.38 + 495 304 53 39.98 -75.82 + 496 275 56 37.28 -102.61 + 497 310 47 45.64 -70.26 + 498 311 45 47.46 -69.22 + 499 313 47 45.56 -67.43 + 500 306 51 42.05 -73.20 + 501 268 51 42.11 -109.45 + 502 269 51 42.49 -107.83 + 503 268 51 42.48 -108.84 + 504 267 50 43.20 -110.40 + 505 282 53 40.61 -95.87 + 506 281 52 41.24 -96.59 + 507 292 52 41.45 -87.01 + 508 290 52 41.42 -88.41 + 509 279 53 39.76 -98.79 + 510 271 53 40.51 -106.87 + 511 270 54 39.43 -107.38 + 512 271 54 39.48 -106.15 + 513 270 53 40.50 -107.52 + 514 289 52 41.02 -89.39 + 515 290 55 38.72 -88.18 + 516 280 54 39.06 -98.17 + 517 282 56 37.13 -96.19 + 518 282 55 38.37 -96.54 + 519 302 50 42.64 -77.05 + 520 303 51 41.77 -76.45 + 521 271 52 40.73 -106.28 + 522 303 50 43.45 -76.51 + 523 284 50 43.08 -94.27 + 524 283 50 43.40 -94.75 + 525 283 53 40.35 -94.92 + 526 295 55 38.22 -83.59 + 527 285 55 38.71 -93.18 + 528 285 54 39.42 -93.13 + 529 269 49 43.71 -108.39 + 530 266 50 43.18 -111.04 + 531 274 47 45.59 -103.55 + 532 222 31 60.82 -152.72 + 533 214 22 69.00 -160.00 + 534 190 40 52.00 177.55 + 535 207 35 57.00 -166.00 + 536 221 29 62.22 -153.08 + 537 217 32 59.73 -157.26 + 538 227 30 61.89 -147.32 + 539 207 25 66.27 -166.05 + 540 259 60 34.10 -117.23 + 541 284 53 40.63 -93.90 + 542 266 60 33.40 -110.77 + 543 264 60 33.97 -112.74 + 544 303 55 38.80 -76.07 + 545 305 52 41.05 -74.63 + 546 231 29 62.72 -143.97 + 547 231 24 67.75 -144.11 + 548 231 26 65.59 -144.36 + 549 223 30 61.95 -151.00 + 550 220 35 57.27 -154.56 + 551 227 25 66.15 -148.03 + 552 232 24 67.03 -143.29 + 553 213 26 65.20 -161.15 + 554 223 32 59.75 -151.37 + 555 215 28 63.39 -158.83 + 556 242 35 56.97 -134.00 + 557 211 23 67.95 -162.31 + 558 224 31 60.59 -150.32 + 559 225 31 60.37 -149.41 + 560 232 30 61.32 -142.59 + 561 223 32 60.03 -151.66 + 562 215 23 68.07 -158.71 + 563 214 30 61.58 -159.54 + 564 229 29 63.03 -145.49 + 565 209 26 65.41 -164.66 + 566 221 28 63.44 -153.36 + 567 240 33 59.25 -135.52 + 568 243 37 55.58 -133.10 + 569 224 28 63.49 -150.88 + 570 232 29 62.97 -143.34 + 571 233 28 64.05 -141.93 + 572 220 25 66.85 -154.34 + 573 222 25 66.08 -152.17 + 574 218 30 61.64 -156.44 + 575 218 22 69.50 -156.50 + 576 226 22 69.00 -149.00 + 577 226 24 67.75 -149.00 + 578 218 26 65.34 -155.95 + 579 219 27 64.10 -155.56 + 580 223 27 64.31 -151.08 + 581 214 31 60.32 -160.20 + 582 210 30 62.10 -163.80 + 583 212 21 70.40 -161.90 + 584 217 20 71.32 -156.62 + 585 312 51 42.35 -67.70 + 586 308 54 39.30 -72.00 + 587 314 54 39.30 -65.70 + 588 310 56 37.30 -70.10 + 589 305 57 36.30 -74.60 + 590 306 58 35.60 -73.80 + 591 309 59 34.90 -70.80 + 592 303 60 33.80 -76.00 + 593 307 61 32.80 -72.30 + 594 245 45 48.10 -130.50 + 595 249 45 48.10 -126.60 + 596 246 48 45.30 -129.70 + 597 251 48 45.30 -125.60 + 598 246 51 41.75 -129.90 + 599 250 51 41.90 -125.80 + 600 251 54 39.20 -125.50 + 601 251 57 36.40 -125.40 + 602 251 60 33.30 -125.00 + 603 254 59 34.60 -122.30 + 604 255 63 30.90 -121.50 + 605 260 64 29.60 -117.00 + 606 304 56 37.54 -76.01 + 607 270 61 32.99 -106.97 + 608 267 62 32.15 -109.84 + 609 295 50 42.63 -83.98 + 610 295 50 42.99 -84.14 + 611 296 51 42.10 -83.16 + 612 295 51 41.87 -84.07 + 613 294 48 44.02 -83.54 + 614 295 50 43.46 -83.45 + 615 296 51 41.94 -83.43 + 616 274 53 40.61 -103.26 + 617 274 53 40.34 -103.80 + 618 285 53 40.08 -93.59 + 619 285 53 40.48 -93.01 + 620 284 53 40.25 -94.33 + 621 285 52 40.68 -92.90 + 622 286 51 41.71 -92.73 + 623 285 51 42.47 -93.27 + 624 290 55 38.66 -88.45 + 625 291 54 39.02 -87.65 + 626 289 54 39.53 -89.33 + 627 268 50 43.31 -109.19 + 628 269 51 41.67 -107.98 + 629 266 49 43.50 -110.96 + 630 280 54 39.47 -98.13 + 631 284 56 37.85 -94.31 + 632 290 51 41.93 -88.71 + 633 267 56 37.44 -110.56 + 634 271 53 40.45 -106.75 + 635 281 56 37.32 -97.39 + 636 271 56 37.45 -106.80 + 637 270 49 44.03 -107.45 + 638 266 51 42.08 -110.96 + 639 269 55 38.79 -108.06 + 640 271 53 40.35 -106.70 + 641 290 65 29.30 -88.84 + 642 376 62 32.13 -7.88 + 643 307 51 41.89 -72.71 + 644 12 32 60.20 11.10 + 645 20 32 59.67 17.93 + 646 20 33 59.35 17.95 + 647 27 31 60.32 24.97 + 648 383 32 60.13 -1.18 + 649 380 36 56.50 -4.58 + 650 324 131 -33.00 -57.00 + 651 383 41 51.68 -1.78 + 652 383 41 51.75 -1.58 + 653 383 41 51.29 -0.27 + 654 378 40 52.25 -6.33 + 655 360 28 63.97 -22.60 + 656 377 30 62.02 -6.76 + 657 14 36 55.77 12.53 + 658 5 40 52.03 4.35 + 659 5 42 50.90 4.47 + 660 8 46 46.82 6.95 + 661 3 44 48.73 2.40 + 662 376 50 43.37 -8.42 + 663 383 51 41.67 -1.02 + 664 379 56 37.17 -5.62 + 665 360 78 16.75 -22.95 + 666 16 24 67.27 14.37 + 667 194 20 70.97 -178.53 + 668 193 22 68.92 -179.48 + 669 203 25 66.17 -169.83 + 670 182 27 64.68 170.42 + 671 190 27 64.73 177.50 + 672 192 29 63.05 179.32 + 673 68 39 53.21 63.55 + 674 378 34 58.22 -6.32 + 675 2 40 52.63 1.32 + 676 72 42 50.22 66.83 + 677 79 43 49.80 73.15 + 678 379 42 50.08 -5.25 + 679 378 38 54.65 -6.22 + 680 307 59 34.90 -73.00 + 681 304 61 32.30 -75.20 + 682 301 61 32.50 -79.07 + 683 302 65 29.30 -77.40 + 684 299 62 31.40 -80.87 + 685 301 65 28.90 -78.50 + 686 301 61 32.80 -79.62 + 687 299 62 32.28 -80.41 + 688 289 68 25.90 -89.70 + 689 285 68 25.90 -93.60 + 690 293 68 25.90 -85.90 + 691 283 66 27.90 -95.00 + 692 282 67 27.00 -96.50 + 693 309 55 38.50 -70.70 + 694 311 50 42.60 -68.60 + 695 311 50 43.53 -70.14 + 696 310 53 40.50 -69.40 + 697 306 55 38.50 -74.70 + 698 313 52 41.10 -66.60 + 699 305 57 36.60 -74.80 + 700 308 53 40.70 -72.10 + 701 307 53 40.30 -73.20 + 702 314 49 44.30 -67.30 + 703 307 53 40.37 -73.70 + 704 304 56 37.76 -75.33 + 705 291 45 48.06 -87.78 + 706 293 48 45.33 -86.42 + 707 297 48 45.35 -82.84 + 708 292 45 47.56 -86.55 + 709 297 52 41.68 -82.40 + 710 290 45 47.32 -89.87 + 711 292 50 42.67 -87.02 + 712 297 49 44.28 -82.42 + 713 303 50 43.62 -77.41 + 714 297 52 42.47 -81.22 + 715 301 50 43.40 -79.45 + 716 301 50 42.74 -79.35 + 717 292 51 42.14 -87.66 + 718 226 36 56.30 -148.20 + 719 245 51 42.50 -130.50 + 720 218 40 51.90 -155.90 + 721 245 47 46.10 -131.00 + 722 238 52 40.90 -137.50 + 723 252 54 39.20 -124.00 + 724 251 50 42.75 -124.82 + 725 252 47 46.20 -124.20 + 726 252 53 40.40 -124.50 + 727 195 35 57.00 -177.70 + 728 257 61 32.40 -119.50 + 729 259 61 32.49 -118.03 + 730 106 76 18.77 98.96 + 731 110 78 16.47 102.78 + 732 107 79 15.77 100.14 + 733 112 80 15.25 104.87 + 734 108 81 13.67 100.61 + 735 108 88 7.19 100.61 + 736 211 71 23.40 -162.30 + 737 216 78 17.20 -157.80 + 738 213 75 19.30 -160.80 + 739 222 77 17.40 -152.50 + 740 10 37 55.52 8.55 + 741 6 40 52.31 4.76 + 742 8 40 52.28 6.89 + 743 223 32 59.77 -151.17 + 744 7 44 48.98 6.25 + 745 280 64 29.70 -98.01 + 746 292 57 36.25 -86.57 + 747 283 57 36.18 -95.56 + 748 258 58 35.24 -119.03 + 749 288 55 38.62 -90.18 + 750 273 55 38.46 -104.18 + 751 297 52 41.50 -81.60 + 752 264 50 43.11 -112.68 + 753 261 45 47.47 -115.80 + 754 3 52 41.28 2.07 + 755 380 53 40.42 -4.25 + 756 380 53 39.50 -0.47 + 757 277 57 36.50 -100.80 + 758 276 64 30.30 -101.70 + 759 275 66 27.70 -102.50 + 760 279 63 30.50 -99.10 + 761 279 66 28.40 -98.70 + 762 279 68 26.30 -98.80 + 763 281 70 24.40 -97.40 + 764 283 68 25.90 -95.30 + 765 284 70 24.50 -94.40 + 766 283 71 23.30 -95.60 + 767 284 76 18.30 -94.20 + 768 285 73 21.40 -93.10 + 769 287 71 23.30 -91.60 + 770 290 71 23.70 -88.70 + 771 294 71 23.00 -85.00 + 772 280 71 23.50 -98.00 + 773 287 47 46.02 -91.45 + 774 296 54 38.83 -82.80 + 775 301 54 38.88 -78.52 + 776 300 54 39.62 -78.76 + 777 302 54 39.61 -77.01 + 778 10 39 53.05 8.79 + 779 15 40 52.47 13.40 + 780 8 42 50.87 7.15 + 781 10 42 50.05 8.58 + 782 10 44 48.68 9.22 + 783 13 44 48.35 11.78 + 784 16 44 48.23 14.19 + 785 18 45 48.12 16.57 + 786 16 42 50.10 14.26 + 787 20 38 54.38 18.47 + 788 23 40 52.17 20.97 + 789 19 41 51.10 16.89 + 790 21 45 47.43 19.18 + 791 22 48 44.78 20.53 + 792 25 50 42.69 23.41 + 793 30 50 42.57 27.52 + 794 30 50 43.23 27.83 + 795 27 51 42.07 24.86 + 796 28 48 44.57 26.09 + 797 14 47 45.50 12.33 + 798 14 51 41.80 12.60 + 799 14 51 41.80 12.23 + 800 26 58 35.53 24.15 + 801 32 52 40.97 29.08 + 802 36 53 40.13 33.00 + 803 43 56 37.75 40.20 + 804 36 58 35.15 33.28 + 805 200 27 64.43 -173.23 + 806 33 32 59.58 30.18 + 807 41 36 55.75 37.57 + 808 89 37 55.03 82.90 + 809 141 50 43.12 131.90 + 810 83 50 43.23 76.93 + 811 48 51 41.68 44.95 + 812 80 50 43.07 74.47 + 813 74 52 41.27 69.27 + 814 39 62 31.98 35.98 + 815 38 62 31.87 35.22 + 816 50 69 24.88 46.77 + 817 50 70 24.72 46.72 + 818 52 65 29.22 47.98 + 819 47 57 36.32 43.15 + 820 48 60 33.22 44.23 + 821 51 63 30.57 47.78 + 822 53 66 28.00 49.00 + 823 54 67 27.00 50.00 + 824 55 58 35.68 51.32 + 825 66 63 31.05 61.47 + 826 76 59 34.42 70.47 + 827 71 63 31.31 65.85 + 828 56 69 25.25 51.57 + 829 60 69 25.25 55.33 + 830 59 70 24.42 54.65 + 831 311 14 76.53 -68.75 + 832 83 65 28.58 77.20 + 833 89 77 17.72 83.30 + 834 115 50 43.20 107.17 + 835 92 66 27.70 85.37 + 836 122 72 22.32 114.17 + 837 130 69 25.03 121.52 + 838 124 85 10.72 115.83 + 839 136 56 37.55 126.80 + 840 138 58 35.18 128.93 + 841 151 52 40.70 141.37 + 842 147 58 35.25 136.93 + 843 150 58 35.55 139.78 + 844 150 58 35.76 140.38 + 845 145 59 34.68 135.53 + 846 107 90 5.30 100.27 + 847 109 93 2.75 101.72 + 848 111 95 1.38 103.72 + 849 112 72 22.82 104.97 + 850 113 74 21.02 105.80 + 851 114 84 10.82 106.67 + 852 136 41 51.72 126.65 + 853 125 53 39.80 116.47 + 854 129 57 36.07 120.33 + 855 111 63 30.67 104.02 + 856 117 59 34.30 108.93 + 857 122 59 34.52 113.83 + 858 130 63 31.17 121.43 + 859 368 66 27.93 -15.38 + 860 376 60 33.57 -7.67 + 861 376 62 31.62 -8.03 + 862 6 72 22.82 5.47 + 863 3 82 13.48 2.17 + 864 381 78 16.72 -3.00 + 865 366 80 14.73 -17.50 + 866 367 82 13.35 -16.80 + 867 78 104 -7.30 72.42 + 868 25 70 24.22 23.30 + 869 30 62 31.33 27.22 + 870 40 97 -1.28 36.83 + 871 40 100 -3.42 37.07 + 872 41 101 -4.92 38.23 + 873 17 101 -4.38 15.45 + 874 4 89 6.58 3.33 + 875 4 89 5.60 -0.17 + 876 376 88 7.38 -7.53 + 877 380 90 5.25 -3.93 + 878 373 89 6.23 -10.37 + 879 15 105 -8.85 13.23 + 880 34 122 -24.37 31.05 + 881 20 132 -33.97 18.60 + 882 217 20 71.30 -156.78 + 883 231 21 70.13 -143.63 + 884 207 22 68.88 -166.13 + 885 211 24 66.87 -162.63 + 886 222 22 69.37 -152.13 + 887 223 24 66.92 -151.52 + 888 222 26 65.17 -152.10 + 889 230 25 66.57 -145.27 + 890 208 27 64.50 -165.43 + 891 213 28 63.88 -160.80 + 892 207 30 61.78 -166.03 + 893 212 31 60.78 -161.80 + 894 217 27 64.73 -156.93 + 895 219 29 62.97 -155.62 + 896 218 29 62.90 -155.98 + 897 219 31 61.10 -155.58 + 898 224 29 62.30 -150.10 + 899 223 30 61.97 -151.18 + 900 223 31 60.57 -151.25 + 901 227 27 64.82 -147.87 + 902 228 27 64.67 -147.10 + 903 229 28 63.97 -145.70 + 904 229 28 64.00 -145.73 + 905 229 30 62.15 -145.45 + 906 225 30 61.25 -149.80 + 907 224 31 61.17 -150.02 + 908 225 30 61.60 -149.08 + 909 228 32 61.13 -146.35 + 910 225 32 60.12 -149.45 + 911 234 27 64.78 -141.15 + 912 233 29 62.97 -141.93 + 913 229 31 60.50 -145.50 + 914 212 33 58.65 -162.07 + 915 203 35 57.15 -170.22 + 916 211 37 55.20 -162.73 + 917 215 33 59.05 -158.52 + 918 217 33 58.68 -156.65 + 919 219 32 59.75 -154.92 + 920 223 32 59.63 -151.50 + 921 228 32 59.43 -146.33 + 922 222 34 57.75 -152.50 + 923 236 32 59.52 -139.67 + 924 240 32 59.47 -135.30 + 925 240 34 58.42 -135.73 + 926 240 35 57.07 -135.35 + 927 241 34 58.37 -134.58 + 928 243 35 56.82 -132.97 + 929 243 36 56.48 -132.37 + 930 244 37 55.35 -131.70 + 931 244 37 55.03 -131.57 + 932 186 40 52.72 174.12 + 933 196 41 51.88 -176.65 + 934 204 39 52.95 -168.85 + 935 207 38 53.90 -166.55 + 936 245 40 51.93 -131.02 + 937 249 26 65.28 -126.75 + 938 251 19 72.00 -125.28 + 939 259 36 56.23 -117.43 + 940 257 14 76.23 -119.33 + 941 277 35 56.87 -101.08 + 942 280 36 55.75 -97.87 + 943 298 22 68.78 -81.25 + 944 318 8 82.50 -62.33 + 945 254 44 49.03 -122.37 + 946 249 42 50.68 -127.37 + 947 263 39 53.55 -114.10 + 948 263 39 53.30 -113.58 + 949 269 38 54.13 -108.52 + 950 266 42 50.27 -111.18 + 951 274 39 53.33 -104.00 + 952 308 46 46.90 -71.50 + 953 321 45 47.57 -59.17 + 954 257 43 49.95 -119.40 + 955 246 34 58.42 -130.00 + 956 299 50 43.17 -79.93 + 957 299 50 43.47 -80.38 + 958 317 48 44.88 -63.50 + 959 315 48 44.98 -64.92 + 960 315 49 43.72 -65.25 + 961 266 26 65.77 -111.25 + 962 296 51 42.27 -82.97 + 963 320 49 43.93 -60.02 + 964 317 48 44.63 -63.50 + 965 314 49 43.87 -66.10 + 966 314 48 45.32 -65.88 + 967 298 50 43.03 -81.15 + 968 300 49 43.67 -79.63 + 969 302 47 45.95 -77.32 + 970 306 47 45.47 -73.75 + 971 306 47 45.68 -74.03 + 972 304 48 45.32 -75.67 + 973 301 49 44.23 -78.37 + 974 300 48 44.97 -79.30 + 975 298 48 44.75 -81.10 + 976 314 47 45.83 -66.43 + 977 316 47 46.12 -64.68 + 978 317 47 46.28 -63.13 + 979 320 47 46.17 -60.05 + 980 308 46 46.80 -71.40 + 981 303 46 46.38 -75.97 + 982 302 45 48.05 -77.78 + 983 300 46 46.37 -79.42 + 984 294 45 47.97 -84.78 + 985 298 44 48.57 -81.37 + 986 291 40 52.23 -87.88 + 987 289 44 48.37 -89.32 + 988 253 44 48.65 -123.43 + 989 328 45 47.62 -52.73 + 990 326 44 48.95 -54.57 + 991 323 43 49.22 -57.40 + 992 314 42 50.22 -66.27 + 993 322 44 48.53 -58.55 + 994 320 39 53.32 -60.42 + 995 305 43 49.77 -74.53 + 996 306 39 53.75 -73.67 + 997 292 43 49.78 -86.93 + 998 298 41 51.27 -80.65 + 999 299 41 51.28 -80.60 + 1000 288 41 51.45 -90.20 + 1001 289 38 53.83 -89.87 + 1002 284 43 49.78 -94.37 + 1003 281 43 49.90 -97.23 + 1004 278 43 49.78 -99.65 + 1005 276 38 54.68 -101.68 + 1006 273 42 50.43 -104.67 + 1007 271 40 52.17 -106.68 + 1008 277 38 53.97 -101.10 + 1009 272 39 53.22 -105.68 + 1010 266 43 50.02 -110.72 + 1011 264 43 49.63 -112.80 + 1012 263 41 51.12 -114.02 + 1013 261 43 49.62 -115.78 + 1014 259 43 49.30 -117.63 + 1015 253 43 49.18 -123.17 + 1016 251 43 49.72 -124.90 + 1017 254 38 53.88 -122.68 + 1018 312 34 58.10 -68.42 + 1019 301 33 58.45 -78.12 + 1020 311 28 63.75 -68.53 + 1021 284 33 58.75 -94.07 + 1022 296 27 64.20 -83.37 + 1023 293 10 79.98 -85.93 + 1024 270 35 57.35 -107.13 + 1025 283 16 74.72 -94.95 + 1026 272 22 69.10 -105.12 + 1027 282 27 64.30 -96.00 + 1028 265 37 54.77 -112.02 + 1029 265 32 60.02 -111.95 + 1030 262 29 62.50 -114.40 + 1031 254 33 58.83 -122.58 + 1032 255 30 61.80 -121.20 + 1033 247 32 60.12 -128.82 + 1034 242 23 68.32 -133.53 + 1035 240 31 60.72 -135.07 + 1036 236 28 64.05 -139.13 + 1037 235 24 67.57 -139.82 + 1038 297 70 24.55 -81.75 + 1039 298 70 24.73 -81.05 + 1040 299 68 25.82 -80.28 + 1041 299 68 25.90 -80.28 + 1042 299 68 26.07 -80.15 + 1043 299 69 25.65 -80.43 + 1044 299 67 26.68 -80.12 + 1045 299 68 26.20 -80.17 + 1046 298 66 28.10 -80.65 + 1047 299 66 27.65 -80.42 + 1048 298 66 28.43 -81.32 + 1049 298 65 29.18 -81.05 + 1050 297 63 30.50 -81.69 + 1051 297 64 30.22 -81.88 + 1052 298 62 32.13 -81.19 + 1053 298 62 32.22 -80.70 + 1054 299 61 32.90 -80.03 + 1055 297 66 27.70 -82.38 + 1056 299 67 27.50 -80.37 + 1057 297 68 26.58 -81.87 + 1058 297 68 26.53 -81.75 + 1059 296 66 27.97 -82.53 + 1060 296 67 27.40 -82.55 + 1061 296 66 27.92 -82.68 + 1062 297 66 27.99 -82.02 + 1063 296 64 29.62 -83.10 + 1064 297 63 31.25 -82.40 + 1065 298 63 31.25 -81.47 + 1066 298 63 31.15 -81.37 + 1067 295 64 30.38 -84.37 + 1068 297 64 29.68 -82.27 + 1069 294 60 33.36 -84.57 + 1070 295 62 31.53 -84.18 + 1071 296 63 30.78 -83.28 + 1072 295 61 32.70 -83.65 + 1073 297 60 33.37 -81.97 + 1074 294 60 33.65 -84.42 + 1075 294 60 33.78 -84.52 + 1076 295 60 33.88 -84.30 + 1077 294 64 29.73 -84.98 + 1078 293 63 30.56 -85.92 + 1079 292 63 30.47 -87.18 + 1080 290 63 30.68 -88.25 + 1081 291 63 30.63 -88.07 + 1082 293 64 30.22 -85.68 + 1083 294 61 32.33 -84.83 + 1084 294 61 32.52 -84.93 + 1085 292 61 32.30 -86.40 + 1086 293 63 31.32 -85.45 + 1087 292 60 33.57 -86.75 + 1088 291 60 33.22 -87.62 + 1089 293 60 33.58 -85.85 + 1090 291 61 32.90 -87.25 + 1091 285 64 29.78 -93.30 + 1092 292 61 33.17 -86.77 + 1093 288 65 29.10 -90.20 + 1094 288 64 29.98 -90.25 + 1095 286 64 30.03 -91.88 + 1096 288 64 30.05 -90.03 + 1097 287 63 30.53 -91.15 + 1098 289 65 29.33 -89.40 + 1099 289 64 30.33 -89.82 + 1100 290 61 32.33 -88.75 + 1101 289 62 31.47 -89.33 + 1102 288 61 32.32 -90.08 + 1103 287 60 33.48 -90.98 + 1104 288 63 31.18 -90.47 + 1105 288 60 33.50 -90.08 + 1106 285 63 31.05 -93.20 + 1107 285 64 30.12 -93.22 + 1108 286 64 30.20 -91.98 + 1109 284 64 29.95 -94.02 + 1110 283 65 29.30 -94.80 + 1111 283 64 29.97 -95.35 + 1112 283 64 29.65 -95.28 + 1113 282 63 30.58 -96.37 + 1114 283 63 31.23 -94.75 + 1115 283 61 32.34 -95.40 + 1116 284 61 32.34 -94.65 + 1117 284 61 32.47 -93.82 + 1118 286 61 32.52 -92.03 + 1119 286 62 31.40 -92.30 + 1120 281 61 32.83 -97.30 + 1121 281 68 25.90 -97.43 + 1122 280 68 26.23 -97.65 + 1123 280 68 26.18 -98.23 + 1124 280 66 27.77 -97.50 + 1125 280 66 27.73 -98.03 + 1126 278 67 27.55 -99.47 + 1127 283 65 29.12 -95.47 + 1128 279 64 29.53 -98.47 + 1129 280 64 30.30 -97.70 + 1130 281 65 28.85 -96.92 + 1131 281 62 31.62 -97.22 + 1132 280 63 31.07 -97.83 + 1133 281 61 32.84 -96.85 + 1134 283 60 33.63 -95.45 + 1135 281 61 32.90 -97.03 + 1136 258 58 35.07 -118.15 + 1137 281 61 32.82 -97.37 + 1138 280 62 32.22 -98.18 + 1139 277 65 29.37 -100.92 + 1140 273 62 31.83 -104.80 + 1141 277 62 31.37 -100.50 + 1142 275 57 36.02 -102.55 + 1143 274 64 30.37 -104.02 + 1144 276 62 31.95 -102.18 + 1145 274 62 31.78 -103.20 + 1146 278 61 32.41 -99.68 + 1147 276 60 33.65 -101.82 + 1148 273 60 33.30 -104.53 + 1149 273 61 32.33 -104.27 + 1150 274 61 32.68 -103.22 + 1151 271 62 32.24 -106.22 + 1152 270 61 32.28 -106.92 + 1153 271 62 31.80 -106.40 + 1154 270 60 33.23 -107.27 + 1155 270 61 32.27 -107.72 + 1156 267 62 31.57 -110.33 + 1157 268 62 31.47 -109.60 + 1158 266 62 32.12 -110.93 + 1159 265 60 33.43 -112.02 + 1160 262 61 32.65 -114.60 + 1161 259 60 34.05 -117.60 + 1162 260 60 33.83 -116.50 + 1163 258 59 34.20 -118.35 + 1164 258 59 34.22 -118.48 + 1165 256 58 35.23 -120.63 + 1166 260 61 32.73 -117.17 + 1167 260 61 32.57 -116.98 + 1168 257 60 33.25 -119.45 + 1169 258 60 33.40 -118.42 + 1170 259 61 33.13 -117.28 + 1171 260 61 32.85 -117.12 + 1172 258 60 33.93 -118.40 + 1173 258 60 33.82 -118.15 + 1174 259 60 33.68 -117.87 + 1175 301 59 34.27 -77.90 + 1176 300 58 35.17 -79.02 + 1177 300 59 34.98 -78.87 + 1178 304 58 35.27 -75.55 + 1179 303 59 34.78 -76.87 + 1180 300 58 35.87 -78.78 + 1181 302 58 35.64 -77.39 + 1182 301 58 35.33 -77.97 + 1183 301 58 35.84 -77.90 + 1184 302 59 34.82 -77.61 + 1185 308 57 36.82 -72.10 + 1186 303 57 36.90 -76.19 + 1187 303 56 37.13 -76.50 + 1188 302 59 34.90 -76.88 + 1189 302 58 35.07 -77.05 + 1190 298 60 33.95 -81.12 + 1191 299 59 34.18 -79.72 + 1192 296 60 33.95 -83.32 + 1193 297 59 34.84 -82.35 + 1194 297 59 34.90 -82.22 + 1195 296 59 34.50 -82.72 + 1196 298 58 35.22 -80.93 + 1197 298 58 35.73 -81.37 + 1198 296 58 35.43 -82.55 + 1199 299 57 36.08 -79.94 + 1200 299 56 37.21 -80.41 + 1201 297 57 36.48 -82.40 + 1202 299 57 36.13 -80.22 + 1203 294 59 34.35 -85.16 + 1204 292 59 34.65 -86.77 + 1205 291 59 34.75 -87.62 + 1206 294 59 35.03 -85.20 + 1207 295 58 35.82 -83.98 + 1208 294 58 35.95 -85.08 + 1209 292 57 36.13 -86.68 + 1210 290 59 34.27 -88.77 + 1211 288 59 35.05 -90.00 + 1212 290 58 35.59 -88.92 + 1213 286 59 34.83 -92.25 + 1214 286 59 34.73 -92.23 + 1215 288 58 35.83 -90.65 + 1216 285 59 34.48 -93.10 + 1217 286 59 34.18 -91.93 + 1218 284 60 33.45 -93.98 + 1219 286 60 33.22 -92.80 + 1220 284 58 35.33 -94.37 + 1221 284 57 36.00 -94.17 + 1222 285 57 36.27 -93.15 + 1223 286 57 36.20 -92.47 + 1224 287 58 35.73 -91.65 + 1225 286 57 36.88 -91.90 + 1226 289 56 37.23 -89.57 + 1227 284 57 36.91 -94.02 + 1228 284 56 37.15 -94.50 + 1229 279 60 33.98 -98.50 + 1230 279 59 34.98 -99.05 + 1231 279 58 35.33 -99.20 + 1232 278 57 36.30 -99.77 + 1233 280 58 35.40 -97.60 + 1234 281 57 36.73 -97.10 + 1235 280 59 34.60 -98.40 + 1236 281 59 34.30 -97.02 + 1237 282 57 36.20 -95.90 + 1238 282 57 36.76 -96.01 + 1239 282 59 34.88 -95.78 + 1240 281 58 35.23 -97.47 + 1241 274 57 36.45 -103.15 + 1242 278 59 34.43 -100.28 + 1243 268 58 35.52 -108.78 + 1244 276 58 35.23 -101.70 + 1245 271 62 31.87 -106.70 + 1246 271 59 35.05 -106.62 + 1247 271 58 35.62 -106.08 + 1248 269 57 36.75 -108.23 + 1249 274 58 35.18 -103.60 + 1250 272 58 35.65 -105.15 + 1251 263 58 35.27 -113.95 + 1252 266 57 36.93 -111.45 + 1253 265 59 34.53 -112.47 + 1254 265 59 34.65 -112.42 + 1255 266 59 35.02 -110.73 + 1256 267 59 34.27 -110.00 + 1257 268 59 34.51 -109.38 + 1258 265 58 35.13 -111.67 + 1259 265 58 35.23 -111.82 + 1260 265 58 35.95 -112.15 + 1261 262 59 34.77 -114.62 + 1262 259 59 34.92 -117.90 + 1263 260 59 34.84 -116.78 + 1264 258 59 34.73 -118.22 + 1265 259 59 34.63 -118.08 + 1266 258 58 35.43 -119.05 + 1267 262 57 36.08 -115.17 + 1268 261 57 36.62 -116.02 + 1269 257 57 36.77 -119.72 + 1270 257 60 34.12 -119.12 + 1271 257 59 34.43 -119.83 + 1272 257 59 34.21 -119.20 + 1273 256 59 34.75 -120.57 + 1274 256 59 34.90 -120.45 + 1275 256 58 35.66 -120.63 + 1276 302 56 37.50 -77.33 + 1277 301 55 38.13 -78.44 + 1278 301 56 37.35 -78.43 + 1279 304 55 37.93 -75.48 + 1280 302 54 38.95 -77.44 + 1281 302 55 38.27 -77.45 + 1282 303 55 38.28 -76.40 + 1283 304 55 38.33 -75.51 + 1284 302 54 38.84 -77.03 + 1285 303 54 39.18 -76.67 + 1286 302 54 39.70 -77.73 + 1287 303 54 39.33 -76.42 + 1288 305 54 39.45 -74.57 + 1289 304 54 39.37 -75.07 + 1290 304 53 39.88 -75.25 + 1291 304 53 40.08 -75.01 + 1292 304 54 39.68 -75.60 + 1293 305 53 40.28 -74.82 + 1294 305 53 40.02 -74.60 + 1295 305 52 40.80 -74.42 + 1296 300 56 37.33 -79.19 + 1297 300 57 36.57 -79.33 + 1298 299 56 37.32 -79.97 + 1299 299 55 37.95 -79.83 + 1300 298 56 37.78 -81.12 + 1301 298 56 37.30 -81.19 + 1302 299 55 37.87 -80.40 + 1303 297 55 38.37 -81.60 + 1304 299 54 38.88 -79.85 + 1305 299 54 39.30 -80.23 + 1306 299 54 39.65 -79.92 + 1307 301 54 39.40 -77.98 + 1308 294 54 39.05 -84.67 + 1309 294 55 38.03 -84.60 + 1310 293 55 38.18 -85.73 + 1311 296 56 37.59 -83.32 + 1312 292 56 37.75 -87.16 + 1313 293 55 37.91 -85.97 + 1314 295 56 37.08 -84.08 + 1315 296 55 38.37 -82.55 + 1316 295 54 39.42 -83.83 + 1317 292 55 38.25 -86.95 + 1318 298 54 39.34 -81.43 + 1319 298 53 40.18 -80.65 + 1320 296 53 40.00 -82.88 + 1321 296 53 39.82 -82.93 + 1322 297 53 39.95 -81.90 + 1323 295 53 39.90 -84.20 + 1324 294 54 39.09 -84.42 + 1325 291 55 38.05 -87.53 + 1326 290 55 38.65 -88.97 + 1327 289 56 37.78 -89.25 + 1328 288 55 38.75 -90.37 + 1329 288 55 38.66 -90.65 + 1330 290 56 37.07 -88.77 + 1331 294 56 37.05 -84.61 + 1332 291 54 39.45 -87.32 + 1333 292 54 39.15 -86.62 + 1334 292 54 39.73 -86.27 + 1335 292 53 40.41 -86.93 + 1336 289 53 39.84 -89.67 + 1337 287 53 39.95 -91.20 + 1338 290 53 40.48 -88.92 + 1339 291 53 40.12 -87.60 + 1340 285 56 37.23 -93.38 + 1341 286 54 38.82 -92.22 + 1342 288 56 37.77 -90.43 + 1343 287 55 38.13 -91.77 + 1344 286 55 38.10 -92.55 + 1345 283 54 39.32 -94.72 + 1346 284 54 39.12 -94.60 + 1347 283 54 38.83 -94.89 + 1348 283 53 39.77 -94.92 + 1349 281 56 37.65 -97.43 + 1350 280 55 38.07 -97.87 + 1351 283 56 37.66 -95.48 + 1352 281 55 38.06 -97.28 + 1353 278 56 37.77 -99.97 + 1354 277 55 37.93 -100.72 + 1355 277 56 37.04 -100.97 + 1356 279 55 38.34 -98.86 + 1357 279 54 38.85 -99.27 + 1358 279 56 37.27 -98.55 + 1359 281 54 39.13 -96.67 + 1360 282 55 38.33 -96.19 + 1361 283 54 39.07 -95.62 + 1362 282 54 38.95 -95.67 + 1363 280 54 39.55 -97.65 + 1364 279 54 38.87 -98.82 + 1365 280 55 38.80 -97.65 + 1366 276 56 37.01 -101.88 + 1367 272 56 37.45 -105.87 + 1368 270 56 37.15 -107.75 + 1369 269 55 37.95 -107.90 + 1370 274 55 38.05 -103.52 + 1371 275 55 38.07 -102.68 + 1372 273 55 38.28 -104.52 + 1373 276 54 39.37 -101.70 + 1374 278 54 39.38 -99.83 + 1375 273 54 38.82 -104.72 + 1376 273 54 39.57 -104.85 + 1377 270 54 39.65 -106.92 + 1378 271 54 39.22 -106.87 + 1379 270 55 38.53 -106.93 + 1380 273 55 38.70 -104.77 + 1381 273 53 39.75 -104.87 + 1382 274 53 40.17 -103.22 + 1383 272 53 39.91 -105.12 + 1384 266 54 39.62 -110.75 + 1385 268 56 37.62 -109.47 + 1386 266 55 38.37 -110.72 + 1387 263 56 37.04 -113.50 + 1388 264 56 37.70 -113.10 + 1389 265 56 37.70 -112.15 + 1390 269 54 39.12 -108.53 + 1391 269 55 38.50 -107.90 + 1392 269 56 37.30 -108.67 + 1393 273 53 40.43 -104.63 + 1394 272 53 40.45 -105.01 + 1395 267 54 39.00 -110.17 + 1396 267 55 38.76 -109.75 + 1397 264 54 39.33 -112.58 + 1398 265 51 41.78 -111.85 + 1399 258 56 37.37 -118.37 + 1400 256 56 37.28 -120.52 + 1401 255 55 38.52 -121.50 + 1402 255 55 38.55 -121.30 + 1403 255 55 38.70 -121.58 + 1404 260 55 38.05 -117.08 + 1405 258 55 38.55 -118.63 + 1406 262 54 39.28 -114.85 + 1407 262 56 37.62 -114.52 + 1408 257 54 39.50 -119.78 + 1409 257 54 39.57 -119.79 + 1410 255 57 36.58 -121.85 + 1411 255 57 36.66 -121.60 + 1412 255 55 37.90 -121.25 + 1413 255 56 37.70 -121.82 + 1414 254 56 37.73 -122.22 + 1415 254 56 37.62 -122.38 + 1416 254 56 37.37 -121.93 + 1417 253 55 38.52 -122.82 + 1418 307 52 40.87 -72.86 + 1419 305 52 40.70 -74.17 + 1420 305 52 40.84 -74.07 + 1421 306 52 40.77 -73.90 + 1422 307 52 40.80 -73.10 + 1423 306 51 41.63 -73.87 + 1424 306 52 41.07 -73.69 + 1425 305 52 41.50 -74.10 + 1426 307 52 41.17 -73.12 + 1427 307 52 41.27 -72.87 + 1428 308 52 41.33 -72.05 + 1429 308 52 41.17 -71.58 + 1430 309 51 41.65 -70.52 + 1431 310 52 41.25 -70.07 + 1432 309 51 41.92 -70.73 + 1433 309 51 41.68 -70.97 + 1434 310 51 41.67 -70.28 + 1435 308 51 41.73 -71.43 + 1436 308 52 41.60 -71.42 + 1437 307 51 41.93 -72.68 + 1438 308 51 41.73 -72.18 + 1439 307 50 42.57 -72.27 + 1440 307 51 41.73 -72.65 + 1441 309 50 42.58 -70.92 + 1442 309 51 42.37 -71.03 + 1443 308 51 42.27 -71.87 + 1444 303 53 40.38 -75.97 + 1445 303 53 40.20 -76.76 + 1446 303 53 40.12 -76.29 + 1447 300 52 41.18 -78.90 + 1448 301 53 40.30 -78.32 + 1449 300 53 40.32 -78.83 + 1450 301 52 40.84 -77.85 + 1451 304 52 41.33 -75.73 + 1452 302 52 41.25 -76.92 + 1453 305 51 41.70 -74.80 + 1454 303 51 42.22 -75.98 + 1455 303 51 42.48 -76.44 + 1456 302 51 42.17 -76.90 + 1457 307 49 43.53 -72.95 + 1458 304 53 40.65 -75.43 + 1459 306 50 42.75 -73.80 + 1460 306 50 43.33 -73.62 + 1461 304 48 44.68 -75.47 + 1462 303 50 43.12 -76.12 + 1463 304 50 43.15 -75.37 + 1464 299 53 40.50 -80.22 + 1465 299 52 40.77 -80.40 + 1466 299 53 40.34 -79.93 + 1467 300 53 40.28 -79.40 + 1468 298 52 40.91 -81.43 + 1469 300 51 42.15 -79.26 + 1470 297 52 41.42 -81.87 + 1471 296 52 40.82 -82.52 + 1472 298 52 41.27 -80.67 + 1473 299 51 42.08 -80.18 + 1474 301 51 41.80 -78.62 + 1475 299 52 41.38 -79.87 + 1476 301 50 42.93 -78.73 + 1477 300 50 43.10 -78.94 + 1478 302 50 43.12 -77.67 + 1479 291 51 41.98 -87.90 + 1480 290 51 41.92 -88.25 + 1481 290 53 40.03 -88.28 + 1482 290 53 39.83 -88.87 + 1483 289 53 40.66 -89.68 + 1484 289 51 41.74 -89.68 + 1485 294 52 41.00 -85.20 + 1486 293 53 40.25 -85.40 + 1487 291 51 41.62 -87.42 + 1488 291 51 41.78 -87.75 + 1489 291 51 41.87 -87.60 + 1490 291 51 42.42 -87.87 + 1491 292 51 41.70 -86.32 + 1492 295 52 41.60 -83.80 + 1493 295 52 41.02 -83.67 + 1494 296 51 42.23 -83.33 + 1495 296 51 42.42 -83.02 + 1496 296 50 42.92 -82.53 + 1497 291 45 47.45 -87.90 + 1498 294 50 42.77 -84.60 + 1499 294 51 42.27 -84.47 + 1500 294 51 42.30 -85.25 + 1501 289 51 42.20 -89.10 + 1502 288 52 41.45 -90.52 + 1503 287 51 41.88 -91.70 + 1504 287 52 40.78 -91.13 + 1505 285 52 41.53 -93.65 + 1506 286 52 41.10 -92.45 + 1507 283 52 40.75 -95.41 + 1508 288 51 42.40 -90.70 + 1509 287 50 43.28 -91.74 + 1510 286 50 42.55 -92.40 + 1511 285 50 43.15 -93.33 + 1512 284 50 42.55 -94.20 + 1513 283 50 42.60 -95.23 + 1514 282 52 41.30 -95.90 + 1515 281 52 40.84 -96.75 + 1516 281 53 40.30 -96.75 + 1517 280 52 40.97 -98.32 + 1518 279 51 41.62 -98.95 + 1519 279 52 40.73 -99.00 + 1520 282 51 41.76 -96.18 + 1521 283 53 40.08 -95.60 + 1522 278 52 41.44 -99.64 + 1523 281 51 41.98 -97.43 + 1524 281 52 41.45 -97.34 + 1525 279 51 42.47 -98.69 + 1526 282 51 42.40 -96.38 + 1527 282 52 41.32 -96.37 + 1528 275 52 41.10 -102.98 + 1529 277 52 41.13 -100.68 + 1530 276 53 40.51 -101.62 + 1531 279 53 40.45 -99.33 + 1532 275 51 42.05 -102.80 + 1533 275 50 42.83 -103.10 + 1534 273 52 41.15 -104.82 + 1535 272 52 41.32 -105.67 + 1536 273 53 39.87 -104.67 + 1537 274 51 41.87 -103.60 + 1538 271 50 42.92 -106.47 + 1539 268 53 40.43 -109.52 + 1540 270 53 40.48 -107.22 + 1541 270 54 39.53 -107.73 + 1542 265 52 40.78 -111.97 + 1543 265 53 40.22 -111.72 + 1544 268 52 41.60 -109.07 + 1545 270 51 41.80 -107.20 + 1546 265 52 41.20 -112.02 + 1547 269 50 42.82 -108.73 + 1548 269 50 43.07 -108.47 + 1549 266 52 41.28 -111.03 + 1550 266 49 43.60 -110.73 + 1551 264 50 42.92 -112.60 + 1552 265 49 43.52 -112.07 + 1553 261 48 44.88 -116.10 + 1554 258 53 40.07 -118.57 + 1555 263 52 40.73 -114.03 + 1556 261 52 40.87 -115.73 + 1557 261 52 40.83 -115.78 + 1558 261 51 41.67 -115.78 + 1559 259 52 40.90 -117.80 + 1560 256 53 40.38 -120.57 + 1561 256 54 39.28 -120.70 + 1562 256 54 39.32 -120.13 + 1563 256 54 38.90 -120.00 + 1564 263 49 43.50 -114.30 + 1565 262 51 42.48 -114.48 + 1566 263 50 42.55 -113.77 + 1567 255 51 42.15 -121.73 + 1568 253 54 39.13 -123.20 + 1569 254 53 40.15 -122.25 + 1570 254 53 40.50 -122.30 + 1571 252 52 40.98 -124.10 + 1572 252 51 41.78 -124.23 + 1573 256 52 41.50 -120.53 + 1574 253 51 42.37 -122.87 + 1575 308 50 43.20 -71.50 + 1576 309 50 43.08 -70.82 + 1577 309 49 43.65 -70.32 + 1578 309 50 43.40 -70.72 + 1579 312 48 44.45 -68.37 + 1580 311 49 44.07 -69.10 + 1581 313 48 44.92 -67.00 + 1582 312 45 47.28 -68.32 + 1583 311 48 44.80 -68.83 + 1584 307 50 43.35 -72.52 + 1585 307 49 43.63 -72.30 + 1586 308 49 44.36 -71.55 + 1587 308 48 44.42 -72.02 + 1588 307 49 44.20 -72.57 + 1589 308 49 43.57 -71.42 + 1590 309 48 44.58 -71.18 + 1591 307 50 42.90 -72.27 + 1592 306 48 44.47 -73.15 + 1593 309 48 44.53 -70.53 + 1594 310 49 44.05 -70.28 + 1595 310 49 44.32 -69.80 + 1596 310 47 45.47 -69.58 + 1597 311 47 45.65 -68.68 + 1598 306 48 44.65 -73.47 + 1599 305 48 44.93 -74.85 + 1600 303 49 44.00 -76.01 + 1601 305 49 44.38 -74.19 + 1602 295 50 42.70 -83.47 + 1603 294 48 44.90 -84.72 + 1604 293 50 42.88 -85.52 + 1605 292 51 42.14 -86.44 + 1606 293 51 42.23 -85.55 + 1607 292 50 43.17 -86.25 + 1608 295 50 42.97 -83.75 + 1609 296 50 42.67 -83.42 + 1610 295 49 43.53 -84.08 + 1611 294 49 44.36 -84.67 + 1612 293 49 44.28 -85.42 + 1613 292 49 44.28 -86.25 + 1614 293 48 44.73 -85.58 + 1615 295 48 45.07 -83.57 + 1616 296 48 44.45 -83.40 + 1617 291 50 42.95 -87.90 + 1618 289 50 43.13 -89.33 + 1619 290 50 42.62 -89.04 + 1620 288 50 43.21 -90.18 + 1621 287 49 43.87 -91.25 + 1622 287 48 44.87 -91.48 + 1623 286 49 43.92 -92.50 + 1624 290 48 44.48 -88.13 + 1625 291 49 44.13 -87.68 + 1626 290 49 43.98 -88.55 + 1627 289 48 44.93 -89.63 + 1628 289 48 44.78 -89.67 + 1629 292 47 45.73 -87.08 + 1630 291 48 45.12 -87.63 + 1631 285 48 44.85 -93.57 + 1632 281 49 43.58 -96.73 + 1633 281 49 44.31 -96.82 + 1634 281 50 42.92 -97.38 + 1635 279 49 43.80 -99.32 + 1636 280 49 44.38 -98.22 + 1637 280 49 43.77 -98.03 + 1638 281 48 44.92 -97.15 + 1639 284 47 45.55 -94.07 + 1640 284 46 46.40 -94.13 + 1641 283 48 44.55 -95.08 + 1642 283 47 45.87 -95.40 + 1643 282 48 44.45 -95.82 + 1644 284 49 44.32 -94.50 + 1645 284 47 45.95 -94.35 + 1646 285 48 44.88 -93.22 + 1647 285 48 44.95 -93.07 + 1648 284 49 44.22 -93.91 + 1649 284 49 43.65 -94.42 + 1650 285 49 43.68 -93.37 + 1651 280 47 45.45 -98.43 + 1652 275 49 44.06 -103.05 + 1653 272 49 44.35 -105.53 + 1654 270 48 44.77 -106.97 + 1655 267 48 44.54 -110.42 + 1656 269 49 43.97 -107.95 + 1657 272 47 45.45 -105.40 + 1658 273 46 47.13 -104.80 + 1659 277 47 45.55 -100.41 + 1660 278 49 44.38 -100.28 + 1661 276 47 45.93 -102.17 + 1662 268 48 44.52 -109.02 + 1663 267 50 42.58 -110.11 + 1664 266 48 44.68 -111.12 + 1665 269 47 45.80 -108.53 + 1666 268 46 47.05 -109.47 + 1667 264 47 45.95 -112.50 + 1668 264 48 45.25 -112.55 + 1669 266 47 45.78 -111.15 + 1670 267 47 45.70 -110.45 + 1671 261 49 43.57 -116.22 + 1672 258 49 43.58 -118.95 + 1673 255 49 44.25 -121.15 + 1674 263 48 45.12 -113.88 + 1675 261 47 45.95 -116.13 + 1676 258 47 45.68 -118.85 + 1677 259 48 44.83 -117.82 + 1678 253 50 43.23 -123.35 + 1679 252 50 43.42 -124.25 + 1680 253 49 44.12 -123.22 + 1681 253 48 44.92 -123.00 + 1682 252 48 44.58 -124.06 + 1683 254 47 45.60 -122.60 + 1684 254 47 45.55 -122.40 + 1685 253 47 45.53 -122.95 + 1686 255 47 45.62 -121.17 + 1687 312 47 46.12 -67.80 + 1688 310 46 46.62 -69.53 + 1689 312 46 46.87 -68.01 + 1690 312 46 46.68 -68.05 + 1691 295 46 46.47 -84.37 + 1692 294 47 46.25 -84.47 + 1693 294 47 45.57 -84.80 + 1694 289 47 45.63 -89.47 + 1695 291 46 46.53 -87.55 + 1696 291 46 46.35 -87.40 + 1697 291 47 45.82 -88.12 + 1698 290 46 47.17 -88.50 + 1699 288 46 46.53 -90.13 + 1700 286 46 46.83 -92.18 + 1701 285 45 47.38 -92.83 + 1702 282 46 46.83 -95.89 + 1703 287 45 47.82 -91.83 + 1704 285 44 48.57 -93.38 + 1705 284 44 48.73 -94.62 + 1706 281 46 46.90 -96.80 + 1707 279 46 46.93 -98.68 + 1708 283 45 47.50 -94.93 + 1709 283 44 48.93 -95.33 + 1710 281 45 47.95 -97.18 + 1711 279 45 48.10 -98.87 + 1712 277 46 46.77 -100.75 + 1713 275 46 46.80 -102.80 + 1714 274 44 48.18 -103.63 + 1715 276 44 48.27 -101.28 + 1716 276 45 47.65 -101.43 + 1717 271 44 48.22 -106.62 + 1718 270 45 47.33 -106.93 + 1719 272 45 48.10 -105.58 + 1720 273 45 47.70 -104.20 + 1721 265 46 46.60 -112.00 + 1722 263 46 46.92 -114.08 + 1723 266 45 47.48 -111.37 + 1724 267 44 48.55 -109.77 + 1725 263 44 48.30 -114.27 + 1726 265 44 48.60 -112.37 + 1727 256 46 46.57 -120.53 + 1728 255 45 47.28 -121.33 + 1729 256 45 47.40 -120.02 + 1730 256 45 47.40 -120.20 + 1731 257 45 47.30 -119.52 + 1732 257 46 47.20 -119.32 + 1733 260 46 46.38 -117.02 + 1734 260 45 47.77 -116.82 + 1735 257 46 46.32 -119.27 + 1736 257 47 46.27 -119.12 + 1737 258 47 46.10 -118.28 + 1738 259 45 47.63 -117.53 + 1739 259 45 47.68 -117.32 + 1740 260 46 46.75 -117.12 + 1741 259 45 47.70 -117.60 + 1742 259 44 48.55 -117.88 + 1743 256 46 47.03 -120.53 + 1744 253 45 48.12 -123.50 + 1745 257 44 48.42 -119.53 + 1746 252 47 46.15 -123.88 + 1747 253 46 46.97 -122.90 + 1748 252 46 46.97 -123.93 + 1749 253 47 46.12 -122.94 + 1750 254 45 47.45 -122.30 + 1751 254 45 47.50 -122.22 + 1752 254 45 47.53 -122.30 + 1753 254 45 47.90 -122.28 + 1754 254 45 47.27 -122.58 + 1755 298 66 27.65 -81.33 + 1756 252 45 47.95 -124.55 + 1757 254 44 48.80 -122.53 + 1758 264 53 40.17 -112.93 + 1759 272 46 46.43 -105.87 + 1760 283 48 44.67 -95.45 + 1761 288 50 43.22 -90.53 + 1762 304 49 44.05 -75.73 + 1763 310 49 43.90 -70.25 + 1764 308 50 42.93 -71.43 + 1765 271 51 41.90 -106.19 + 1766 277 53 40.09 -100.65 + 1767 276 50 42.91 -101.69 + 1768 281 53 40.10 -97.34 + 1769 280 51 42.21 -97.79 + 1770 285 51 41.90 -93.70 + 1771 288 52 41.61 -90.57 + 1772 295 53 39.82 -84.03 + 1773 290 51 41.77 -88.48 + 1774 292 52 40.81 -87.05 + 1775 293 54 38.83 -85.42 + 1776 306 53 40.65 -73.78 + 1777 308 51 42.47 -71.28 + 1778 309 50 42.72 -71.12 + 1779 307 51 42.20 -72.53 + 1780 307 51 42.15 -72.72 + 1781 310 51 41.67 -69.97 + 1782 306 50 42.85 -73.93 + 1783 276 56 37.77 -102.18 + 1784 273 54 38.97 -104.82 + 1785 274 54 39.26 -103.70 + 1786 273 53 40.18 -104.72 + 1787 279 56 37.65 -99.09 + 1788 282 56 37.38 -95.63 + 1789 281 55 38.31 -97.30 + 1790 286 56 37.52 -92.70 + 1791 284 54 39.58 -94.19 + 1792 288 54 39.66 -90.48 + 1793 289 53 40.15 -89.33 + 1794 305 54 39.02 -74.92 + 1795 259 58 35.68 -117.68 + 1796 271 61 32.41 -106.35 + 1797 269 57 36.84 -107.91 + 1798 279 57 36.07 -99.22 + 1799 278 57 36.43 -99.53 + 1800 281 57 36.69 -97.48 + 1801 282 58 35.68 -95.86 + 1802 280 59 34.98 -97.52 + 1803 289 57 36.88 -89.97 + 1804 292 56 36.97 -86.42 + 1805 303 57 36.27 -76.18 + 1806 261 61 32.83 -115.58 + 1807 261 60 33.63 -116.17 + 1808 262 60 33.62 -114.72 + 1809 274 58 35.08 -103.61 + 1810 271 61 33.08 -106.12 + 1811 271 61 32.90 -106.40 + 1812 277 61 33.02 -100.98 + 1813 278 63 30.50 -99.77 + 1814 282 62 31.78 -95.71 + 1815 284 60 34.11 -94.29 + 1816 286 62 31.90 -92.78 + 1817 289 63 30.40 -89.07 + 1818 290 60 34.09 -88.86 + 1819 297 62 31.90 -81.63 + 1820 296 63 30.89 -83.01 + 1821 299 60 33.97 -80.47 + 1822 300 60 33.68 -78.93 + 1823 301 60 33.82 -78.72 + 1824 299 66 28.47 -80.55 + 1825 260 61 32.55 -116.97 + 1826 262 61 32.63 -115.24 + 1827 271 62 31.63 -106.43 + 1828 258 65 28.88 -118.30 + 1829 266 65 29.07 -110.97 + 1830 271 65 28.70 -105.97 + 1831 265 67 27.32 -112.30 + 1832 266 66 27.97 -110.93 + 1833 266 66 27.95 -110.80 + 1834 278 67 27.43 -99.57 + 1835 280 68 26.02 -98.23 + 1836 274 69 25.53 -103.45 + 1837 278 68 25.87 -100.20 + 1838 278 68 25.78 -100.10 + 1839 280 68 25.77 -97.53 + 1840 267 70 24.17 -110.42 + 1841 267 70 24.07 -110.37 + 1842 267 71 23.15 -109.70 + 1843 270 69 24.82 -107.40 + 1844 273 70 24.13 -104.53 + 1845 271 71 23.20 -106.42 + 1846 271 71 23.17 -106.27 + 1847 279 71 23.73 -99.13 + 1848 279 71 23.72 -98.97 + 1849 275 72 22.90 -102.68 + 1850 277 72 22.15 -100.98 + 1851 280 72 22.28 -97.87 + 1852 275 73 21.88 -102.30 + 1853 292 74 21.03 -86.87 + 1854 272 74 20.68 -105.25 + 1855 274 74 20.52 -103.32 + 1856 289 74 20.98 -89.65 + 1857 292 74 20.53 -86.93 + 1858 273 76 19.15 -104.57 + 1859 277 75 19.85 -101.03 + 1860 278 75 19.35 -99.57 + 1861 279 75 19.43 -99.10 + 1862 282 76 19.15 -96.18 + 1863 284 77 18.10 -94.58 + 1864 287 76 18.65 -91.80 + 1865 276 77 17.60 -101.47 + 1866 278 78 16.83 -99.92 + 1867 278 78 16.77 -99.75 + 1868 282 79 15.78 -96.27 + 1869 286 80 14.78 -92.38 + 1870 316 61 32.37 -64.68 + 1871 300 67 26.70 -78.97 + 1872 301 68 26.55 -78.69 + 1873 300 68 25.73 -79.30 + 1874 302 69 25.05 -77.47 + 1875 304 71 23.50 -75.76 + 1876 296 73 21.83 -82.78 + 1877 297 71 22.98 -82.40 + 1878 298 71 23.13 -81.28 + 1879 301 73 21.42 -77.85 + 1880 302 74 20.33 -77.12 + 1881 303 74 20.40 -76.62 + 1882 304 75 19.96 -75.85 + 1883 304 75 20.08 -75.15 + 1884 305 74 20.35 -74.50 + 1885 305 74 20.65 -74.92 + 1886 298 73 21.62 -81.55 + 1887 300 73 21.78 -78.78 + 1888 302 74 20.95 -76.94 + 1889 304 75 19.90 -75.12 + 1890 298 75 19.28 -81.35 + 1891 301 76 18.50 -77.92 + 1892 303 77 17.93 -76.78 + 1893 308 75 19.75 -72.18 + 1894 307 76 18.57 -72.30 + 1895 309 75 19.75 -70.55 + 1896 309 75 19.46 -70.69 + 1897 312 76 18.57 -68.37 + 1898 310 76 18.43 -69.67 + 1899 310 76 18.47 -69.88 + 1900 313 76 18.50 -67.12 + 1901 313 76 18.27 -67.15 + 1902 313 77 18.02 -66.57 + 1903 314 76 18.43 -66.00 + 1904 315 76 18.33 -64.97 + 1905 315 77 17.70 -64.80 + 1906 316 76 18.45 -64.53 + 1907 290 77 17.53 -88.30 + 1908 289 78 16.92 -89.88 + 1909 287 80 15.32 -91.47 + 1910 290 79 15.72 -88.60 + 1911 288 80 14.58 -90.52 + 1912 288 81 13.92 -90.82 + 1913 289 81 13.57 -89.83 + 1914 289 81 13.70 -89.12 + 1915 290 82 13.43 -89.05 + 1916 291 82 13.28 -87.67 + 1917 293 78 16.46 -85.92 + 1918 292 79 16.32 -86.53 + 1919 292 79 15.73 -86.87 + 1920 291 79 15.72 -87.48 + 1921 292 80 15.17 -87.12 + 1922 291 79 15.45 -87.93 + 1923 295 80 15.22 -83.80 + 1924 293 80 14.90 -85.93 + 1925 290 80 14.78 -88.78 + 1926 290 81 14.33 -88.17 + 1927 291 81 14.05 -87.22 + 1928 292 82 13.30 -87.18 + 1929 296 81 14.05 -83.37 + 1930 293 83 12.15 -86.17 + 1931 294 85 9.97 -84.78 + 1932 295 85 10.00 -84.22 + 1933 295 85 9.95 -84.15 + 1934 296 85 10.00 -83.05 + 1935 293 85 10.60 -85.55 + 1936 296 86 9.43 -82.52 + 1937 300 86 9.05 -79.37 + 1938 297 87 8.39 -82.42 + 1939 297 86 9.35 -82.25 + 1940 298 87 8.08 -80.94 + 1941 300 86 8.97 -79.51 + 1942 317 77 18.20 -63.05 + 1943 318 78 16.75 -62.17 + 1944 318 78 17.29 -62.68 + 1945 318 78 17.20 -62.58 + 1946 319 78 17.12 -61.78 + 1947 317 77 18.04 -63.12 + 1948 317 77 17.48 -62.98 + 1949 317 77 17.90 -62.85 + 1950 319 79 16.27 -61.52 + 1951 319 79 15.53 -61.30 + 1952 319 79 15.53 -61.40 + 1953 319 80 15.30 -61.40 + 1954 321 82 13.07 -59.48 + 1955 310 83 12.50 -70.01 + 1956 311 83 12.20 -68.97 + 1957 312 83 12.15 -68.28 + 1958 297 83 12.58 -81.72 + 1959 305 84 11.13 -74.23 + 1960 304 85 10.45 -75.52 + 1961 305 84 10.90 -74.77 + 1962 306 88 7.10 -73.20 + 1963 304 89 6.22 -75.60 + 1964 304 89 6.18 -75.43 + 1965 304 91 4.82 -75.80 + 1966 305 91 4.70 -74.13 + 1967 308 85 10.57 -71.73 + 1968 313 85 10.60 -66.98 + 1969 320 99 -2.83 -60.70 + 1970 333 98 -1.43 -48.48 + 1971 321 99 -3.15 -59.98 + 1972 343 100 -3.78 -38.53 + 1973 332 102 -5.53 -49.15 + 1974 339 101 -5.05 -42.82 + 1975 347 102 -5.92 -35.25 + 1976 342 104 -7.88 -40.08 + 1977 316 105 -8.70 -63.90 + 1978 332 105 -8.27 -49.28 + 1979 337 106 -9.07 -44.37 + 1980 333 107 -10.70 -48.40 + 1981 343 110 -13.00 -38.52 + 1982 325 113 -15.65 -56.10 + 1983 334 121 -23.00 -47.13 + 1984 332 120 -22.32 -49.07 + 1985 338 120 -22.90 -43.17 + 1986 335 121 -23.62 -46.65 + 1987 330 128 -30.08 -51.18 + 1988 289 97 -0.90 -89.62 + 1989 301 96 -0.12 -78.35 + 1990 299 98 -2.15 -79.88 + 1991 300 105 -8.08 -79.12 + 1992 302 109 -12.02 -77.03 + 1993 315 112 -14.75 -64.80 + 1994 312 114 -16.50 -68.17 + 1995 309 132 -33.38 -70.78 + 1996 309 133 -34.97 -71.22 + 1997 323 123 -25.16 -57.38 + 1998 322 125 -27.45 -59.05 + 1999 320 131 -32.92 -60.78 + 2000 322 133 -34.82 -58.53 + 2001 313 145 -45.78 -67.45 + 2002 215 72 21.98 -159.35 + 2003 216 73 21.32 -158.07 + 2004 216 73 21.35 -157.93 + 2005 217 73 21.15 -157.10 + 2006 218 74 20.90 -156.43 + 2007 155 82 13.35 144.80 + 2008 156 80 15.12 145.73 + 2009 178 75 19.28 166.65 + 2010 219 75 19.72 -155.07 + 2011 162 88 7.47 151.85 + 2012 169 89 6.97 158.22 + 2013 174 90 5.33 163.03 + 2014 179 87 8.73 167.73 + 2015 183 88 7.08 171.38 + 2016 144 88 7.33 134.48 + 2017 148 86 9.48 138.08 + 2018 155 81 14.20 145.20 + 2019 156 80 15.00 145.60 + 2020 156 76 18.80 145.70 + 2021 144 87 8.10 134.70 + 2022 142 90 5.30 132.20 + 2023 147 87 8.30 137.50 + 2024 150 85 10.00 139.80 + 2025 150 86 9.80 140.50 + 2026 144 88 7.40 134.90 + 2027 155 87 8.60 144.60 + 2028 157 88 7.40 147.10 + 2029 160 88 7.40 149.20 + 2030 160 87 8.60 149.70 + 2031 163 87 8.60 151.90 + 2032 163 89 6.90 152.70 + 2033 165 90 5.50 153.80 + 2034 166 92 3.80 155.00 + 2035 168 90 5.80 157.30 + 2036 169 89 7.00 157.90 + 2037 171 89 6.80 159.80 + 2038 172 89 6.20 160.70 + 2039 174 83 11.80 162.50 + 2040 177 86 8.90 165.70 + 2041 181 88 7.30 168.80 + 2042 181 90 5.90 169.60 + 2043 182 84 11.20 169.80 + 2044 182 86 9.50 170.20 + 2045 184 89 6.10 171.80 + 2046 234 115 -18.07 -140.95 + 2047 187 136 -37.02 174.80 + 2048 140 109 -12.42 130.87 + 2049 163 126 -27.63 152.72 + 2050 124 130 -31.92 115.97 + 2051 162 132 -33.95 151.18 + 2052 155 136 -37.67 144.83 + 2053 159 134 -35.40 148.98 + 2054 158 142 -42.83 147.50 + 2055 114 103 -6.15 106.85 + 2056 292 62 31.42 -87.05 + 2057 129 80 15.18 120.57 + 2058 130 80 14.52 121.00 + 2059 131 89 6.90 122.07 + 2060 302 60 33.49 -77.59 + 2061 262 65 29.37 -114.47 + 2062 263 53 40.33 -113.50 + 2063 300 58 35.17 -79.50 + 2064 276 44 48.83 -101.67 + 2065 276 44 44.22 -0.67 + 2066 23 126 -28.00 21.50 + 2067 312 139 -40.50 -68.00 + 2068 321 125 -27.33 -59.50 + 2069 144 126 -28.23 134.98 + 2070 356 55 38.70 -27.10 + 2071 225 31 61.20 -149.80 + 2072 369 104 -7.90 -14.40 + 2073 149 58 35.70 139.30 + 2074 326 44 48.90 -54.50 + 2075 6 49 43.50 4.90 + 2076 375 40 52.70 -8.90 + 2077 142 112 -14.50 132.30 + 2078 376 55 38.10 -7.90 + 2079 129 70 24.20 120.60 + 2080 108 82 12.70 101.00 + 2081 45 74 20.30 41.60 + 2082 202 111 -14.30 -170.70 + 2083 311 151 -51.60 -69.30 + 2084 268 125 -27.20 -109.40 + 2085 95 72 22.60 88.50 + 2086 347 105 -8.10 -34.90 + 2087 335 121 -23.40 -46.50 + 2088 86 88 7.20 79.90 + 2089 313 85 10.60 -67.00 + 2090 329 91 4.80 -52.40 + 2091 78 76 19.10 72.80 + 2092 51 116 -18.80 47.50 + 2093 266 62 32.20 -110.90 + 2094 275 49 44.10 -103.10 + 2095 228 27 64.60 -147.00 + 2096 256 59 34.80 -120.60 + 2097 259 59 34.60 -118.10 + 2098 263 53 40.19 -113.47 + 2099 74 59 34.95 69.27 + 2100 383 40 52.83 -1.32 + 2101 8 86 9.01 7.26 + 2102 260 71 23.61 -116.48 + 2103 68 47 46.00 63.56 + 2104 73 45 47.67 67.73 + 2105 218 75 19.73 -156.05 + 2106 240 33 59.23 -135.43 + 2107 228 31 61.13 -146.25 + 2108 217 74 20.78 -156.95 + 2109 217 74 21.02 -156.63 + 2110 314 77 17.85 -66.52 + 2111 313 77 18.17 -67.15 + 2112 285 58 35.25 -93.09 + 2113 137 113 -15.51 128.15 + 2114 377 35 57.48 -7.36 + 2115 11 38 54.38 10.13 diff --git a/scripts/exgfs_atmos_postsnd.sh b/scripts/exgfs_atmos_postsnd.sh index c4075fdb556..8f2aa43568c 100755 --- a/scripts/exgfs_atmos_postsnd.sh +++ b/scripts/exgfs_atmos_postsnd.sh @@ -79,7 +79,7 @@ echo "Total number of hours: $ntasks" # allocate 21 processes per node # don't allocate more processes, or it might have memory issue #export tasks_per_node=21 -export APRUN="mpiexec -np ${ntasks} -ppn ${tasks_per_node} --cpu-bind core cfp " +#export APRUN="mpiexec -np ${ntasks} -ppn ${tasks_per_node} --cpu-bind core cfp " if [ -s "${DATA}/poescript_bufr" ]; then rm ${DATA}/poescript_bufr @@ -136,8 +136,10 @@ for fhr in "${hour_list[@]}"; do ${NLN} "${DATA}/${fhr}/fort.${fortnum}" "fort.${fortnum}" done +# start to generate bufr products at fhr=${ENDHOUR} + export MAKEBUFR=YES -export fhr=${ENDHOUR} +export fhr="$(printf "%03d" "$ENDHOUR")" export FINT=${NINT1} ## 1-hourly output before $NEND1, 3-hourly output after if [[ $((10#${fhr})) -gt $((10#${NEND1})) ]]; then diff --git a/ush/gfs_bufr.sh b/ush/gfs_bufr.sh index 546b542b00c..0a7a8e85222 100755 --- a/ush/gfs_bufr.sh +++ b/ush/gfs_bufr.sh @@ -46,8 +46,20 @@ else bufrflag=".false." fi -##fformat="nc" -##fformat="nemsio" +# check if read in bufr_ij_gfs_${CASE}.txt + +if [[ -s "${PARMgfs}/product/bufr_ij_gfs_${CASE}.txt" ]]; then + # use predetermined grid point(i,j) in bufr_gfs_${CASE}.txt + ${NLN} "${PARMgfs}/product/bufr_ij_gfs_${CASE}.txt" fort.7 + np1=0 +else + # find the nearest neighbor grid point(i,j) in the code + np1=1 + echo "No bufr_ij_gfs_${CASE}.txt For CASE ${CASE}" + echo "Find the nearest neighbor grid (i,j) in the code" +fi + +##fformat="netcdf" CLASS="class1fv3" cat << EOF > gfsparm @@ -56,7 +68,7 @@ cat << EOF > gfsparm dird="${COM_ATMOS_BUFR}/bufr", nstart=${fhr},nend=${fhr},nint=${FINT}, nend1=${NEND1},nint1=${NINT1},nint3=${NINT3}, - nsfc=80,f00=${f00flag},fformat=${fformat},np1=0, + nsfc=80,f00=${f00flag},fformat=${fformat},np1=${np1}, fnsig="sigf${fhr}", fngrib="flxf${fhr}", fngrib2="flxf${fhr_p}" @@ -87,19 +99,8 @@ ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.${cycle}.sfcf${fhr_p}.${atmfm}" "flxf${fhr_p ${NLN} "${PARMgfs}/product/bufr_gfs_${CLASS}.tbl" fort.1 ${NLN} "${STNLIST:-${PARMgfs}/product/bufr_stalist.meteo.gfs}" fort.8 -case "${CASE}" in - "C768") - ${NLN} "${PARMgfs}/product/bufr_ij13km.txt" fort.7 - ;; - "C1152") - ${NLN} "${PARMgfs}/product/bufr_ij9km.txt" fort.7 - ;; - *) - echo "FATAL ERROR: Unrecognized bufr_ij*km.txt For CASE ${CASE}, ABORT!" - exit 1 - ;; -esac +#------------------------------------------------------------------ "${EXECgfs}/${pgm}" < gfsparm > "out_gfs_bufr_${fhr}" export err=$? From 2ed6a5357aae8942e56b67eb3cd0759dbbab0d05 Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Thu, 12 Sep 2024 14:12:02 -0400 Subject: [PATCH 10/14] Uppdate config.resources for bufr sounding job --- env/WCOSS2.env | 4 ++-- parm/config/gfs/config.resources | 18 ++++++++++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/env/WCOSS2.env b/env/WCOSS2.env index d2dae3ba936..59a591d410b 100755 --- a/env/WCOSS2.env +++ b/env/WCOSS2.env @@ -272,12 +272,12 @@ elif [[ "${step}" = "postsnd" ]]; then export OMP_NUM_THREADS=1 export NTHREADS_POSTSND=${NTHREADS1} - export mpmd_opt="-ppn 21 ${mpmd_opt}" - export NTHREADS_POSTSNDCFP=${threads_per_task_postsndcfp:-1} [[ ${NTHREADS_POSTSNDCFP} -gt ${max_threads_per_task} ]] && export NTHREADS_POSTSNDCFP=${max_threads_per_task} export APRUN_POSTSNDCFP="${launcher} -np ${ntasks_postsndcfp} ${mpmd_opt}" + export mpmd_opt="-ppn 21 ${mpmd_opt}" + elif [[ "${step}" = "awips" ]]; then export NTHREADS_AWIPS=${NTHREADS1} diff --git a/parm/config/gfs/config.resources b/parm/config/gfs/config.resources index b50e1c5fbb0..7eb6d9d2788 100644 --- a/parm/config/gfs/config.resources +++ b/parm/config/gfs/config.resources @@ -1192,9 +1192,23 @@ case ${step} in "postsnd") walltime="02:00:00" export ntasks=141 - threads_per_task=6 - export tasks_per_node=21 export ntasks_postsndcfp=9 + case ${CASE} in + "C768") + tasks_per_node=21 + threads_per_task=6 + memory="23GB" + ;; + "C1152") + tasks_per_node=9 + threads_per_task=14 + memory="50GB" + ;; + *) + tasks_per_node=21 + threads_per_task=6 + ;; + esac export tasks_per_node_postsndcfp=1 postsnd_req_cores=$(( tasks_per_node * threads_per_task )) if (( postsnd_req_cores > max_tasks_per_node )); then From 2f6d494eaff24578b904b383a147e868e2754fd4 Mon Sep 17 00:00:00 2001 From: BoCui-NOAA <53531984+BoCui-NOAA@users.noreply.github.com> Date: Fri, 13 Sep 2024 16:08:59 -0400 Subject: [PATCH 11/14] Update WCOSS2.env --- env/WCOSS2.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/WCOSS2.env b/env/WCOSS2.env index 59a591d410b..cea24fb26bd 100755 --- a/env/WCOSS2.env +++ b/env/WCOSS2.env @@ -276,7 +276,7 @@ elif [[ "${step}" = "postsnd" ]]; then [[ ${NTHREADS_POSTSNDCFP} -gt ${max_threads_per_task} ]] && export NTHREADS_POSTSNDCFP=${max_threads_per_task} export APRUN_POSTSNDCFP="${launcher} -np ${ntasks_postsndcfp} ${mpmd_opt}" - export mpmd_opt="-ppn 21 ${mpmd_opt}" + export mpmd_opt="-ppn ${tasks_per_node} ${mpmd_opt}" elif [[ "${step}" = "awips" ]]; then From 80a0d0e3b2b48ce00f40eb4a558320f8a738b245 Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Fri, 11 Oct 2024 11:07:13 -0400 Subject: [PATCH 12/14] Update config.resources for bufr sounding job postsnd --- parm/config/gfs/config.resources | 2 -- 1 file changed, 2 deletions(-) diff --git a/parm/config/gfs/config.resources b/parm/config/gfs/config.resources index 5024bc88739..26f61267735 100644 --- a/parm/config/gfs/config.resources +++ b/parm/config/gfs/config.resources @@ -1214,12 +1214,10 @@ case ${step} in "C768") tasks_per_node=21 threads_per_task=6 - memory="23GB" ;; "C1152") tasks_per_node=9 threads_per_task=14 - memory="50GB" ;; *) tasks_per_node=21 From 22aa93d53f7666f7975166387f0f6328331a5db5 Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Thu, 31 Oct 2024 11:01:13 -0400 Subject: [PATCH 13/14] GFSv17: Update Bufr sounding parm files, 121 new and 3 updated stations --- parm/product/bufr_ij_gfs_C1152.txt | 127 +++++++++++++++++++++++++++- parm/product/bufr_ij_gfs_C768.txt | 127 +++++++++++++++++++++++++++- parm/product/bufr_ij_gfs_C96.txt | 127 +++++++++++++++++++++++++++- parm/product/bufr_stalist.meteo.gfs | 127 +++++++++++++++++++++++++++- 4 files changed, 496 insertions(+), 12 deletions(-) diff --git a/parm/product/bufr_ij_gfs_C1152.txt b/parm/product/bufr_ij_gfs_C1152.txt index 321026f3d14..e8c6e3fc34d 100644 --- a/parm/product/bufr_ij_gfs_C1152.txt +++ b/parm/product/bufr_ij_gfs_C1152.txt @@ -111,9 +111,9 @@ 111 3499 558 46.42 -86.65 112 3461 651 39.16 -89.67 113 3308 588 44.05 -101.60 - 114 3505 594 43.58 -86.24 - 115 3517 596 43.43 -85.30 - 116 3528 597 43.37 -84.44 + 114 3502 589 43.96 -86.41 + 115 3514 592 43.73 -85.51 + 116 3524 594 43.62 -84.74 117 3274 712 34.38 -104.23 118 3994 554 46.70 -48.00 119 3903 548 47.20 -55.10 @@ -2113,3 +2113,124 @@ 2113 1641 1351 -15.51 128.15 2114 4514 416 57.48 -7.36 2115 130 456 54.38 10.13 + 2116 3685 625 41.24 -72.12 + 2117 3584 733 32.70 -80.00 + 2118 3468 539 47.91 -89.14 + 2119 3478 554 46.67 -88.35 + 2120 3037 573 45.24 -122.77 + 2121 2612 886 20.79 -156.01 + 2122 2608 887 20.71 -156.25 + 2123 2618 898 19.82 -155.47 + 2124 2563 870 22.04 -159.78 + 2125 2613 867 22.27 -155.86 + 2126 2617 903 19.47 -155.59 + 2127 2338 791 28.20 -177.38 + 2128 2568 868 22.21 -159.44 + 2129 2589 877 21.45 -157.77 + 2130 2617 907 19.10 -155.57 + 2131 3587 660 38.43 -79.84 + 2132 3657 578 44.85 -74.33 + 2133 3671 581 44.56 -73.33 + 2134 3670 576 45.00 -73.33 + 2135 3676 594 43.60 -72.82 + 2136 3675 581 44.59 -72.92 + 2137 3674 589 43.98 -73.03 + 2138 3491 718 33.90 -87.31 + 2139 3508 731 32.91 -85.96 + 2140 3584 733 32.70 -80.00 + 2141 3614 607 42.57 -77.71 + 2142 3582 783 28.85 -80.23 + 2143 3581 768 30.02 -80.25 + 2144 3488 770 29.80 -87.50 + 2145 3536 787 28.50 -83.75 + 2146 3531 778 29.25 -84.20 + 2147 3577 770 29.80 -80.60 + 2148 3507 771 29.77 -86.03 + 2149 3033 580 44.64 -123.06 + 2150 3052 569 45.52 -121.59 + 2151 3015 562 46.10 -124.50 + 2152 3015 581 44.60 -124.50 + 2153 2998 564 45.90 -125.80 + 2154 3529 670 37.63 -84.33 + 2155 3250 655 38.81 -106.12 + 2156 3258 635 40.38 -105.52 + 2157 3263 660 38.43 -105.10 + 2158 3510 620 41.53 -85.79 + 2159 3519 619 41.64 -85.08 + 2160 3306 665 38.00 -101.75 + 2161 3698 612 42.18 -71.17 + 2162 3690 607 42.55 -71.76 + 2163 3679 607 42.59 -72.60 + 2164 3704 606 42.62 -70.67 + 2165 3699 616 41.87 -71.02 + 2166 3679 610 42.33 -72.63 + 2167 3618 647 39.41 -77.37 + 2168 3621 651 39.17 -77.17 + 2169 3700 589 43.99 -70.95 + 2170 3542 594 43.56 -83.34 + 2171 3536 611 42.22 -83.75 + 2172 3411 547 47.22 -93.52 + 2173 3419 567 45.70 -92.95 + 2174 3407 574 45.16 -93.84 + 2175 3415 612 42.15 -93.22 + 2176 3452 540 47.84 -90.38 + 2177 3219 557 46.48 -108.54 + 2178 3693 588 44.03 -71.49 + 2179 3256 685 36.45 -105.67 + 2180 3248 693 35.88 -106.27 + 2181 3568 624 41.21 -81.25 + 2182 3527 637 40.20 -84.53 + 2183 3624 641 39.93 -76.88 + 2184 3641 637 40.23 -75.55 + 2185 3674 603 42.89 -73.04 + 2186 3445 556 46.55 -90.92 + 2187 3599 662 38.27 -78.90 + 2188 3040 672 37.51 -122.50 + 2189 3175 632 40.62 -111.99 + 2190 3178 706 34.85 -111.79 + 2191 3183 713 34.26 -111.34 + 2192 3209 715 34.13 -109.31 + 2193 3172 700 35.31 -112.19 + 2194 3212 696 35.65 -109.07 + 2195 3185 689 36.14 -111.24 + 2196 3206 689 36.15 -109.55 + 2197 3172 682 36.71 -112.22 + 2198 3197 682 36.73 -110.25 + 2199 3166 688 36.24 -112.69 + 2200 3157 697 35.53 -113.43 + 2201 3160 709 34.58 -113.18 + 2202 3194 694 35.79 -110.51 + 2203 3212 679 36.92 -109.09 + 2204 3211 685 36.47 -109.15 + 2205 307 666 37.94 23.94 + 2206 3683 873 21.77 -72.27 + 2207 1930 385 59.91 150.72 + 2208 2029 471 53.17 158.45 + 2209 979 372 60.95 76.48 + 2210 4528 468 53.43 -6.25 + 2211 4499 544 47.48 -8.54 + 2212 362 1487 -26.14 28.23 + 2213 33 524 49.02 2.53 + 2214 93 593 43.65 7.21 + 2215 4563 634 40.47 -3.58 + 2216 4286 679 36.97 -25.17 + 2217 4492 656 38.77 -9.13 + 2218 112 568 45.63 8.72 + 2219 854 300 66.53 66.67 + 2220 1303 431 56.28 101.75 + 2221 1336 483 52.27 104.32 + 2222 1731 531 48.53 135.19 + 2223 447 742 32.00 34.90 + 2224 1619 672 37.47 126.43 + 2225 1632 682 36.72 127.50 + 2226 1619 723 33.50 126.48 + 2227 1670 722 33.58 130.45 + 2228 1343 1003 11.60 104.86 + 2229 4434 1029 9.57 -13.62 + 2230 711 1419 -20.89 55.53 + 2231 3508 744 31.86 -86.01 + 2232 3429 658 38.59 -92.16 + 2233 3024 570 45.42 -123.82 + 2234 3828 976 13.75 -60.95 + 2235 3818 998 12.00 -61.78 + 2236 3654 1259 -8.37 -74.57 diff --git a/parm/product/bufr_ij_gfs_C768.txt b/parm/product/bufr_ij_gfs_C768.txt index 568717de728..41906ee4382 100644 --- a/parm/product/bufr_ij_gfs_C768.txt +++ b/parm/product/bufr_ij_gfs_C768.txt @@ -111,9 +111,9 @@ 111 2333 372 46.42 -86.65 112 2307 434 39.16 -89.67 113 2206 392 44.05 -101.60 - 114 2337 396 43.58 -86.24 - 115 2345 397 43.43 -85.30 - 116 2352 398 43.37 -84.44 + 114 2335 393 43.96 -86.41 + 115 2343 395 43.73 -85.51 + 116 2349 396 43.62 -84.74 117 2183 475 34.38 -104.23 118 2663 369 46.70 -48.00 119 2602 365 47.20 -55.10 @@ -2113,3 +2113,124 @@ 2113 1094 900 -15.51 128.15 2114 3010 277 57.48 -7.36 2115 87 304 54.38 10.13 + 2116 2457 416 41.24 -72.12 + 2117 2390 489 32.70 -80.00 + 2118 2312 359 47.91 -89.14 + 2119 2319 370 46.67 -88.35 + 2120 2025 382 45.24 -122.77 + 2121 1741 591 20.79 -156.01 + 2122 1739 591 20.71 -156.25 + 2123 1746 599 19.82 -155.47 + 2124 1709 580 22.04 -159.78 + 2125 1742 578 22.27 -155.86 + 2126 1745 602 19.47 -155.59 + 2127 1559 527 28.20 -177.38 + 2128 1712 578 22.21 -159.44 + 2129 1726 585 21.45 -157.77 + 2130 1745 605 19.10 -155.57 + 2131 2391 440 38.43 -79.84 + 2132 2438 385 44.85 -74.33 + 2133 2447 388 44.56 -73.33 + 2134 2447 385 45.00 -73.33 + 2135 2451 396 43.60 -72.82 + 2136 2450 387 44.59 -72.92 + 2137 2449 393 43.98 -73.03 + 2138 2327 479 33.90 -87.31 + 2139 2339 487 32.91 -85.96 + 2140 2390 489 32.70 -80.00 + 2141 2409 405 42.57 -77.71 + 2142 2388 522 28.85 -80.23 + 2143 2388 512 30.02 -80.25 + 2144 2326 514 29.80 -87.50 + 2145 2358 525 28.50 -83.75 + 2146 2354 518 29.25 -84.20 + 2147 2385 514 29.80 -80.60 + 2148 2338 514 29.77 -86.03 + 2149 2022 387 44.64 -123.06 + 2150 2035 379 45.52 -121.59 + 2151 2010 374 46.10 -124.50 + 2152 2010 387 44.60 -124.50 + 2153 1999 376 45.90 -125.80 + 2154 2353 447 37.63 -84.33 + 2155 2167 437 38.81 -106.12 + 2156 2172 423 40.38 -105.52 + 2157 2176 440 38.43 -105.10 + 2158 2340 413 41.53 -85.79 + 2159 2346 413 41.64 -85.08 + 2160 2204 444 38.00 -101.75 + 2161 2465 408 42.18 -71.17 + 2162 2460 405 42.55 -71.76 + 2163 2453 404 42.59 -72.60 + 2164 2469 404 42.62 -70.67 + 2165 2466 411 41.87 -71.02 + 2166 2453 407 42.33 -72.63 + 2167 2412 432 39.41 -77.37 + 2168 2414 434 39.17 -77.17 + 2169 2467 392 43.99 -70.95 + 2170 2361 396 43.56 -83.34 + 2171 2358 408 42.22 -83.75 + 2172 2274 365 47.22 -93.52 + 2173 2279 378 45.70 -92.95 + 2174 2272 383 45.16 -93.84 + 2175 2277 408 42.15 -93.22 + 2176 2301 360 47.84 -90.38 + 2177 2146 371 46.48 -108.54 + 2178 2462 392 44.03 -71.49 + 2179 2171 457 36.45 -105.67 + 2180 2166 462 35.88 -106.27 + 2181 2379 416 41.21 -81.25 + 2182 2351 425 40.20 -84.53 + 2183 2416 427 39.93 -76.88 + 2184 2428 425 40.23 -75.55 + 2185 2449 402 42.89 -73.04 + 2186 2297 371 46.55 -90.92 + 2187 2399 441 38.27 -78.90 + 2188 2027 448 37.51 -122.50 + 2189 2117 421 40.62 -111.99 + 2190 2119 471 34.85 -111.79 + 2191 2122 476 34.26 -111.34 + 2192 2140 477 34.13 -109.31 + 2193 2115 467 35.31 -112.19 + 2194 2142 464 35.65 -109.07 + 2195 2123 460 36.14 -111.24 + 2196 2138 459 36.15 -109.55 + 2197 2115 455 36.71 -112.22 + 2198 2132 454 36.73 -110.25 + 2199 2111 459 36.24 -112.69 + 2200 2105 465 35.53 -113.43 + 2201 2107 473 34.58 -113.18 + 2202 2129 462 35.79 -110.51 + 2203 2142 453 36.92 -109.09 + 2204 2141 457 36.47 -109.15 + 2205 205 444 37.94 23.94 + 2206 2456 582 21.77 -72.27 + 2207 1287 257 59.91 150.72 + 2208 1353 314 53.17 158.45 + 2209 653 248 60.95 76.48 + 2210 3019 312 53.43 -6.25 + 2211 3000 363 47.48 -8.54 + 2212 241 991 -26.14 28.23 + 2213 22 350 49.02 2.53 + 2214 62 395 43.65 7.21 + 2215 3042 423 40.47 -3.58 + 2216 2858 452 36.97 -25.17 + 2217 2995 437 38.77 -9.13 + 2218 75 378 45.63 8.72 + 2219 569 200 66.53 66.67 + 2220 869 288 56.28 101.75 + 2221 891 322 52.27 104.32 + 2222 1154 354 48.53 135.19 + 2223 298 495 32.00 34.90 + 2224 1079 448 37.47 126.43 + 2225 1088 455 36.72 127.50 + 2226 1080 482 33.50 126.48 + 2227 1114 481 33.58 130.45 + 2228 895 669 11.60 104.86 + 2229 2956 686 9.57 -13.62 + 2230 474 946 -20.89 55.53 + 2231 2339 496 31.86 -86.01 + 2232 2286 439 38.59 -92.16 + 2233 2016 380 45.42 -123.82 + 2234 2552 651 13.75 -60.95 + 2235 2545 666 12.00 -61.78 + 2236 2436 839 -8.37 -74.57 diff --git a/parm/product/bufr_ij_gfs_C96.txt b/parm/product/bufr_ij_gfs_C96.txt index c005cc3170c..53dc3f2f9a8 100644 --- a/parm/product/bufr_ij_gfs_C96.txt +++ b/parm/product/bufr_ij_gfs_C96.txt @@ -111,9 +111,9 @@ 111 292 46 46.42 -86.65 112 289 54 39.16 -89.67 113 276 49 44.05 -101.60 - 114 293 49 43.58 -86.24 - 115 294 50 43.43 -85.30 - 116 294 50 43.37 -84.44 + 114 292 49 43.96 -86.41 + 115 293 49 43.73 -85.51 + 116 294 49 43.62 -84.74 117 273 59 34.38 -104.23 118 333 46 46.70 -48.00 119 326 46 47.20 -55.10 @@ -2113,3 +2113,124 @@ 2113 137 113 -15.51 128.15 2114 377 35 57.48 -7.36 2115 11 38 54.38 10.13 + 2116 308 53 41.24 -72.12 + 2117 299 61 32.70 -80.00 + 2118 289 45 47.91 -89.14 + 2119 290 46 46.67 -88.35 + 2120 254 48 45.24 -122.77 + 2121 218 74 20.79 -156.01 + 2122 218 74 20.71 -156.25 + 2123 219 75 19.82 -155.47 + 2124 214 72 22.04 -159.78 + 2125 218 72 22.27 -155.86 + 2126 219 75 19.47 -155.59 + 2127 195 66 28.20 -177.38 + 2128 214 72 22.21 -159.44 + 2129 216 73 21.45 -157.77 + 2130 219 76 19.10 -155.57 + 2131 299 55 38.43 -79.84 + 2132 305 48 44.85 -74.33 + 2133 304 50 44.56 -73.33 + 2134 304 50 45.00 -73.33 + 2135 307 49 43.60 -72.82 + 2136 307 48 44.59 -72.92 + 2137 307 49 43.98 -73.03 + 2138 291 60 33.90 -87.31 + 2139 293 61 32.91 -85.96 + 2140 299 61 32.70 -80.00 + 2141 302 50 42.57 -77.71 + 2142 299 65 28.85 -80.23 + 2143 299 64 30.02 -80.25 + 2144 291 65 29.80 -87.50 + 2145 295 66 28.50 -83.75 + 2146 295 65 29.25 -84.20 + 2147 299 64 29.80 -80.60 + 2148 293 65 29.77 -86.03 + 2149 253 48 44.64 -123.06 + 2150 255 47 45.52 -121.59 + 2151 252 47 46.10 -124.50 + 2152 252 48 44.60 -124.50 + 2153 250 47 45.90 -125.80 + 2154 295 56 37.63 -84.33 + 2155 271 54 38.81 -106.12 + 2156 272 53 40.38 -105.52 + 2157 272 55 38.43 -105.10 + 2158 293 52 41.53 -85.79 + 2159 294 51 41.64 -85.08 + 2160 276 55 38.00 -101.75 + 2161 309 51 42.18 -71.17 + 2162 308 50 42.55 -71.76 + 2163 307 50 42.59 -72.60 + 2164 309 50 42.62 -70.67 + 2165 309 51 41.87 -71.02 + 2166 307 51 42.33 -72.63 + 2167 302 54 39.41 -77.37 + 2168 302 54 39.17 -77.17 + 2169 309 49 43.99 -70.95 + 2170 296 49 43.56 -83.34 + 2171 295 51 42.22 -83.75 + 2172 285 46 47.22 -93.52 + 2173 285 47 45.70 -92.95 + 2174 284 48 45.16 -93.84 + 2175 285 51 42.15 -93.22 + 2176 288 45 47.84 -90.38 + 2177 269 46 46.48 -108.54 + 2178 308 49 44.03 -71.49 + 2179 272 57 36.45 -105.67 + 2180 271 58 35.88 -106.27 + 2181 298 52 41.21 -81.25 + 2182 294 53 40.20 -84.53 + 2183 302 53 39.93 -76.88 + 2184 304 53 40.23 -75.55 + 2185 307 50 42.89 -73.04 + 2186 288 46 46.55 -90.92 + 2187 300 55 38.27 -78.90 + 2188 254 56 37.51 -122.50 + 2189 265 53 40.62 -111.99 + 2190 265 59 34.85 -111.79 + 2191 266 59 34.26 -111.34 + 2192 268 59 34.13 -109.31 + 2193 265 58 35.31 -112.19 + 2194 268 58 35.65 -109.07 + 2195 266 57 36.14 -111.24 + 2196 268 57 36.15 -109.55 + 2197 265 57 36.71 -112.22 + 2198 267 57 36.73 -110.25 + 2199 264 57 36.24 -112.69 + 2200 264 58 35.53 -113.43 + 2201 264 59 34.58 -113.18 + 2202 267 58 35.79 -110.51 + 2203 268 57 36.92 -109.09 + 2204 268 57 36.47 -109.15 + 2205 26 55 37.94 23.94 + 2206 307 73 21.77 -72.27 + 2207 161 32 59.91 150.72 + 2208 170 39 53.17 158.45 + 2209 82 31 60.95 76.48 + 2210 378 39 53.43 -6.25 + 2211 375 45 47.48 -8.54 + 2212 31 124 -26.14 28.23 + 2213 3 44 49.02 2.53 + 2214 8 49 43.65 7.21 + 2215 381 53 40.47 -3.58 + 2216 358 56 36.97 -25.17 + 2217 375 55 38.77 -9.13 + 2218 10 47 45.63 8.72 + 2219 72 25 66.53 66.67 + 2220 109 36 56.28 101.75 + 2221 112 40 52.27 104.32 + 2222 145 44 48.53 135.19 + 2223 38 62 32.00 34.90 + 2224 135 56 37.47 126.43 + 2225 136 57 36.72 127.50 + 2226 135 60 33.50 126.48 + 2227 140 60 33.58 130.45 + 2228 112 84 11.60 104.86 + 2229 370 86 9.57 -13.62 + 2230 60 118 -20.89 55.53 + 2231 293 62 31.86 -86.01 + 2232 286 55 38.59 -92.16 + 2233 252 47 45.42 -123.82 + 2234 319 81 13.75 -60.95 + 2235 319 83 12.00 -61.78 + 2236 305 105 -8.37 -74.57 diff --git a/parm/product/bufr_stalist.meteo.gfs b/parm/product/bufr_stalist.meteo.gfs index 51d4108bace..0f3f76f23b1 100755 --- a/parm/product/bufr_stalist.meteo.gfs +++ b/parm/product/bufr_stalist.meteo.gfs @@ -111,9 +111,9 @@ 000240 46.42N 86.65W KP53 11 MUNISING MI 187 Usr Rqst 10-11 000241 39.16N 89.67W K3LF 11 LITCHFIELD IL 210 Usr Rqst 11-11 000247 44.05N 101.60W PHP 10 PHILIP_AIRPORT, SD 673 Weiss 2-99 -000251 43.58N 86.24W KLDM 12 LUDINGTON MI 244 KGRR 1-02 -000252 43.43N 85.30W KRQB 12 BIG RAPIDS MI 276 KGRR 1-02 -000253 43.37N 84.44W KMOP 12 MOUNT PLEASANT MI 213 KGRR 1-02 +000251 43.96N 86.41W KLDM 12 LUDINGTON MI 244 KGRR 1-02 +000252 43.73N 85.51W KRQB 12 BIG RAPIDS MI 276 KGRR 1-02 +000253 43.62N 84.74W KMOP 12 MOUNT PLEASANT MI 213 KGRR 1-02 000254 34.38N 104.23W FTSR 12 FORT SUMNER NM 1231 Usr Rqst 4-02 000255 46.70N 48.00W WTRO 21 WHITE ROSE OIL RIG 0 Usr Rqst 12-03 000256 47.20N 55.10W MRYS 00 MARYSTOWN NF 0 Usr Rqst 12-03 @@ -2113,3 +2113,124 @@ 999913 15.51S 128.15E WYN 00 Wyndham aerodrome Australia 14 Usr Rqst 1-19 999914 57.48N 7.36W EGPL 00 Benbecula, Scotland, UK 6 Usr Rqst 1-19 999918 54.38N 10.13E EDHK 11 KIEL-HOLTENAU AIRPORT -999 Usr Rqst 1-17 +000530 41.24N 72.12W LIW 21 NEAR LONG ISL TWIN FK NY 9999 Usr Rqst 5-23 +000531 32.70N 80.00W CEA 11 CHARLESTON EXEC ARPT SC 6 Usr Rqst 5-23 +000532 47.91N 89.14W WINM 11 WINDIGO MI 293 Usr Rqst 5-23 +000533 46.67N 88.35W HERM 11 HERMAN MI 530 Usr Rqst 5-23 +000534 45.24N 122.77W KUAO 11 AURORA AIRPORT OR 59 Usr Rqst 5-23 +000535 20.79N 156.01W PHHN 11 HANA AIRPORT HI 24 Usr Rqst 5-23 +000536 20.71N 156.25W HLKL 11 HALEAKALA SUMMIT HI 3055 Usr Rqst 5-23 +000537 19.82N 155.47W MKEA 11 MAUNA KEA SUMMIT HI 4207 Usr Rqst 5-23 +000538 22.04N 159.78W PHBK 11 BARKING SANDS HI 7 Usr Rqst 5-23 +000539 22.27N 155.86W PHUP 11 UPOLU AIRPORT HI 29 Usr Rqst 5-23 +000540 19.47N 155.59W MLOA 11 MAUNA LOA SUMMIT HI 4169 Usr Rqst 5-23 +000541 28.20N 177.38W PMDY 11 HENDERSON FIELD HI 5 Usr Rqst 5-23 +000542 22.21N 159.44W HI01 11 PRINCEVILLE AIRPORT HI 105 Usr Rqst 5-23 +000543 21.45N 157.77W PHNG 11 KANEOHE BAY MCAS HI 7 Usr Rqst 5-23 +000544 19.10N 155.57W SCPE 11 SOUTH CAPE HI 355 Usr Rqst 5-23 +000545 38.43N 79.84W GBO 11 GREEN BANK OBSERVATORY WV 807 Usr Rqst 5-23 +000546 44.85N 74.33W MALO 11 MALONE NY 240 Usr Rqst 5-23 +000547 44.56N 73.33W CLCR 21 COLCHESTER REEF VT 29 Usr Rqst 5-23 +000548 45.00N 73.33W ALBU 21 ALBAUGH VT 38 Usr Rqst 5-23 +000549 43.60N 72.82W KLGN 11 KILLINGTON PEAK VT 1289 Usr Rqst 5-23 +000550 44.59N 72.92W NUND 11 NORTH UNDERHILL VT 315 Usr Rqst 5-23 +000551 43.98N 73.03W RIPT 11 RIPTON VT 512 Usr Rqst 5-23 +000552 33.90N 87.31W KJFX 11 JASPER AL 100 Usr Rqst 5-23 +000553 32.91N 85.96W KALX 11 ALEXANDER CITY AL 209 Usr Rqst 5-23 +000554 32.70N 80.00W KJZI 11 CHARLESTON EXEC ARPT SC 6 Usr Rqst 5-23 +000555 42.57N 77.71W KDSV 11 DANSVILLE NY 215 Usr Rqst 5-23 +000556 28.85N 80.23W NCPE 21 NORTH CAPE FL 9999 Usr Rqst 5-23 +000557 30.02N 80.25W JAXX 21 OFF JACKSONVILLE FL 9999 Usr Rqst 5-23 +000558 29.80N 87.50W PENX 21 OFF PENSACOLA FL 9999 Usr Rqst 5-23 +000559 28.50N 83.75W TPXX 21 OFF TAMPA FL 9999 Usr Rqst 5-23 +000560 29.25N 84.20W TLHX 21 OFF TALLAHASSEE FL 9999 Usr Rqst 5-23 +000561 29.80N 80.60W DABX 21 OFF DAYTONA BEACH FL 9999 Usr Rqst 5-23 +000562 29.77N 86.03W PANX 21 OFF PANAMA CITY FL 9999 Usr Rqst 5-23 +000563 44.64N 123.06W KS12 11 ALBANY OR 60 Usr Rqst 5-23 +000564 45.52N 121.59W PRKD 11 PARKDALE OR 526 Usr Rqst 5-23 +000565 46.10N 124.50W OC29 21 BUOY 29 OR 9999 Usr Rqst 5-23 +000566 44.60N 124.50W OC50 21 BUOY 50 OR 9999 Usr Rqst 5-23 +000567 45.90N 125.80W OC89 21 BUOY 89 OR 9999 Usr Rqst 5-23 +000568 37.63N 84.33W KRGA 10 CENTAL KY REGION ARPT KY 305 Usr Rqst 8-24 +000569 38.81N 106.12W AEJ 10 BUENA VISTA AIRPORT CO 2422 Usr Rqst 8-24 +000570 40.38N 105.52W ESTP 10 ESTES PARK CO 2295 Usr Rqst 8-24 +000571 38.43N 105.10W CANO 10 CANON CITY CO 1658 Usr Rqst 8-24 +000572 41.53N 85.79W GSH 10 GOSHEN MUNICIPAL ARPT IN 252 Usr Rqst 8-24 +000573 41.64N 85.08W ANQ 10 ANGOLA AIRPORT IN 303 Usr Rqst 8-24 +000574 38.00N 101.75W SYSE 10 SYRACUSE, KS KS 1013 Usr Rqst 8-24 +000575 42.18N 71.17W OWD 10 NORWOOD MEMORIAL ARPT MA 15 Usr Rqst 8-24 +000576 42.55N 71.76W FIT 10 FITCHBURG_(ASOS) MA 106 Usr Rqst 8-24 +000577 42.59N 72.60W GRNF 10 GREENFIELD MA 74 Usr Rqst 8-24 +000578 42.62N 70.67W GLOU 10 GLOUCESTER MA 16 Usr Rqst 8-24 +000579 41.87N 71.02W TAN 10 TAUNTON_(ASOS) MA 13 Usr Rqst 8-24 +000580 42.33N 72.63W NTHH 10 NORTHHAMPTON MA 41 Usr Rqst 8-24 +000581 39.41N 77.37W FDK 10 FREDERICK_MUNI_APT MD 92 Usr Rqst 8-24 +000582 39.17N 77.17W GAI 10 GAITHERSBURG MD 116 Usr Rqst 8-24 +000583 43.99N 70.95W IZG 10 FRYEBERG_(ASOS) ME 135 Usr Rqst 8-24 +000584 43.56N 83.34W NERA 10 NEW ERA, MI MI 230 Usr Rqst 8-24 +000585 42.22N 83.75W ARB 10 ANN_ARBOR_MUNI_(ASOS) MI 256 Usr Rqst 8-24 +000586 47.22N 93.52W GPZ 10 GRAND_RAPIDS(AWOS) MN 413 Usr Rqst 8-24 +000587 45.70N 92.95W ROS 10 RUSH_CITY MN 281 Usr Rqst 8-24 +000588 45.16N 93.84W 8Y2 10 BUFFALO_MUNI_ARPT MN 295 Usr Rqst 8-24 +000589 42.15N 93.22W ANE 10 MINNEAPOLIS/BLAINE MN 278 Usr Rqst 8-24 +000590 47.84N 90.38W CKC 10 GRAND_MARAIS/COOK_CO MN 548 Usr Rqst 8-24 +000591 46.48N 108.54W KRPX 10 ROUNDUP MT 1064 Usr Rqst 8-24 +000592 44.03N 71.49W KCMA 10 KANCAMAGUS PASS NH 872 Usr Rqst 8-24 +000593 36.45N 105.67W SKX 10 TAOS_MUNI_APT(AWOS) NM 2161 Usr Rqst 8-24 +000594 35.88N 106.27W LAM 10 LOS_ALAMOS_AIRPORT NM 2186 Usr Rqst 8-24 +000595 41.21N 81.25W 29G 10 RAVENNA_PORTAGE_CO_APT NM 365 Usr Rqst 8-24 +000596 40.20N 84.53W VES 10 VERSAILLES_DARK_CO_APT OH 307 Usr Rqst 8-24 +000597 39.93N 76.88W THV 10 YORK_AIRPORT_(ASOS) PA 148 Usr Rqst 8-24 +000598 40.23N 75.55W PTTO 10 POTTSTOWN, PA PA 92 Usr Rqst 8-24 +000599 42.89N 73.04W WDFD 10 WOODFORD ST PARK VT 703 Usr Rqst 8-24 +000600 46.55N 90.92W ASWI 10 ASHLAND AIRPORT WI 251 Usr Rqst 8-24 +000605 38.27N 78.90W SHD 10 STAUNTON/SHENANDOAH VA 366 Usr Rqst 8-24 +000615 37.51N 122.50W KHAF 10 HALF MOON BAY APT CA 20 Usr Rqst 8-24 +000616 40.62N 111.99W KSVR 10 SOUTH VALLEY APT UT 1404 Usr Rqst 8-24 +001007 34.85N 111.79W KSEZ 10 SEDONA_AIRPORT AZ 1472 Usr Rqst 8/24 +001008 34.26N 111.34W KPAN 10 PAYSON_AIRPORT AZ 1572 Usr Rqst 8/24 +001009 34.13N 109.31W KJTC 10 SPRINGERVILLE MUNI APT AZ 2150 Usr Rqst 8/24 +001010 35.31N 112.19W KCMR 10 WILLIAMS AZ 2039 Usr Rqst 8/24 +001011 35.65N 109.07W KRQE 10 WINDOW_ROCK_(ASOS) AZ 2054 Usr Rqst 8/24 +001012 36.14N 111.24W TUBA 10 TUBA CITY AZ 1499 Usr Rqst 8/24 +001013 36.15N 109.55W CHN 10 CHINLE AZ 1687 Usr Rqst 8/24 +001014 36.71N 112.22W JLK 10 JACOB LAKE AZ 2897 Usr Rqst 8/24 +001015 36.73N 110.25W KAYA 10 KAYENTA AZ 1716 Usr Rqst 8/24 +001016 36.24N 112.69W SUP 10 SUPAI AZ 1012 Usr Rqst 8/24 +001017 35.53N 113.43W PCHS 10 PEACH SPRINGS AZ 1478 Usr Rqst 8/24 +001018 34.58N 113.18W BDD 10 BAGDAD AZ 1189 Usr Rqst 8/24 +001019 35.79N 110.51W SMA 10 SECOND MESA AZ 1737 Usr Rqst 8/24 +001020 36.92N 109.09W TNP 10 TEEC NOS POS AZ 1592 Usr Rqst 8/24 +001021 36.47N 109.15W BOP 10 BUFFALO PASS AZ 2496 Usr Rqst 8/24 +001500 37.94N 23.94E LGAV 11 ATHENS, GREECE 94 Usr Rqst 5-23 +001501 21.77N 72.27W MBPV 11 PROVIDENCIALES, T_C 9 Usr Rqst 5-23 +001502 59.91N 150.72E UHMM 11 MAGADAN, RUSSIA 175 Usr Rqst 5-23 +001503 53.17N 158.45E UHPP 11 PETROPAVLOVSK, RUSSIA 39 Usr Rqst 5-23 +001504 60.95N 76.48E USNN 11 NIZHNEVARTOVSK, RUSSIA 54 Usr Rqst 5-23 +039690 53.43N 6.25W EIDW 11 DUBLIN, IRELAND 68 Usr Rqst 5-23 +066700 47.48N 8.54W LSZH 11 ZURICH, SWITZERLAND 426 Usr Rqst 5-23 +068368 26.14S 28.23E FAJS 11 JOHANNESBURG / TAMBO 1695 Usr Rqst 5-23 +071570 49.02N 2.53E LFPG 11 PARIS/ROISSY-EN-FRANCE 119 Usr Rqst 5-23 +076900 43.65N 7.21E LFMN 11 NICE 4 Usr Rqst 5-23 +082210 40.47N 3.58W LEMD 11 MADRID 631 Usr Rqst 5-23 +085150 36.97N 25.17W LPAZ 11 SANTA MARIA ISL, PORTUGAL 96 Usr Rqst 5-23 +085360 38.77N 9.13W LPPT 11 LISBON, PORTUGAL 114 Usr Rqst 5-23 +160660 45.63N 8.72E LIMC 11 MILANO/MILAN 234 Usr Rqst 5-23 +233300 66.53N 66.67E USDD 11 SALEKHARD, RUSSIA 15 Usr Rqst 5-23 +303090 56.28N 101.75E UIBB 11 BRATSK, RUSSIA 411 Usr Rqst 5-23 +307100 52.27N 104.32E UIII 11 DZERZHINSK, RUSSIA 467 Usr Rqst 5-23 +317350 48.53N 135.19E UHHH 11 KHABAROVSK, RUSSIA 75 Usr Rqst 5-23 +401800 32.00N 34.90E LLBG 11 TEL AVIV, ISRAEL 40 Usr Rqst 5-23 +471130 37.47N 126.43E RKSI 11 SEOUL INCHEON, SOUTH KOREA 7 Usr Rqst 5-23 +471280 36.72N 127.50E RKTU 11 CHONGIU, SOUTH KOREA 53 Usr Rqst 5-23 +471820 33.50N 126.48E RKPC 11 CHEJU, SOUTH KOREA 36 Usr Rqst 5-23 +478080 33.58N 130.45E RJFF 11 FUKUOKA, JAPAN 9 Usr Rqst 5-23 +489910 11.60N 104.86E VDPP 11 PHNOM-PENH, CAMBODIA 10 Usr Rqst 5-23 +618320 9.57N 13.62W GUCY 11 CONAKRY, GUINEA 26 Usr Rqst 5-23 +619800 20.89S 55.53E FMEE 11 ROLAND GARROS, REUNION 20 Usr Rqst 5-23 +722267 31.86N 86.01W KTOI 11 TROY_MUNICIPAL AL 121 Usr Rqst 5-23 +724458 38.59N 92.16W KJEF 11 JEFFERSON CITY ARPT MO 169 Usr Rqst 5-23 +726963 45.42N 123.82W KTMK 11 TILLAMOOK OR 11 Usr Rqst 5-23 +789480 13.75N 60.95W TLPL 11 HEWANORRA, ST LUCIA 3 Usr Rqst 5-23 +789580 12.00N 61.78W TGPY 11 ST GEORGES, GRENADA 6 Usr Rqst 5-23 +845150 8.37S 74.57W SPCL 11 PUCALLPA, PERU 148 Usr Rqst 5-23 From 8b46eaf3c397505fcef14393b765751bbb5b2abb Mon Sep 17 00:00:00 2001 From: "Bo.Cui" Date: Tue, 25 Feb 2025 11:57:24 -0500 Subject: [PATCH 14/14] Gulf of Mexico name changes in bufr station list --- parm/product/bufr_stalist.meteo.gfs | 56 ++++++++++++++--------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/parm/product/bufr_stalist.meteo.gfs b/parm/product/bufr_stalist.meteo.gfs index 0f3f76f23b1..5d91697b4e1 100755 --- a/parm/product/bufr_stalist.meteo.gfs +++ b/parm/product/bufr_stalist.meteo.gfs @@ -241,12 +241,12 @@ 000397 46.54N 87.39W MQTM 11 MARQUETTE MI -999 NAM MERGE 1-16 000398 46.68N 85.97W GRMM 11 GRAND MARAIS MI -999 NAM MERGE 1-16 000399 46.61N 88.91W KTNM 11 KENTON MI -999 NAM MERGE 1-16 -000401 28.00N 87.00W S#7 22 GULF OF MEXICO 0 FOUS(G2GFC) 3-93 -000402 28.20N 93.70W S#8 20 GULF OF MEXICO 0 FOUS(G2GFH) 3-93 -000403 28.50N 92.30W S#9 22 GULF OF MEXICO 0 FOUS(G2GFI) 3-93 -000404 27.90N 91.00W S#A 22 GULF OF MEXICO 0 FOUS(G2GFJ) 3-93 -000405 28.00N 89.00W S#B 20 GULF OF MEXICO 0 FOUS(G2GFK) 3-93 -000406 28.00N 85.00W S#C 22 GULF OF MEXICO 0 3-93 +000401 28.00N 87.00W S#7 22 GULF OF AMERICA 0 FOUS(G2GFC) 3-93 +000402 28.20N 93.70W S#8 20 GULF OF AMERICA 0 FOUS(G2GFH) 3-93 +000403 28.50N 92.30W S#9 22 GULF OF AMERICA 0 FOUS(G2GFI) 3-93 +000404 27.90N 91.00W S#A 22 GULF OF AMERICA 0 FOUS(G2GFJ) 3-93 +000405 28.00N 89.00W S#B 20 GULF OF AMERICA 0 FOUS(G2GFK) 3-93 +000406 28.00N 85.00W S#C 22 GULF OF AMERICA 0 3-93 000501 31.00N 79.00W 3J2 20 ATLANTIC, BLAKE PLATEAU 0 FOUS 3-93 000502 48.00N 65.00W AFA 20 ATLANTIC, CHALEUR BAY 0 FOUS 3-93 000503 39.30N 111.46W MTSL 12 MANTI SKYLINE UT 3048 Usr Rqst 2-18 @@ -433,8 +433,8 @@ 000771 44.89N 72.23W KEFK 11 NEWPORT, VT 284 Usr Rqst 2-16 000772 43.46N 101.50W LGVS 11 LONG VALLEY, SD 753 Usr Rqst 2-16 000773 43.99N 103.79W DFDS 11 DEERFIELD, SD 1847 Usr Rqst 2-16 -000774 29.30N 84.04W S#D 21 FAR NE GULF OF MEXICO 0 Usr Rqst 9-16 -000775 27.90N 96.64W S#E 21 FAR WEST GULF OF MEXICO 0 Usr Rqst 9-16 +000774 29.30N 84.04W S#D 21 FAR NE GULF OF AMERICA 0 Usr Rqst 9-16 +000775 27.90N 96.64W S#E 21 FAR WEST GULF OF AMERICA 0 Usr Rqst 9-16 000776 34.31N 84.42W KCNI 11 CANTON/CHEROKEE CTY, GA 372 Usr Rqst 6-16 000777 34.27N 83.83W KGVL 11 GAINESVILLE, GA 381 Usr Rqst 6-16 000778 41.34N 84.43W KDFI 11 DEFIANCE_MEMORIAL_APRT, OH 216 Usr Rqst 2-16 @@ -685,11 +685,11 @@ 041010 28.90N 78.50W B#4 20 BUOY CANAVERAL EAST ATL 0 NASA-JSC 3-93 041029 32.80N 79.62W B#11 20 BUOY CAPERS NEARSHORE ATL 0 Usr Rqst 11-19 041033 32.28N 80.41W FRP2 20 BUOY FRIPP NEARSHORE ATL 0 Usr Rqst 11-19 -042001 25.90N 89.70W B#5 22 BUOY MID GULF MEX 0 FOUS(G2GFD) 3-93 -042002 25.90N 93.60W B#6 22 BUOY W GULF MEX 0 FOUS(G2GFE) 3-93 -042003 25.90N 85.90W B#7 22 BUOY E GULF MEX 0 NASA-JSCFOUS(B) -042019 27.90N 95.00W B#8 22 BUOY LANELLE GULF OF MEX 0 3-93 -042020 27.00N 96.50W B#9 22 BUOY EILEEN GULF OF MEX 0 3-93 +042001 25.90N 89.70W B#5 22 BUOY MID GULF AMR 0 FOUS(G2GFD) 3-93 +042002 25.90N 93.60W B#6 22 BUOY W GULF AMR 0 FOUS(G2GFE) 3-93 +042003 25.90N 85.90W B#7 22 BUOY E GULF AMR 0 NASA-JSCFOUS(B) +042019 27.90N 95.00W B#8 22 BUOY LANELLE GULF OF AMR 0 3-93 +042020 27.00N 96.50W B#9 22 BUOY EILEEN GULF OF AMR 0 3-93 044004 38.50N 70.70W C7H 20 BUOY HOTEL ATL 0 FOUS 3-93 044005 42.60N 68.60W 9B6 20 BUOY GULF OF ME ATL 0 FOUS 3-93 044007 43.53N 70.14W B#PM 20 BUOY NR PORTLAND ME ATL 0 Usr Rqst 2-18 @@ -754,21 +754,21 @@ 081810 41.28N 2.07E LEBL 10 BARCELONA 6 Baker/UPS 11-08 082220 40.42N 4.25W 11 MADRID, SPAIN (4NASA) 820 082840 39.50N 0.47W LEVC 10 VALENCIA 62 Baker/UPS 11-08 -090001 36.50N 100.80W G#1 12 PERRYTON TX 893 GUFMEX 12-93 -090002 30.30N 101.70W G#2 12 SHEFFIELD TX 726 GUFMEX 12-93 -090003 27.70N 102.50W G#3 12 MUZQUIZ, COAH MX 1247 GUFMEX 12-93 -090004 30.50N 99.10W G#4 12 FREDRICKSBURG TX 504 GUFMEX 12-93 -090005 28.40N 98.70W G#5 12 COTULLA TX 98 GUFMEX 12-93 -090006 26.30N 98.80W G#6 12 RIO GRANDE CITY TX 53 GUFMEX 12-93 -090007 24.40N 97.40W G#7 22 W. GULF OF MEXICO GFMX#7 0 GUFMEX 12-93 -090008 25.90N 95.30W G#8 20 W. GULF OF MEXICO GFMX#8 0 GUFMEX 12-93 -090009 24.50N 94.40W G#9 22 W. GULF OF MEXICO GFMX#9 0 GUFMEX 12-93 -090010 23.30N 95.60W G#A 22 W. GULF OF MEXICO GFMX#10 0 GUFMEX 12-93 -090011 18.30N 94.20W G#B 10 COATZACOALCOS, V.C. MX 0 GUFMEX 12-93 -090012 21.40N 93.10W G#C 20 BAY OF CAMPECHE GFMX#12 0 GUFMEX 12-93 -090013 23.30N 91.60W G#D 22 GULF OF MEXICO GFMX#13 0 GUFMEX 12-93 -090014 23.70N 88.70W G#E 22 SE GULF OF MEXICO GFMX#14 0 GUFMEX 12-93 -090015 23.00N 85.00W G#F 20 SE GULF OF MEXICO GFMX#15 0 GUFMEX 12-93 +090001 36.50N 100.80W G#1 12 PERRYTON TX 893 GUFAMR 12-93 +090002 30.30N 101.70W G#2 12 SHEFFIELD TX 726 GUFAMR 12-93 +090003 27.70N 102.50W G#3 12 MUZQUIZ, COAH MX 1247 GUFAMR 12-93 +090004 30.50N 99.10W G#4 12 FREDRICKSBURG TX 504 GUFAMR 12-93 +090005 28.40N 98.70W G#5 12 COTULLA TX 98 GUFAMR 12-93 +090006 26.30N 98.80W G#6 12 RIO GRANDE CITY TX 53 GUFAMR 12-93 +090007 24.40N 97.40W G#7 22 W. GULF OF AMERICA GFAM#7 0 GUFAMR 12-93 +090008 25.90N 95.30W G#8 20 W. GULF OF AMERICA GFAM#8 0 GUFAMR 12-93 +090009 24.50N 94.40W G#9 22 W. GULF OF AMERICA GFAM#9 0 GUFAMR 12-93 +090010 23.30N 95.60W G#A 22 W. GULF OF AMERICA GFAM#10 0 GUFAMR 12-93 +090011 18.30N 94.20W G#B 10 COATZACOALCOS, V.C. MX 0 GUFAMR 12-93 +090012 21.40N 93.10W G#C 20 BAY OF CAMPECHE GFAM#12 0 GUFAMR 12-93 +090013 23.30N 91.60W G#D 22 GULF OF AMERICA GFAM#13 0 GUFAMR 12-93 +090014 23.70N 88.70W G#E 22 SE GULF OF AMERICA GFAM#14 0 GUFAMR 12-93 +090015 23.00N 85.00W G#F 20 SE GULF OF AMERICA GFAM#15 0 GUFAMR 12-93 090016 23.50N 98.00W G#G 12 NORTH OF TAMPICO, TAMPS. 77 8-97 099001 46.02N 91.45W HYR 10 HAYWARD_MUNI_AIRPOR WI 370 J. Eise 2-99 099002 38.83N 82.80W PMH 10 PORTSMOUTH OH 186 DiStefano 2-99