Changeset 19885
- Timestamp:
- 12/12/15 19:37:37 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_unit.js
r19875 r19885 15 15 var ymin,ymax; 16 16 var zmin,zmax; 17 var datamin,datamax ;17 var datamin,datamax,datadelta; 18 18 var scale; 19 19 20 20 //Process data and model 21 var meshresults = processmesh(md,data,options); 21 var meshresults; 22 if (data["1"] instanceof Float64Array) { 23 meshresults = processmesh(md,data["1"],options); 24 } 25 else { 26 meshresults = processmesh(md,data,options); 27 } 22 28 var x = meshresults[0]; 23 29 var y = meshresults[1]; … … 27 33 var isplanet = meshresults[5]; 28 34 29 var dataresults = processdata(md,data,options); 30 var data2 = dataresults[0]; 31 var datatype = dataresults[1]; 35 var dataresults, data2, datatype; 36 if (data["1"] instanceof Float64Array) { 37 dataresults = processdata(md,data["1"],options); 38 data2 = dataresults[0]; 39 datatype = dataresults[1]; 40 } 41 else { 42 dataresults = processdata(md,data,options); 43 data2 = dataresults[0]; 44 datatype = dataresults[1]; 45 } 32 46 //}}} 33 47 … … 45 59 zmin = zlim[0]; 46 60 zmax = zlim[1]; 47 var caxis= options.getfieldvalue('caxis',[ArrayMin(data),ArrayMax(data)]); 48 datamin = caxis[0]; 49 datamax = caxis[1]; 61 var caxis; 50 62 51 63 //Compute scaling: … … 61 73 node["drawOrder"] = 0; 62 74 63 //some defaults:64 texcoords.itemSize = 2;65 66 75 switch(datatype){ 67 76 … … 115 124 116 125 vertices.itemSize = 3; 117 var cmap=options.getfieldvalue('cmap','jet'); 118 for(var i = 0; i < x.length; i++){ 119 vertices[vertices.length] = x[i]; 120 vertices[vertices.length] = y[i]; 121 vertices[vertices.length] = z[i]; 122 123 texcoords[texcoords.length] = 0.5; 124 texcoords[texcoords.length] = (data[i] - datamin) / (datamax - datamin); 126 var cmap=options.getfieldvalue('cmap','jet'); 127 //If handling movie data, compute vertices once and texcoords for each movie frame 128 if (data["1"] instanceof Float64Array) { 129 for(var i = 0; i < x.length; i++){ 130 vertices[vertices.length] = x[i]; 131 vertices[vertices.length] = y[i]; 132 vertices[vertices.length] = z[i]; 133 } 134 135 var datasubarray; 136 for(var i = 0; i < data.length-1; i++){ 137 //Prevent evaluation of datasubarray min/max if caxis exists 138 datasubarray = data[String(i+1)]; 139 if (options.exist('caxis')) { 140 caxis = options.getfieldvalue('caxis'); 141 } 142 else { 143 caxis = [ArrayMin(datasubarray),ArrayMax(datasubarray)]; 144 } 145 datamin = caxis[0]; 146 datamax = caxis[1]; 147 datadelta = datamax - datamin; 148 149 //Precalculate arrays for each datasubarray 150 texcoords[i] = []; 151 texcoords[i].itemSize = 2; 152 for(var j = 0; j < x.length; j++){ 153 texcoords[i][texcoords[i].length] = 0.5; 154 texcoords[i][texcoords[i].length] = (datasubarray[j] - datamin) / datadelta; 155 } 156 } 157 158 //Initialize movie loop 159 node["movieInterval"] = 1000 / options.getfieldvalue('moviefps',5); 160 node["movieLength"] = data.length; 161 node["movieFrame"] = 0; 162 node["movieHandler"] = function () { 163 node["movieFrame"] = (node["movieFrame"] + 1) % (node["movieLength"]-1); 164 var array = [node["arrays"][0],node["arrays"][1][node["movieFrame"]],node["arrays"][2]]; 165 node["buffers"] = initBuffers(gl,array); 166 if (true) { 167 setTimeout(node["movieHandler"], node["movieInterval"]); 168 } 169 }; 170 setTimeout(node["movieHandler"], node["movieInterval"]); 125 171 } 126 172 else { 173 caxis = options.getfieldvalue('caxis',[ArrayMin(data),ArrayMax(data)]); 174 datamin = caxis[0]; 175 datamax = caxis[1]; 176 datadelta = datamax - datamin; 177 texcoords.itemSize = 2; 178 for(var i = 0; i < x.length; i++){ 179 vertices[vertices.length] = x[i]; 180 vertices[vertices.length] = y[i]; 181 vertices[vertices.length] = z[i]; 182 183 texcoords[texcoords.length] = 0.5; 184 texcoords[texcoords.length] = (data[i] - datamin) / datadelta; 185 } 186 } 187 127 188 //linearize the elements array: 128 189 indices = indices.concat.apply(indices, elements); … … 149 210 150 211 /*Initalize buffers: */ 151 node["arrays"] = [vertices, texcoords, indices]; 152 node["buffers"] = initBuffers(gl,node["arrays"]); 212 if (data["1"] instanceof Float64Array) { 213 node["arrays"] = [vertices, texcoords, indices]; 214 node["buffers"] = initBuffers(gl,[node["arrays"][0],node["arrays"][1][0],node["arrays"][2]]); 215 } 216 else { 217 node["arrays"] = [vertices, texcoords, indices]; 218 node["buffers"] = initBuffers(gl,node["arrays"]); 219 } 153 220 }
Note:
See TracChangeset
for help on using the changeset viewer.