You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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])
print('URLs spatial distribution:')
print(' + latitudinal extent: ',data_Range_lat_min,data_Range_lat_max)
print(' + longitudinal extent: ',data_Range_lon_min,data_Range_lon_max)
print('')
iflen(url_in_bbox) >0:
forkinrange(len(url_in_bbox)):
print(wa.allURL[0][url_in_bbox[k]])
else:
print('None of the URLs are within the requested bounding box')
URLs spatial distribution:
+ latitudinal extent: -45.994205 -16.055656
+ longitudinal extent: 286.0 289.91946
None of the URLs are within the requested bounding box
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?
The text was updated successfully, but these errors were encountered: