Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #99 from dstansby/p0lot-coords
Browse files Browse the repository at this point in the history
Use plot_coords in AIA example
  • Loading branch information
dstansby authored Oct 21, 2019
2 parents 2a8e729 + 68faee7 commit 2aee02e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/plot_aia_overplotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,7 @@
aia.plot(ax)
for fline in flines:
coords = fline.coords.transform_to(aia.coordinate_frame)
Tx = coords.Tx.to(u.deg)
Ty = coords.Ty.to(u.deg)
ax.plot(Tx, Ty, transform=transform,
alpha=0.8, linewidth=1, color='black')
ax.plot_coord(coords, alpha=0.8, linewidth=1, color='black')

ax.set_xlim(500, 900)
ax.set_ylim(400, 800)
Expand Down

0 comments on commit 2aee02e

Please sign in to comment.