Skip to content

Commit cf7558a

Browse files
committed
fix: no need to do something different for latlon projection
This also has the problem that it does not check the point modification time
1 parent cf1ad82 commit cf7558a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/e3sm_quickview/plugins/eam_projection.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -310,14 +310,6 @@ def RequestData(self, request, inInfo, outInfo):
310310
else:
311311
outData.ShallowCopy(inData)
312312

313-
if self.project == 0:
314-
# Use cache to move mtime forward when needed
315-
if self.cached_points is None:
316-
self.cached_points = vtkPoints()
317-
self.cached_points.ShallowCopy(inData.GetPoints())
318-
319-
outData.SetPoints(self.cached_points)
320-
return 1
321313
if self.cached_points and self.cached_points.GetMTime() >= max(
322314
inData.GetPoints().GetMTime(), self.GetMTime()
323315
):

0 commit comments

Comments
 (0)