This depends a lot on the tools you have at hand and what tools and commands you are familiar with.
I would probably convert the spreadsheet to CSV (standard plain text table format) and convert that into a simple DXF file (also plain text). This could be relatively easily done using either macros in a powerful text editor (such as 'vim' or 'Emacs') or with command line utilities (such as 'sed').
In any case, if you can get your point data somehow into this plain text format, you can load this with QCAD:
- Code: Select all
0
POINT
10
[X-coordinate of point]
20
[Y-coordinate of point]
For example for two points at (50.0,150.0) and (12.5,25.4), your text file 'example.dxf' would look like this:
- Code: Select all
0
POINT
10
50.0
20
150.0
0
POINT
10
12.5
20
25.4