2021-01-14 14:49:30 +01:00
|
|
|
#!/usr/bin/env Rscript
|
2021-01-19 11:09:12 +01:00
|
|
|
|
|
|
|
# Package installation, execute once
|
2021-01-14 14:49:30 +01:00
|
|
|
#if (!require("remotes")) install.packages("remotes")
|
|
|
|
#remotes::install_github("philipp-baumann/simplerspec")
|
2021-01-19 11:09:12 +01:00
|
|
|
|
|
|
|
# Attach package to workspace, execute with every new session
|
|
|
|
library("simplerspec")
|
|
|
|
|
2021-01-15 15:39:19 +01:00
|
|
|
file_path <- "D:\\OpusData\\Spektrometer Anbindung\\Test Daten\\OPUS\\"
|
|
|
|
file_name <- "Rng02_Rng2630_01.0"
|
2021-01-14 14:49:30 +01:00
|
|
|
|
2021-01-15 15:39:19 +01:00
|
|
|
data <- read_opus_univ(paste(file_path, file_name, sep = ""), extract = "spc",
|
2021-01-14 14:49:30 +01:00
|
|
|
atm_comp_minus4offset = FALSE)
|
|
|
|
|
2021-01-15 15:39:19 +01:00
|
|
|
data_x_values <- data$`D:\\OpusData\\Spektrometer Anbindung\\Test Daten\\OPUS\\Rng02_Rng2630_01.0`$wavenumbers
|
2021-01-19 11:09:12 +01:00
|
|
|
data_y_values <- as.numeric(data$`D:\\OpusData\\Spektrometer Anbindung\\Test Daten\\OPUS\\Rng02_Rng2630_01.0`$spc[1,])
|
2021-01-15 15:39:19 +01:00
|
|
|
|
2021-01-19 11:09:12 +01:00
|
|
|
|
|
|
|
print(data_x_values)
|
|
|
|
# Set working directory to path where the result should appear
|
2021-01-15 15:39:19 +01:00
|
|
|
setwd(paste(file_path, "..\\DPT", sep = ""))
|
|
|
|
|
2021-01-19 11:09:12 +01:00
|
|
|
# Replace last "." with "_", add ".DPT" and create file
|
|
|
|
file_name <- paste(sub(".([^.]*)$", "_\\1", file_name), ".DPT", sep = "")
|
|
|
|
file.create(file_name)
|
|
|
|
|
|
|
|
# Convert data into dataframe
|
|
|
|
data <- data.frame(data_x_values, data_y_values, row.names = NULL)
|
|
|
|
|
|
|
|
# Fill file with dataframe
|
|
|
|
write.table(data, file_name, row.names = FALSE, col.names = FALSE, sep=",")
|
2021-01-15 15:39:19 +01:00
|
|
|
|
|
|
|
|
2021-01-14 14:49:30 +01:00
|
|
|
|