diff --git a/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb b/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb index 523e45f..8421b2b 100644 --- a/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb +++ b/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb @@ -121,7 +121,11 @@ "ax.scatter([point.x for point in glm_points],\n", " [point.y for point in glm_points],\n", " transform=ccrs.Geodetic(),marker=\"+\",facecolor='red')\n", - "ax.set_title(str(response[-1].getDataTime().getRefTime()) + \" | \" + ob.getAttribute('source') + \" | \" + edexServer)" + "ax.set_title(str(response[-1].getDataTime().getRefTime()) + \" | \" + ob.getAttribute('source') + \" | \" + edexServer)\n", + "glm_points = []\n", + "for data in response:\n", + " glm_points.append(data.getGeometry())\n", + "ob = response[0]" ] } ],