download.run.output.Rd
Downloads & saves the desired output file for a run.
Hits the /api/run/{run_id}/output/{filename}
API endpoint
download.run.output(server, run_id, filename, save_as = NULL)
Server object obtained using the connect() function
ID of the PEcAn run whose output is needed
Name of the output file to be downloaded
File name to save the downloaded file as. Default: NULL (same
name as filename
would be used)
Response obtained from the /api/run/{run_id}/output/{filename}
endpoint
server <- connect(url="http://pecan.localhost:80", username="carya", password="illinois")
# Download the 'README.txt' output for the run with id = '99000000282'
download.run.output(server, run_id=99000000282, filename='README.txt', save_as='test.README.txt')
#> Sorry! Server not responding.