-
Notifications
You must be signed in to change notification settings - Fork 1
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
IOS Conversion - moored currentmeter data issues #82
Comments
Few comments from above
the parser relies on the original file
The difference you observed is likely related to the a different format defined within each source files. We could potentially start mapping each individual variables data type via the vocabulary file but I could see this been a lot of work for not much reward. ERDDAP and other softwares are able to handle a mix of float/int back into int as long as those floats do not have decimals.
I'm surprised that those variables were added yet in the vocabulary. You can certainly add them to the vocabulary or I can do. It can be a good practice for you to familiarize yourself with all the git world 😄 |
@guanlu129 you can either make changes on your own computer by pulling the branch or by making the changes directly via the GitHub interface here: https://github.com/cioos-siooc/ocean-data-parser/blob/fix-74-dfo-ios-update/ocean_data_parser/vocabularies/dfo_ios_vocabulary.csv The second is probably the simplest. |
For IOS moored Current meter data, I’ve compared the netCDF file generated by ODPY and by the old ios_data_tranform, and would like to suggest a few items for discussion and potential modification:
Varaible record_number is set as float in moored CTD file. The variable type should be consistent in moored CTD and moored current meter files.
To do: change the record number from int to float.
Adding long_name and standard_name to variable time as shown below:
double time(time) ;
time:_FillValue = NaN ;
time:long_name = "time" ;
time:standard_name = "time" ;
time:units = "seconds since 1970-01-01 00:00:00+0000" ;
Missing variable instrument_depth in the ODPY version:
float instrument_depth ;
instrument_depth:_FillValue = NaNf ;
instrument_depth:long_name = "Instrument Depth" ;
instrument_depth:standard_name = "instrument_depth" ;
instrument_depth:units = "m" ;
Variable names in the ODPY version are not BODC standard names.
In ODPY version old version standard name in the old version
Question: should I add these variables to the dfo_ios_vocabulary.csv
There are a few metadata under data section in the old version:
Question: are these necessary?
The text was updated successfully, but these errors were encountered: