diff --git a/edexOsgi/build.edex/esb/data/utility/common_static/base/python/dataaccess/JepRouter.py b/edexOsgi/build.edex/esb/data/utility/common_static/base/python/dataaccess/JepRouter.py index 8d03315b5b..82baeddbb0 100644 --- a/edexOsgi/build.edex/esb/data/utility/common_static/base/python/dataaccess/JepRouter.py +++ b/edexOsgi/build.edex/esb/data/utility/common_static/base/python/dataaccess/JepRouter.py @@ -80,6 +80,8 @@ def getLatLonCoords(gridRequest): @return: a tuple where the first element is a numpy array of lons, and the second element is a numpy array of lats ''' gridGeometry = JavaDataAccessLayer.getGridGeometry(gridRequest.toJavaObj()) + if gridGeometry is None : + return None latlons = LatLonReprojection.getLatLons(gridGeometry) nx = gridGeometry.getGridRange().getSpan(0) ny = gridGeometry.getGridRange().getSpan(1)