Skip to content
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

Error with units #13

Open
kkappler opened this issue Oct 30, 2024 · 2 comments
Open

Error with units #13

kkappler opened this issue Oct 30, 2024 · 2 comments

Comments

@kkappler
Copy link
Collaborator

kkappler commented Oct 30, 2024

  • Station Pairs = ("WV053", "WVO54", ) # Units issue
    Start and end times were full duration of the stations
    The same behavior was observed for Station Pairs = ("WV053", "WVO55", )

  • (VAQ55, VAQ56)

  • (WVO53, VAQ54)

  • (WVO53, VAQ58)

  • (WVO55, VAQ58)

@micmitch
Copy link
Collaborator

I had success processing "WV053" using "WVO54" as the reference when I specified identical start and end times for both stations. These are the values I used.

WVO53 = ["4P", "WVO53", '2016-04-25T22:13:06', '2016-05-14T05:25:17']
WVO54 = ["4P", "WVO54", '2016-04-25T22:13:06', '2016-05-14T05:25:17']

@micmitch
Copy link
Collaborator

Here is the associated request_df that contains data from WVO53, WVO54, and WVO55.

MMitchell_df.csv

channels = ["LFE", "LFN", "LFZ", "LQE", "LQN"]

# WVO53 2016-04-23T22:43:07 (114) - 2016-05-16T14:59:31 (137)
# WVO54 2016-04-22T19:12:22 (113) - 2016-05-16T18:53:36 (137)
# WVO55 2016-04-25T22:13:06 (116) - 2016-05-14T05:25:17 (135)

WVO53 = ["4P", "WVO53",  '2016-04-25T22:13:06', '2016-05-14T05:25:17'] 
WVO54 = ["4P", "WVO54", '2016-04-25T22:13:06', '2016-05-14T05:25:17']
WVO55 = ["4P", "WVO55", '2016-04-25T22:13:06', '2016-05-14T05:25:17']
# REV06 = ["8P", "REV06", '2020-06-02T19:00:00', '2020-07-13T19:00:00']

stations = [WVO53, WVO54, WVO55,]
# stations.append(REV06)

request_list = []
for entry in stations:
    for channel in channels:
        request_list.append(
            [entry[0], entry[1], "", channel, entry[2], entry[3]]
        )

# Turn list into dataframe
request_df =  pd.DataFrame(request_list, columns=fdsn_object.request_columns) 
request_df

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants