diff --git a/docs/howto_guides/sample_data.rst b/docs/howto_guides/sample_data.rst index 1f5bd748..06381b2c 100644 --- a/docs/howto_guides/sample_data.rst +++ b/docs/howto_guides/sample_data.rst @@ -20,7 +20,7 @@ Using the `BKPLX `__ dataset from import dkist.net results = Fido.search(a.dkist.Dataset("BKPLX")) - asdf_file = Fido.fetch(results, ") + asdf_file = Fido.fetch(results) ds = dkist.load_dataset(asdf_file) @@ -28,13 +28,13 @@ Using the `BKPLX `__ dataset from Downloading the FITS files with Globus -------------------------------------- -Having loaded the ASDF file into a `dkist.Dataset` as this is a VISP dataset with polarimetry, we can download the Stokes I profile as so: +Having loaded the ASDF file into a `dkist.Dataset` as this is a VISP dataset with polarimetry, we can download the Stokes I profile by indexing the first element of the first dimension: .. code-block:: python ds[0].files.download() # doctest: +SKIP -This will download all the FITS files into the same directory as the ASDF file. +This will download the Stokes I FITS files into the same directory as the ASDF file. To download the whole dataset do: