Home >
Community >
How to convert SPC files to ASCII without original spectroscopy software?
Upvote
25
Downvote
+ Software
+ Spectroscopy
Posted by
Max Huang
How to convert SPC files to ASCII without original spectroscopy software?
If you don't mind Python on the command line, there's an spc converter on Github.
While the trial version of the GRAMS Suite 9.2 is available with a 30 days license, it seemingly doesn't work with any data but the samples provided with it and therefore isn't suitable for your purpose :(
If you don't mind Python on the command line, there's an spc converter on Github.
While the trial version of the GRAMS Suite 9.2 is available with a 30 days license, it seemingly doesn't work with any data but the samples provided with it and therefore isn't suitable for your purpose :(
You can also use Sys.glob() function for wildcard search of your files, then read all of them with read.spc(), and call collapse() to build a single hyperSpec class with all data points together.
You can also use Sys.glob() function for wildcard search of your files, then read all of them with read.spc(), and call collapse() to build a single hyperSpec class with all data points together.
If you don't mind Python on the command line, there's an spc converter on Github.
While the trial version of the GRAMS Suite 9.2 is available with a 30 days license, it seemingly doesn't work with any data but the samples provided with it and therefore isn't suitable for your purpose :(
If you don't mind Python on the command line, there's an spc converter on Github.
While the trial version of the GRAMS Suite 9.2 is available with a 30 days license, it seemingly doesn't work with any data but the samples provided with it and therefore isn't suitable for your purpose :(
More
VOTE
If you use
Rfor data analysis, take a look at the R package hyperSpec. Example:You can also use
Sys.glob()function for wildcard search of your files, then read all of them withread.spc(), and callcollapse()to build a single hyperSpec class with all data points together.If you use
Rfor data analysis, take a look at the R package hyperSpec. Example:You can also use
Sys.glob()function for wildcard search of your files, then read all of them withread.spc(), and callcollapse()to build a single hyperSpec class with all data points together.More
VOTE
A quick search turned up a number of useful tools. Wikipedia suggests:
A quick search turned up a number of useful tools. Wikipedia suggests:
More
VOTE