Skip to content

Commit

Permalink
reformat broken bullet list
Browse files Browse the repository at this point in the history
  • Loading branch information
kosack committed Feb 22, 2024
1 parent 7d00cf6 commit a52d4ea
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions examples/visualization/camera_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,23 +79,23 @@
# transform to the ``CameraGeometry`` before passing it to the
# ``CameraDisplay``. The following ``Frames`` are supported:
#
# * ``EngineeringCameraFrame`` : similar to CameraFrame, but with the top of
# the camera aligned to the Y axis
# * ``TelescopeFrame``: In *degrees* (on the sky) coordinates relative to the
# telescope Alt/Az pointing position, with the Alt axis pointing upward.
# * ``CameraFrame``: The frame used by SimTelArray, with the top
# of the camera on the x-axis
# * ``EngineeringCameraFrame``: similar to CameraFrame, but with
# the top of the camera aligned to the Y axis
# * ``TelescopeFrame``: In *degrees* (on the sky) coordinates
# relative to the telescope Alt/Az pointing position,
# with the Alt axis pointing upward.
#
# Note the the name of the Frame appears in the lower-right corner


fig, ax = plt.subplots(1, 3, figsize=(15, 4))
CameraDisplay(geom, image=image, ax=ax[0])
CameraDisplay(geom.transform_to(EngineeringCameraFrame()), image=image, ax=ax[1])
CameraDisplay(geom.transform_to(TelescopeFrame()), image=image, ax=ax[2])


######################################################################
# Note the the name of the Frame appears in the lower-right corner
#


######################################################################
# For the rest of this demo, let’s use the ``TelescopeFrame``
#
Expand Down

0 comments on commit a52d4ea

Please sign in to comment.