-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read_spc issue with w data #108
Comments
Update:I see that the lines 461:467 have been commented out in the new version of the code compared to the version "0.99-20171005". As in Version 0.99-20171005:
In latest version:
|
@BenoitCarreres, thank you for the detailed investigation of the issue. @cbeleites, are you aware of this? |
Another recent issue with For some reason this spc file reads fine when on a shiny app but not when read from desktop. In shiny apps, they have a special file storage mechanism that I believe overwrites common naming issues. I did try to rename the file but that didn't seem to resolve the issue. Here is the data and a renamed version: Code and error message: > read.spc("10.7.spc")
Error in gsub(rawToChar(replace.nul), "\r\n", log.txt) :
'pattern' is invalid
In addition: Warning message:
In gsub(rawToChar(replace.nul), "\r\n", log.txt) :
unable to translate '<ff>' to a wide string |
Current version of R: 4.2.1. However, this is not an issue related to the version of R.
I haven't tested all the versions, but the last known version that was working to me was "HyperSpec 0.99-20171005"
This issue is specific to w data point and has been existing for a while. Still present in github's version of "hySpc.read.spc", and was present before the latest version of R in cran of the "hyperSpec" package ("read.spc").
While the crash info does not reveal much, I have found the problematic lines: 784 and 816
https://github.com/r-hyperspec/hySpc.read.spc/blob/develop/R/read_spc.R
The line contains the following:
data[s, "w"] <- hdr$subhdr$w
However, when looking into the hdr$subhdr object there is nothing called w, hence the error. I may be wrong, but I suspect that names must have been changed and should now be refering to subwlevel:
data[s, "w"] <- hdr$subhdr$subwlevel
This is what my hdr$subhdr object contains:
Note that this crashed at the first round of the for loop, and I have pretty much this problem on all files.
For testing, I can only refer to those available on zenodo for testing. Just to be sure, I have tested the file called "200528-7 A1.spc".
https://doi.org/10.5281/zenodo.5607596
I am afraid you might have to download the 30gb archive to extract that 400 mb example. If inconvenient, I guess we could find some way to transfer only that file of interest.
Messages returned in the terminal:
Messages returned while manually testing. The message is the same if running the whole function:
Of course, running with the proposed fix does not crash. I am still testing if this is fine data wise. Also, I do not remember if I even need these data.
The text was updated successfully, but these errors were encountered: