Query ARM Data
Search for available files in any ARM datastream within a specified date range.
Query, download, and read data from ARMLive.

ARMLive.jl is a lightweight Julia package that provides programmatic access to the ARM Live Data Webservice. It allows you to query, download, and read data from the Atmospheric Radiation Measurement (ARM) program.
The latest version of ARMLive can be installed using the Julia package manager (accessed by pressing ] in the Julia command prompt)
julia> ]
(@v1.12) pkg> add ARMLiveYou can update ARMLive.jl to the latest version using
(@v1.12) pkg> update ARMLiveAnd if you want to get the latest release without waiting for me to update the Julia Registry (although this generally isn't necessary since I make a point to release patch versions as soon as I find bugs or add new working features), you may fix the version to the main branch of the GitHub repository:
(@v1.12) pkg> add ARMLive#mainBefore using ARMLive.jl, you need to:
Register for an account at the ARM Data Discovery portal
Obtain your access token from the ARM Live Data Webservice
Run the setup() function to store your credentials:
using ARMLive
setup(user="your_username", token="your_token")using ARMLive
# Create a dataset type
ads = ARMDataset(
stream = "sgpmetE13.b1",
start = Date(2020,1,1),
stop = Date(2020,1,31),
path = <path-to-data-directory>
)
# Query available files
files = query(ads)
# Download the data
download(ads)
# Read data for a specific date
ds = read(ads, Date(2020,1,15))If you are interested in using ARMLive.jl or are trying to figure out how to use it, please feel free to ask me questions and get in touch! Please feel free to open an issue if you have any questions, comments, suggestions, etc!