Changes between Version 2 and Version 3 of installSunpy
- Timestamp:
- 05/25/22 15:38:32 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
installSunpy
v2 v3 81 81 }}} 82 82 83 84 Another example search, this one using units and sampling : 85 86 {{{ 87 from sunpy.net import Fido, attrs as a 88 import astropy.units as u 89 90 result = Fido.search(a.Instrument.aia, a.Wavelength(30.4 * u.nm), a.Time('2022/02/23 19:00:00', '2022/02/23 21:00:00'), a.Sample(0.5*u.hour)) 91 92 print(result.show("Provider","Source","fileurl")) 93 }}} 94 95