download.run.input.Rd
Downloads & saves the desired input file for a run.
Hits the /api/run/{run_id}/input/{filename}
API endpoint
download.run.input(server, run_id, filename, save_as = NULL)
Server object obtained using the connect() function
ID of the PEcAn run whose input is needed
Name of the input 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}/input/{filename}
endpoint
server <- connect(url="http://pecan.localhost:80", username="carya", password="illinois")
# Download the 'sipnet.clim' input for the run with id = '99000000282'
download.run.input(server, run_id=99000000282, filename='sipnet.clim', save_as='test.sipnet.clim')
#> Sorry! Server not responding.