Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/tutorials/jwst-image-scale-bar.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ println(carina["CTYPE1", Comment])
println(carina["CTYPE1"])
```
```
first axis coordinate type
Axis 1 type
RA---TAN
```

Expand Down Expand Up @@ -152,7 +152,7 @@ b_px = world_to_pix(carina_full, b_deg)
# Measure the angular distance in pixel coordinates
# note: in theory this depends on where in the image we make this calculation
# because the coordinate system is warped
arcmin_px = norm(stop_coord_pix .- start_coord_pix)
arcmin_px = norm(b_px .- a_px)

# Plot our image again
implot(carina; grid=false, clims=Percent(98))
Expand Down
Loading