Changeset 718 in lmdz_wrf
- Timestamp:
- Apr 26, 2016, 4:29:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var_tools.py
r717 r718 19208 19208 Using fortran codes: module_ForInterpolate.F90, module_generic.F90 19209 19209 f2py -m module_ForInterpolate --f90exec=/usr/bin/gfortran-4.7 -c module_ForInterpolate.F90 module_generic.F90 >& run_f2py.log 19210 values= [lonmame],[latname],[fillVal],[resolution],[kind],[lonlatProjfile],[fracd] 19210 values= [lonmame],[latname],[fillVal],[resolution],[kind],[lonlatProjfile],[fracd],[fracs] 19211 19211 [lonname]: name of the longitude variable 19212 19212 [latname]: name of the latitude variable … … 19224 19224 [lonlatProjfile]: file with the lon,lat of the desired projection. 'None' to be computed and written on fly 19225 19225 [fracd]: Percentage of the fractions within perform the first guess search 19226 [fracs]: Number of grid points to perform the syncronization with the file and the computed values 19226 19227 filen= name of the netCDF file 19227 19228 varn= name of the variable … … 19258 19259 Projfile = values.split(',')[5] 19259 19260 fracd = np.float(values.split(',')[6]) 19261 fracs = int(values.split(',')[7]) 19260 19262 19261 19263 if Projfile == 'None': … … 19487 19489 # Error at 150024, 150025, 151709, 153421 19488 19490 print ' ' + fname + ': from:', Ninpts,'re-locating:',Nptsf,'points...' 19489 fracs = 10000019491 # fracs = 100000 19490 19492 if kind == 'Goode': 19491 19493 # newvar,newvarin,newvarinpt,newvarindiff = \
Note: See TracChangeset
for help on using the changeset viewer.