We will be performing a major infrastructure and web site ugprades on Friday, September 27th 8:00 am - 5:00 pm MST (UTC -7).

The website will be down during that time.

Data Transfer from .xls Files

  • rfreesta
  • Topic Author
More
31 Jul 2017 15:49 #5601 by rfreesta
Data Transfer from .xls Files was created by rfreesta
Is it possible to read the full contents of .xls files into an array, without having to name the range of cells being read (similar to how csvread can read .csv files to an array)?

We wrote a script that reads spreadsheets containing on-site weather measurements (irradiance, temperature, wind speed), and runs a simulation based on them. However, the on-site weather measurements are in .xls form, and can have a varying number of rows depending on the timeframe chosen for analysis and the measurement interval (there is one row of data per timestamp). Since we couldn't find a way to read the data directly from .xls files, we're currently opening the .xls weather measurements manually in Excel, saving as a .csv, and then running the script using csvread.

Is there a more automated way to do this- can the script read all of the data into arrays directly from the .xls file (without having to manually assign a name in Excel to the range of cells being read), or else can it automatically convert an .xls file to a .csv file?

Please Log in or Create an account to join the conversation.

  • pgilman
More
31 Jul 2017 17:41 #5602 by pgilman
Replied by pgilman on topic Data Transfer from .xls Files
Hello,

As you note, the LK functions that work with Excel objects can only read and write to single cells
xl_get(xl,'a1');
or to ranges of cells if they are named
xl_get(xl,'my_range');
. You probably already found the example files at the bottom of the Samples page, but here's a link for others who may not have seen it:

sam.nrel.gov

Perhaps you could write a script in Python or some other language to convert the Excel files to CSV before running your LK script -- there are several examples on the web.

Best regards,
Paul.

Please Log in or Create an account to join the conversation.

  • sogold
More
21 Aug 2017 03:41 #5603 by sogold
Replied by sogold on topic Data Transfer from .xls Files
Thanks you Paul Gilman

Please Log in or Create an account to join the conversation.

Moderators: pgilman
Powered by Kunena Forum