LCZ ingestion not working when running geogrid

sashank

New member
I did the following:

added to namelist.wps:
geog_data_res = 'cglc_modis_lcz+default', 'cglc_modis_lcz+default',

linked GEOGRID.TBL to GEOGRID.TBL.ARW_LCZ

added the following to GEOGRID.TBL

===============================
name=LANDUSEF
priority = 2
dest_type = categorical
z_dim_name = land_cat
interp_option = cglc_modis_lcz:nearest_neighbor
rel_path = cglc_modis_lcz:CGLC_MODIS_LCZ_global/
===============================

However getting the follwoing warning, and geo file produced did not use lcz params
2025-10-10 12:30:13.773 --- INFORM: For LANDUSEF, couldn't find interpolator sequence for resolution cglc_modis_lcz.
2025-10-10 12:30:13.773 --- INFORM: Using default interpolator sequence for LANDUSEF.
2025-10-10 12:30:13.773 --- INFORM: For LANDUSEF, couldn't find cglc_modis_lcz data source.
2025-10-10 12:30:13.773 --- INFORM: Using default data source for LANDUSEF.
 

Attachments

merging the LANDUSEF into one worked for me


===============================
name=LANDUSEF
priority=1
dest_type=categorical
z_dim_name=land_cat
dominant = LU_INDEX
landmask_water = default:17,21
interp_option = cglc_modis_lcz:nearest_neighbor
interp_option = nlcd2006_9s:average_gcell(0.0)
interp_option = nlcd2006_30s:average_gcell(0.0)
interp_option = nlcd2011_9s:average_gcell(0.0)
interp_option = nlcd2006:nearest_neighbor
interp_option = ssib_10m:four_pt
interp_option = ssib_5m:four_pt
interp_option = modis_15s:nearest_neighbor
interp_option = modis_15s_lake:nearest_neighbor
interp_option = modis_30s:nearest_neighbor
interp_option = modis_30s_lake:nearest_neighbor
interp_option = usgs_30s:nearest_neighbor
interp_option = usgs_2m:four_pt
interp_option = usgs_5m:four_pt
interp_option = usgs_10m:four_pt
interp_option = lowres:average_gcell(4.0)+four_pt
interp_option = default:nearest_neighbor
rel_path = cglc_modis_lcz:CGLC_MODIS_LCZ_global/
rel_path = nlcd2006_9s:nlcd2006_ll_9s/
rel_path = nlcd2006_30s:nlcd2006_ll_30s/
rel_path = nlcd2011_9s:nlcd2011_ll_9s/
rel_path = nlcd2006:nlcd2006_ll_30s/
rel_path = ssib_10m:ssib_landuse_10m/
rel_path = ssib_5m:ssib_landuse_5m/
rel_path = modis_15s:modis_landuse_20class_15s/
rel_path = modis_15s_lake:modis_landuse_20class_15s_with_lakes/
rel_path = modis_30s:modis_landuse_20class_30s/
rel_path = modis_30s_lake:modis_landuse_20class_30s_with_lakes/
rel_path = usgs_30s:landuse_30s/
rel_path = usgs_2m:landuse_2m/
rel_path = usgs_5m:landuse_5m/
rel_path = usgs_10m:landuse_10m/
rel_path = lowres:modis_landuse_20class_5m_with_lakes/
rel_path = default:modis_landuse_20class_30s_with_lakes/
===============================
 
Back
Top