replace geodetic with plateCarree

This commit is contained in:
srcarter3 2020-09-04 15:57:39 -06:00 committed by GitHub
parent af73c9a0d7
commit ce780ef933
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
]
}