-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Hello,
I am trying to get wave data from the coast of Chile and I’m having problems with my altimeter data.
First I got the same error message as discussed in problem #6 and then changed the beginning of the URLS.
Then this part of the code worked. But then with the process altimeter data function, all the satellites and their number of tracks are displayed when loading, but after a few minutes it says "no altimeter data found". I have already tried it with the different values of the quality control flags but I always get the same message that no data can be found. Because I have changed the start of the URL, I can no longer look into the netcdf files because these links are no longer download links. I have also tried with individual satellites (I actually want to have all of them) and also tried to split the dataset as it is relatively large, but unfortunately without success. So either I don't change my URLs at all and they are then not accepted in the first step or I change them but then get the result that no altimeter data could be found.
So this is working fine:
wa= rwave.waveAnalysis(altimeterURL='C:/Users/Pia/OneDrive/Dokumente/RADWave/AODN_data_fixed.txt', bbox=[314,344,-74,-70,], stime=[1980,1,1], etime=[2023,12,1])
This is my data with the changed URLs:
AODN_data_fixed.txt
And this is where the "error" occurs:
wa.processAltimeterData(max_qc=2, altimeter_pick='all', saveCSV = 'altimeterData.csv')
What is the problem, am I missing something here?
