Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/math/Interpolation3D.java @ 778:9a828e5a2390
Removed trailing whitespace
gnv-artifacts/trunk@851 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 29 Mar 2010 07:58:51 +0000 |
parents | 44415ae01ddb |
children | c4156275c1e1 |
comparison
equal
deleted
inserted
replaced
777:8009961db1cb | 778:9a828e5a2390 |
---|---|
168 continue; | 168 continue; |
169 } | 169 } |
170 linearToMap.locate(p, center); | 170 linearToMap.locate(p, center); |
171 | 171 |
172 queryBuffer.init( | 172 queryBuffer.init( |
173 center.x - EPS, center.x + EPS, | 173 center.x - EPS, center.x + EPS, |
174 center.y - EPS, center.y + EPS); | 174 center.y - EPS, center.y + EPS); |
175 | 175 |
176 finder.prepare(center); | 176 finder.prepare(center); |
177 spatialIndex.query(queryBuffer, finder); | 177 spatialIndex.query(queryBuffer, finder); |
178 | 178 |
222 y1, z1, | 222 y1, z1, |
223 y2, z2, | 223 y2, z2, |
224 center.y); | 224 center.y); |
225 raster[j] = value; | 225 raster[j] = value; |
226 } | 226 } |
227 // XXX: Adjusted depth to create no gap | 227 // XXX: Adjusted depth to create no gap |
228 // between last value and ground. | 228 // between last value and ground. |
229 depths[i] = z+0.5d*cellHeight; | 229 depths[i] = z+0.5d*cellHeight; |
230 } // down the x/y column | 230 } // down the x/y column |
231 } // all along the track | 231 } // all along the track |
232 | 232 |
233 this.depths = depths; | 233 this.depths = depths; |
234 this.raster = raster; | 234 this.raster = raster; |