mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
aeb3ac2809
re: https://github.com/Unidata/netcdf-c/issues/1836 Revert the internal filter code to simplify it. From the user's point of view, the only visible changes should be: 1. The functions that convert text to filter specs have had their signature reverted and have been moved to netcdf_aux.h 2. Some filter API functions now return NC_ENOFILTER when inquiry is made about some filter. Internally,the dispatch table has been modified to get rid of the filter_actions entry and associated complex structures. It has been replaced with inq_var_filter_ids and inq_var_filter_info entries and the dispatch table version has been bumped to 3. Corresponding NOOP and NOTNC4 functions were added to libdispatch/dnotnc4.c. Also, the filter_action entries in dispatch tables were replaced for all dispatch code bases (HDF5, DAP2, etc). This should only impact UDF users. In the process, it became clear that the form of the filters field in NC_VAR_INFO_T was format dependent, so I converted it to be of type void* and pushed its management into the various dispatch code bases. Specifically libhdf5 and libnczarr now manage the filters field in their own way. The auxilliary functions for parsing textual filter specifications were moved to netcdf_aux.h and were renamed to the following: * ncaux_h5filterspec_parse * ncaux_h5filterspec_parselist * ncaux_h5filterspec_free * ncaux_h5filter_fix8 Misc. Other Changes: 1. Document NUG/filters.md updated to reflect the changes above. 2. All the old data types (structs and enums) used by filter_actions actions were deleted. The exception is the NC_H5_Filterspec because it is needed by ncaux_h5filterspec_parselist. 3. Clientside filters were removed -- another enhancement for which no-one ever asked. 4. The ability to remove filters was itself removed. 5. Some functionality needed by nczarr was moved from libhdf5 to libsrc4 e.g. nc4_find_default_chunksizes 6. All the filterx code was removed 7. ncfilter.h and nc4filter.c no longer used Misc. Unrelated Changes: 1. The nczarr_test makefile clean was leaving some directories; so add clean-local to take care of them.
85 lines
3.0 KiB
Plaintext
85 lines
3.0 KiB
Plaintext
netcdf METAR_20170910_0000 {
|
|
dimensions:
|
|
sample = UNLIMITED ; // (12538 currently)
|
|
station = UNLIMITED ; // (4606 currently)
|
|
variables:
|
|
float lon(station) ;
|
|
lon:long_name = "longitude" ;
|
|
lon:units = "degrees_east" ;
|
|
lon:standard_name = "longitude" ;
|
|
float lat(station) ;
|
|
lat:long_name = "latitude" ;
|
|
lat:units = "degrees_north" ;
|
|
lat:standard_name = "latitude" ;
|
|
float alt(station) ;
|
|
alt:long_name = "vertical distance above mean sea level" ;
|
|
alt:units = "meter" ;
|
|
alt:positive = "up" ;
|
|
alt:standard_name = "surface_altitude" ;
|
|
string stid(station) ;
|
|
stid:long_name = "station id" ;
|
|
stid:standard_name = "platform_id" ;
|
|
stid:cf_role = "timeseries_id" ;
|
|
string name(station) ;
|
|
name:long_name = "station name" ;
|
|
name:standard_name = "platform_name" ;
|
|
int index(sample) ;
|
|
index:instance_dimension = "station" ;
|
|
int time(sample) ;
|
|
time:long_name = "time of observation" ;
|
|
time:units = "minutes since 1970-1-1 00:00:00" ;
|
|
float altimeter_setting(sample) ;
|
|
altimeter_setting:units = "millibars" ;
|
|
altimeter_setting:coordinates = "lon lat alt time stid" ;
|
|
altimeter_setting:missing_value = -999.f ;
|
|
float dewpoint(sample) ;
|
|
dewpoint:units = "degC" ;
|
|
dewpoint:standard_name = "dew_point_temperature" ;
|
|
dewpoint:coordinates = "lon lat alt time stid" ;
|
|
dewpoint:missing_value = -999.f ;
|
|
float sea_level_pressure(sample) ;
|
|
sea_level_pressure:units = "millibars" ;
|
|
sea_level_pressure:standard_name = "air_pressure_at_sea_level" ;
|
|
sea_level_pressure:coordinates = "lon lat alt time stid" ;
|
|
sea_level_pressure:missing_value = -999.f ;
|
|
float sky_coverage(sample) ;
|
|
sky_coverage:units = "percent" ;
|
|
sky_coverage:standard_name = "cloud_area_fraction" ;
|
|
sky_coverage:coordinates = "lon lat alt time stid" ;
|
|
sky_coverage:missing_value = -999.f ;
|
|
float temperature(sample) ;
|
|
temperature:units = "degC" ;
|
|
temperature:standard_name = "air_temperature" ;
|
|
temperature:coordinates = "lon lat alt time stid" ;
|
|
temperature:missing_value = -999.f ;
|
|
float visibility(sample) ;
|
|
visibility:units = "meters" ;
|
|
visibility:standard_name = "visibility_in_air" ;
|
|
visibility:coordinates = "lon lat alt time stid" ;
|
|
visibility:missing_value = -999.f ;
|
|
float wind_direction(sample) ;
|
|
wind_direction:units = "degrees" ;
|
|
wind_direction:standard_name = "wind_from_direction" ;
|
|
wind_direction:coordinates = "lon lat alt time stid" ;
|
|
wind_direction:missing_value = -999.f ;
|
|
float wind_speed(sample) ;
|
|
wind_speed:units = "m/s" ;
|
|
wind_speed:standard_name = "wind_speed" ;
|
|
wind_speed:coordinates = "lon lat alt time stid" ;
|
|
wind_speed:missing_value = -999.f ;
|
|
float wind_gust(sample) ;
|
|
wind_gust:units = "m/s" ;
|
|
wind_gust:standard_name = "wind_speed_of_gust" ;
|
|
wind_gust:coordinates = "lon lat alt time stid" ;
|
|
wind_gust:missing_value = -999.f ;
|
|
string report(sample) ;
|
|
report:coordinates = "lon lat alt time stid" ;
|
|
|
|
// global attributes:
|
|
:featureType = "timeSeries" ;
|
|
:Conventions = "CF-1.7" ;
|
|
:institution = "UCAR/Unidata" ;
|
|
:source = "METAR Reports" ;
|
|
:title = "Reformatted METAR observations" ;
|
|
}
|