@@ -150,6 +150,9 @@ You can download files from the SAS and place them in your local SAS. ``sdss_ac
150150that mimics the real SAS at Utah. If you do not already have a `SAS_BASE_DIR ` set, one will be defined in your
151151home directory, as a new ``sas `` directory.
152152
153+ ``sdss_access `` requires valid authentication to download proprietary data. See :ref: `auth `
154+ for more information.
155+
153156sdss_access has four classes designed to facilitate access to SAS data.
154157
155158- **Access ** - class that automatically decides between `.RsyncAccess ` and `.CurlAccess ` based on the operating system.
@@ -235,6 +238,37 @@ In all all cases, successful ``sdss_access`` downloads will return a code of 0.
235238occurred. If no verbose message is displayed, you may need to check the ``sdss_access_XX.log `` and ``sdss_access_XX.err ``
236239files within the temporary directory.
237240
241+ Accessing SDSS-V Products
242+ -------------------------
243+
244+ As of version 2.0.0, ``sdss_access `` has been updated to support downloading of
245+ SDSS-V products. The usage of ``sdss_access `` remains the same. The only difference is SDSS-V
246+ products are now delivered by the "data.sdss5.org" server instead of "data.sdss.org".
247+ When specifying ``release="sdss5" ``, you may notice the new server location, e.g.
248+ ::
249+
250+ >>> from sdss_access import Access
251+ >>> access = Access(release='sdss5')
252+ >>> access
253+ <Access(access_mode="rsync", using="data.sdss5.org")>
254+
255+ As with SDSS-IV, ``sdss_access `` requires valid authentication to download
256+ proprietary data for SDSS-V. See :ref: `auth ` for more information. Here is an example accessing
257+ the robostrategy completeness files for SDSS-V.
258+
259+ .. warning ::
260+ The below example contains large data, ~8 GB, and may take a while to download.
261+
262+ ::
263+
264+ from sdss_access import Access
265+ access = Access(release='sdss5')
266+ access.remote()
267+ access.add('rsCompleteness', observatory='apo', plan='epsilon-2-core-*')
268+ access.set_stream()
269+ access.commit()
270+
271+
238272Accessing Public Data Products
239273------------------------------
240274
0 commit comments