Index: doc/wf_DynamicFramework.rst =================================================================== diff -u -r8e8c8301d6ae6c31de64bce82dc7127f71de5ff5 -rfa45bfd6689d4b0d2760051b806085a03eb83ab8 --- doc/wf_DynamicFramework.rst (.../wf_DynamicFramework.rst) (revision 8e8c8301d6ae6c31de64bce82dc7127f71de5ff5) +++ doc/wf_DynamicFramework.rst (.../wf_DynamicFramework.rst) (revision fa45bfd6689d4b0d2760051b806085a03eb83ab8) @@ -145,7 +145,10 @@ + staticmap: Read at startup from map + statictbl: [deprecated] Read at startup from tbl, fallback to map (need Landuse, Soil and TopoId (subcatch) maps)! -+ tbl: Read at startup from tbl and ar runtime fallback to map, lookuptable maps define here. ++ tbl: Read at startup from tbl lookuptable maps define here. ++ tblts: Lookup tables for each timestep, including initial section ++ tblsparse: Lookup tables for each timestep, including initial section. Fills in missing + timestep using previous timestep + timeseries: read map for each timestep + monthlyclim: read a map corresponding to the current month (12 maps in total) + dailyclim: read a map corresponding to the current day of the year (366 maps in total) Index: wflow-py/make_wflow_exe.py =================================================================== diff -u -r368a19849555f5d349fdb349010530b3e7207d95 -rfa45bfd6689d4b0d2760051b806085a03eb83ab8 --- wflow-py/make_wflow_exe.py (.../make_wflow_exe.py) (revision 368a19849555f5d349fdb349010530b3e7207d95) +++ wflow-py/make_wflow_exe.py (.../make_wflow_exe.py) (revision fa45bfd6689d4b0d2760051b806085a03eb83ab8) @@ -35,7 +35,7 @@ ddir = "c:/pcraster4-64/lib/" data_files.append((".", glob.glob(ddir + "/*.dll"))) -print data_files + gdaldata = os.getenv("GDAL_DATA") data_files.append(("./gdal-data", glob.glob(gdaldata + "/*.*"))) Index: wflow-py/make_wflow_openda_exe.py =================================================================== diff -u -r87340010e6826efb0253e7ef4166407a05fd9db5 -rfa45bfd6689d4b0d2760051b806085a03eb83ab8 --- wflow-py/make_wflow_openda_exe.py (.../make_wflow_openda_exe.py) (revision 87340010e6826efb0253e7ef4166407a05fd9db5) +++ wflow-py/make_wflow_openda_exe.py (.../make_wflow_openda_exe.py) (revision fa45bfd6689d4b0d2760051b806085a03eb83ab8) @@ -48,7 +48,11 @@ ddir = "c:/pcraster4-64/lib/" data_files.append((".", glob.glob(ddir + "/*.dll"))) +gdaldata = os.getenv("GDAL_DATA") +data_files.append(("./gdal-data", glob.glob(gdaldata + "/*.*"))) + + print "Copying extra data files..." for dirr in data_files: timake = os.path.join(thename ,dirr[0])