David Stansby

Results 548 comments of David Stansby

I'm managed to get an example down to: ```python import logging from multiprocessing import Pool import multiprocessing_logging if __name__ == "__main__": logger = logging.getLogger() logger.setLevel(getattr(logging, 'DEBUG')) fh = logging.FileHandler('./log.txt') logger.addHandler(fh)...

It's possible to get a nice result by setting the following in `conf.py`. Given the diagrams are static `.png` files, I'm not sure how to change this on the fly...

@mwhv2 just wanted to check what the status of this is? Does it need a fresh review or is it waiting on some more changes?

> @dstansby I think a fresh review would be beneficial (although, I know it is a lot to look through). One last change to consider is the removal or re-working...

Currently examples that use `Fido` are: ``` examples/units_and_coordinates/AIA_limb_STEREO.py examples/units_and_coordinates/SDO_to_STEREO_Coordinate_Conversion.py examples/units_and_coordinates/venus_transit.py examples/map/difference_images.py examples/plotting/magnetogram_active_regions.py examples/plotting/solar_cycle_example.py examples/map_transformations/reprojection_aia_euvi_mosaic.py examples/map_transformations/reprojection_different_observers.py examples/time_series/skip_timeseries_example.py examples/time_series/goes_hek_m25.py examples/time_series/timeseriesmetadata_example.py examples/acquiring_data/downloading_hmi.py examples/acquiring_data/goes_xrs_example.py examples/acquiring_data/querying_the_GOES_event_list.py examples/acquiring_data/searching_vso.py examples/acquiring_data/downloading_cutouts.py examples/acquiring_data/fido_metadata_queries.py examples/acquiring_data/search_cdaweb.py examples/acquiring_data/downloading_lascoC2.py ```

I think #6197 has now fixed the most regular failed downloads here. A quick search of the examples now reveals: ``` % grep -r 'Fido.fetch' examples examples/units_and_coordinates/venus_transit.py:files = Fido.fetch(result) examples/plotting/solar_cycle_example.py:f_noaa_indices...

I had a bit of a dig around in a wheel file, and there's no way to tell when it was created. I think the best bet here is to...

sunpy `TimeSeries` is designed for 1D data, ie quantities that are a function of time. Strictly it would be nice to force only 1D variables being read in, but some...

I tried fixing this, but don't know how to get a client to properley return a 'null' or 'no results' result. @Cadair could you take a look this?

Hi @EdBehn thanks for opening this PR! Do you think you'll be able to add a unit test to this? Let us know if you need any help! If you...