./geogrid.exe 时报错:
Parsed 28 entries in GEOGRID.TBL
Processing domain 1 of 1
ERROR: Could not open ../WPS_GEOG/orogwd_10m/con/index
问题原因:geogrid.exe is looking for orography data in DATA\geog/orogwd_1deg/con/index. However, windows does not allow any directory to be named "con". When geog data are unpacked, this directory gets named "_con", and cannot be renamed to "con". Hence, geogrid.exe fails. (搬运)
解决方式:修改 /WPS-4.1/geogrid 目录下的GEOGRID.TBL文件:
===============================
name = CON
priority = 1
dest_type = continuous
masked=water
fill_missing=0.
interp_option = default:average_4pt
interp_option = lowres:wt_average_4pt
interp_option = 10m:average_4pt
interp_option = 20m:average_4pt
interp_option = 30m:average_4pt
interp_option = 1deg:average_4pt
interp_option = 2deg:average_4pt
rel_path = default:orogwd_10m/_con/
rel_path = lowres:orogwd_1deg/_con/
rel_path = 10m:orogwd_10m/_con/
rel_path = 20m:orogwd_20m/_con/
rel_path = 30m:orogwd_30m/_con/
rel_path = 1deg:orogwd_1deg/_con/
rel_path = 2deg:orogwd_2deg/_con/
===============================
保存、退出、重新运行即可。