From ce780ef933fd6e3887c2b5f2c7058b4c2cbb89f8 Mon Sep 17 00:00:00 2001 From: srcarter3 Date: Fri, 4 Sep 2020 15:57:39 -0600 Subject: [PATCH] replace geodetic with plateCarree --- examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb b/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb index bba8cc0..bb509ac 100644 --- a/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb +++ b/examples/notebooks/GOES_Geostationary_Lightning_Mapper.ipynb @@ -124,7 +124,7 @@ "ax.gridlines()\n", "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", + " transform=ccrs.PlateCarree(),marker=\"+\",facecolor='red')\n", "ax.set_title(str(response[-1].getDataTime().getRefTime()) + \" | \" + ob.getAttribute('source') + \" | \" + edexServer)\n" ] }