We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe8c6a7 commit 99017e7Copy full SHA for 99017e7
1 file changed
docs/src/tutorials/jwst-image-scale-bar.md
@@ -39,10 +39,7 @@ A mirror of the JWST initial release data is also hosted on AWS. We'll use this
39
```julia
40
using Downloads
41
42
-fname = Downloads.download(
43
- "https://stpubdata-jwst.stsci.edu/ero/jw02731/L3/t/"*
44
- "jw02731-o001_t017_nircam_clear-f187n_i2d.fits"
45
-)
+fname = Downloads.download("https://mast.stsci.edu/api/v0.1/Download/file?bundle_name=MAST_2025-11-29T2146.sh&uri=mast:JWST/product/jw02731-o001_t017_nircam_clear-f187n_i2d.fits")
46
```
47
48
## Loading the image
@@ -59,10 +56,10 @@ carina_full = load(fname); # semi-colon prevents displaying the image
59
56
60
57
Let's check the resolution of the image:
61
58
62
-size(carina)
+size(carina_full)
63
64
65
-(14436, 8568)
+(14340, 8582)
66
67
Wow, that's over 120 megapixels!
68
0 commit comments