Changes between Version 2 and Version 3 of installSunpy


Ignore:
Timestamp:
05/25/22 15:38:32 (2 years ago)
Author:
niles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • installSunpy

    v2 v3  
    8181}}} 
    8282 
     83 
     84Another example search, this one using units and sampling : 
     85 
     86{{{ 
     87from sunpy.net import Fido, attrs as a 
     88import astropy.units as u 
     89 
     90result = 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 
     92print(result.show("Provider","Source","fileurl")) 
     93}}} 
     94 
     95