Error in `[.data.frame`(Data, , 4) : undefined columns selected

Good night.

You should be able to start R & RStudio and copy and paste the play function (see below) into R. Try pasting it into the console window of RStudio hand hitting return.

Then do

play

If it is in your work area you should see it print out.

Another approach would be to save the function in an R file, call it play.r in your working directory and issue the command

source("play.r"

This should load and execute the function so that it is ready to use.

John

*Play Function

play  <-  function (Data, outpath, variable, cod, nam = "", lat = "", lon = "", 
    alt = "", sou = "", link = "", units, stat, metaHead = "", 
    meta = "", period = "", time_offset = 0, note = "", keep_na = FALSE, 
    outfile = NA) 
{
    for (i in 1:ncol(Data)) Data[, i] <- as.character(Data[, 
        i])
    header <- array(dim = c(12, 2), data = "")
    header[1, ] <- c("SEF", "1.0.0")
    header[2, ] <- c("ID", trimws(as.character(cod)))
    header[3, ] <- c("Name", trimws(as.character(nam)))
    header[4, ] <- c("Lat", trimws(as.character(lat)))
    header[5, ] <- c("Lon", trimws(as.character(lon)))
    header[6, ] <- c("Alt", trimws(as.character(alt)))
    header[7, ] <- c("Source", trimws(as.character(sou)))
    header[8, ] <- c("Link", trimws(as.character(link)))
    header[9, ] <- c("Vbl", trimws(as.character(variable)))
    header[10, ] <- c("Stat", trimws(as.character(stat)))
    header[11, ] <- c("Units", trimws(as.character(units)))
    header[12, ] <- c("Meta", trimws(as.character(metaHead)))
    if (stat == "point" & !all(as.character(period) == "0")) {
        period <- "0"
        warning("Period forced to 0 because of 'stat'")
    }
    if (!all(time_offset == 0) & !all(is.na(as.integer(Data[, 
        4]) + as.integer(Data[, 5])))) {
        times <- ISOdate(Data[, 1], Data[, 2], Data[, 3], Data[, 
            4], Data[, 5])
        times <- times - time_offset * 3600
        Data[which(!is.na(times)), 1] <- as.integer(substr(times[which(!is.na(times))], 
            1, 4))
        Data[which(!is.na(times)), 2] <- as.integer(substr(times[which(!is.na(times))], 
            6, 7))
        Data[which(!is.na(times)), 3] <- as.integer(substr(times[which(!is.na(times))], 
            9, 10))
        Data[which(!is.na(times)), 4] <- as.integer(substr(times[which(!is.na(times))], 
            12, 13))
        Data[which(!is.na(times)), 5] <- as.integer(substr(times[which(!is.na(times))], 
            15, 16))
    }
    DataNew <- data.frame(Year = Data[, 1], Month = Data[, 2], 
        Day = Data[, 3], Hour = Data[, 4], Minute = Data[, 5], 
        Period = as.character(period), Value = Data[, 6], Meta = as.character(meta), 
        stringsAsFactors = FALSE)
    if (!keep_na) 
        DataNew <- DataNew[which(!is.na(DataNew$Value)), ]
    if (substr(outpath, nchar(outpath), nchar(outpath)) != "/") {
        outpath <- paste0(outpath, "/")
    }
    if (is.na(outfile)) {
        j <- 3
        if (is.na(as.integer(DataNew[1, 3]))) 
            j <- 2
        if (is.na(as.integer(DataNew[1, 2]))) 
            j <- 1
        datemin <- paste(formatC(unlist(as.integer(DataNew[1, 
            1:j])), width = 2, flag = 0), collapse = "")
        datemax <- paste(formatC(unlist(as.integer(DataNew[dim(DataNew)[1], 
            1:j])), width = 2, flag = 0), collapse = "")
        dates <- paste(datemin, datemax, sep = "-")
        filename <- paste(sou, cod, nam, dates, variable, sep = "_")
        if (sou %in% c(NA, "")) 
            filename <- sub("_", "", filename)
        if (note != "") {
            note <- paste0("_", gsub(" ", "_", note))
        }
        filename <- gsub(" ", "", filename)
        filename <- paste0(outpath, filename, note, ".tsv")
    }
    else {
        filename <- paste0(outpath, outfile)
        if (substr(filename, nchar(filename) - 3, nchar(filename)) != 
            ".tsv") {
            filename <- paste0(filename, ".tsv")
        }
    }
    write.table(header, file = filename, quote = FALSE, row.names = FALSE, 
        col.names = FALSE, sep = "\t", dec = ".", fileEncoding = "UTF-8")
    write.table(t(names(DataNew)), file = filename, quote = FALSE, 
        row.names = FALSE, col.names = FALSE, sep = "\t", fileEncoding = "UTF-8", 
        append = TRUE)
    write.table(DataNew, file = filename, quote = FALSE, row.names = FALSE, 
        col.names = FALSE, sep = "\t", dec = ".", fileEncoding = "UTF-8", 
        append = TRUE)
    message(paste("Data written to file", filename))
}

Hi again,

Beautiful!! Thanks a lot. This worked now!!

I don't quit understand you have done with this "hacking". But I got everything now correct! It worked. Great!!

Have a nice day!

Elin

Next step will be to fill out with the other station from Berkely earth = 1759 stations. I hope that will work out well now! :grinning:

I just added *nam" to the print command.

write_sef

write_sef(dat1, outpath = outpath, variable = variable, cod = cod, 
           lat = lat, lon = lon, alt = alt, sou = sou, stat = stat, units = "C", note = note)

*play command

play(dat1, outpath = outpath, variable = variable, cod = cod, nam = nam,
           lat = lat, lon = lon, alt = alt, sou = sou, stat = stat, units = "C", note = note)

It took me an hour reading the code and 15 seconds to make the change. I am not fast.

Unless there is a bad file, everything should run well and I doubt Barkley will have one.

Best of luck.

And the next time I am in Oslo (Berne?) you owe me a coffee. As I live in Canada not far from OTTAWA, that could be a while. :smile:

Thank you so much! Good work! I will send you copy of the paper when it comes out.

I guess I own you 2 coffees than. One in Oslo (Norway) and one in Bern (Switzerland).

I promise I want to buy you a coffee. The corona period probably makes us less social. I believe it should go over soon (during 2021). (I am a positive mind).

I'm going to take a closer look at your coding here. I have a lot to learn and that this SEF format is a bit amateurishly made. Thank you so much for taking the time to familiarize yourself with it.

Ottawa is cool!

I have cooperated with a woman in Climate Research Division in the Environment office under the Government. I think she work in Ottawa.
See you around - on the net at least.

Have a nice day! Here it is evening now.

Elin

@ jrkrideau
Hi there,

I am sorry to bother you again.
Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :
line 1 did not have 9 elements
I got some trouble with the station file = Inventory. What is the quick solution for finding the station which has these error here?

Elin

Ps. It will be 1759 stations in the end. When you helped me and you made the script for me it was only 57 station in the folder to run. But the script still stop running because it is some error in the new station. There are some errors in the stations I added, I think.

Hi Elin,

It is 2021-02-10 09:50 here and I see this message that says it is from 18 hours ago but it didbnot get flagged as a new message.

Is this just an old message or is it new and I should get to work?

If new my billings are going up to 2 coffees.

BTW I hate the way this forum says 15m or 2d. The Sumerians invented times and dates for a reason!

Hi John,

Off course, 2 coffees is now a deal! :ok_hand:
I think I wrote the message yesterday. My screen shows 20 hours ago. So it is relatively new. Is it hard work to find out?
I thought you did not see the messages anymore. So thank you for answering!
I was not sure. I am agree. It has a strange way of showing messages.

Thank you if you can find a way to find out with station that stop the script running or you can give me a hint of how I can find out.
Shall I put in rest of the stations in the dropbox?

Elin

Ah, I am glad I caught the message .

Yes please put the stations in Dropbox but before you do that have a look at the inventory file. I mean open it with a text editor. I suspect that it is the list of stations and not a station data file.

If I am correct, I think you can remove or delete it.

Or am I completely misunderstanding the problem and it is the inventory file we use?

Good luck---I am out for some time this afternoon, it's 12:18 here now,--but should have something for you, early morning Oslo time if all goes well.

Great! Thank you! Have a nice day!
Here the clock is about 6.30 in the evening.
The error message says to me it is station 1 or line 1 who has not 9 elements. But which stations is now number 1? It could have been: Hohenfurth (after the old station number system or after the new system (yours) (alfabetic after name) it should be: Albany_County_Airport
Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :
line 1 did not have 9 elements
But I can not find any errors on one of these stations. But I check again and put the new stations now into dropbox. Now it should be 104 stations.
So my question is simple (for you) how can I find out which station have this error?

Elin

Maybe I removed the error?

Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :
line 20 did not have 8 elements

No it is line 20. Possible I removed that error in line 1, but then there's a new one in line 20, and what's city/station 20? Actually I am not sure what I changed. So it would be nice to find out exactly which station has the error.

Here is the stations: https://www.dropbox.com/sh/bm1oxpqta2ou35c/AADowHJMHs3x0eNAjw9t6FeIa?dl=0

Here is the inventory: https://www.dropbox.com/s/77mkjg7k2ur4tfj/Inventory_Berkeley-Earth2.txt?dl=0

Actually I think all the stations look ok now:
But it does not run:

New error message:
Error in file(file, ifelse(append, "a", "w"), encoding = fileEncoding) : cannot open the connection In addition: Warning message: In file(file, ifelse(append, "a", "w"), encoding = fileEncoding) :

[image] Show Traceback

[image] Rerun with Debug

Error in file(file, ifelse(append, "a", "w"), encoding = fileEncoding) : cannot open the connection

I hope you can see the files here: https://www.dropbox.com/sh/jbeedvneo7cwuus/AAAz3jsFulX2S3AjW2GdtaC0a?dl=0

17:30 my time; 23:30 Oslo time.

I have not have had much time to run things so I don't know where the problem in exactly but I have found two things. Some of the city names in the inventory file are not spelled the same as the station names in the stations files. For example
1] "Edinburgh_Royal_Obs."
[1] "Edinburgh_Royal_Obs"
or
[1] "Brussels_Uccle_CBT"
[1] "Brussel_Uccle_CBT"

I do not think has an effect on the program but it is a bit worrying.

I think I have found the real problem. There are 113 station files in allfiles and 114 rows of station names in the inventory file.

The last entry (row 114) is for Zuid-Limburg and there in no Zuid-Limburg in the station files in allfiles.

I may not be able to get more done tonight but, if not, I will get back to work tomorrow morning.

In the mean time, just delete row 114 is the inventory file and see what happens.

From my end, dropping the last row in new_inventory seems to work.

Try adding the line

new_inventory  <-  new_inventory[-114, ]

just below

new_inventory  <-  arrange(inventory, city)

This should give you a data.frame with 113 rows.

On the other hand I seem to have messed up the play function and the new file names. Can you send me a copy of play.r so I do not have to spend hours correcting some stupid mistake?

Thanks,
John

Hi,

Thank you. I am sorry there was still some typing errors. I thought I had cleaned it up. But thank you looking at it. Everything run now. That is great. No error message. But where are the files end up? I can not find them ?
Is there something wrong with the "outpath"?

Not a problem. I think it was Berkley's fault.

In my case they end up here

outpath  <-  "/home/john/RJunk/elinlun/output"

which is the same path I have used before.

Are you seeing something like this?

Yes. I see. It should be this: outpath = "C:/Users/elinl/Documents"
But it is not there....
I have to look for it...