mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
Create and populate a glm_points array
Also create an object that is an instance of one of the data values in the response array.
This commit is contained in:
parent
0151efccc0
commit
8cff0278d8
1 changed files with 5 additions and 1 deletions
|
@ -121,7 +121,11 @@
|
||||||
"ax.scatter([point.x for point in glm_points],\n",
|
"ax.scatter([point.x for point in glm_points],\n",
|
||||||
" [point.y for point in glm_points],\n",
|
" [point.y for point in glm_points],\n",
|
||||||
" transform=ccrs.Geodetic(),marker=\"+\",facecolor='red')\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]"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue