Skip to main content
Version: 3.0.0

Download from Azure Storage

A word of caution

The download process will take some time. Ensure you have adequate storage to receive the dataset and a stable internet connection during the download. You may choose to copy the files to your preferred cloud storage provider instead of downloading them to your local machine.

Once the dataset is ready for download you will receive an email instructing you to view the details of your dataset. Once you log in you will see instructions for downloading your files from the Azure Blob Storage Container. You will need to use a tool to download the files. There are several tools available. Here are a few we recommend.

AzCopy

AzCopy is a command-line utility designed for copying data to and from Azure Blob, File, and Table storage.

RClone

RClone is a command-line program to manage files on cloud storage. It supports a wide range of cloud storage providers, including Azure Blob Storage.

Azure Storage Explorer

Azure Storage Explorer is a free tool from Microsoft that allows you to easily manage your Azure Storage resources.

Downloading the Files

Once you have selected and set up your preferred tool, you will need to set up a SAS URL with the Read and List privileges at a minimum and container details to download your files. Follow the instructions specific to the tool you are using to authenticate with the SAS URL and download the files from the Azure Blob Storage Container.

AzCopy Example

Detailed instructions on AzCopy, its installation, and use are available from the Official Microsoft Documentation Below is a brief summary of steps you'll need to accomplish your download:

  1. Visit the AzCopy documentation page and download the compressed azcopy executable for your respective operating system. These executables are available as compressed zip files for Windows/Mac users and Tarball files for Linux users.

  2. Extract the contents of the compressed executable in a known location on your local machine's drive.

    • Windows and Mac users can use built-in zip file applications or use 3rd-party applications like 7zip for this
    • For linux users, please see documentation for your specific distro for instructions on decompressing the provided tarball
    • Possible locations for this are: in your home directory; in your machine's C:/ or binary directory
    • For ease of use, consider adding the fully-qualified path to the AzCopy directory to your system PATH. If you choose not to do this you will need to execute any AzCopy commands from the directory where AzCopy is installed.
  3. Open a terminal or powershell instance and execute the following (or similar):

    azcopy copy "https://youraccount.blob.core.windows.net/yourcontainer?...[SAS Token]..." /
    "C:\local\path" /
    --recursive=true
  4. Where the https URL is the SAS URI you obtained from the portal and "C:\local\path" is the local path on your target machine.

  5. Please allow time for the download to complete. Depending on the amount of data you selected, this will take several hours.