NetCDF
4.6.3
|
Functions to write attributes. More...
#include "ncdispatch.h"
Go to the source code of this file.
Functions | |
Writing Attributes | |
Functions to write attributes. | |
int | nc_put_att_string (int ncid, int varid, const char *name, size_t len, const char **value) |
Write a string attribute. More... | |
int | nc_put_att_text (int ncid, int varid, const char *name, size_t len, const char *value) |
Write a text attribute. More... | |
int | nc_put_att (int ncid, int varid, const char *name, nc_type xtype, size_t len, const void *value) |
Write an attribute. More... | |
int | nc_put_att_schar (int ncid, int varid, const char *name, nc_type xtype, size_t len, const signed char *value) |
Write an attribute. More... | |
int | nc_put_att_uchar (int ncid, int varid, const char *name, nc_type xtype, size_t len, const unsigned char *value) |
Write an attribute. More... | |
int | nc_put_att_short (int ncid, int varid, const char *name, nc_type xtype, size_t len, const short *value) |
Write an attribute. More... | |
int | nc_put_att_int (int ncid, int varid, const char *name, nc_type xtype, size_t len, const int *value) |
Write an attribute. More... | |
int | nc_put_att_long (int ncid, int varid, const char *name, nc_type xtype, size_t len, const long *value) |
Write an attribute. More... | |
int | nc_put_att_float (int ncid, int varid, const char *name, nc_type xtype, size_t len, const float *value) |
Write an attribute. More... | |
int | nc_put_att_double (int ncid, int varid, const char *name, nc_type xtype, size_t len, const double *value) |
Write an attribute. More... | |
int | nc_put_att_ubyte (int ncid, int varid, const char *name, nc_type xtype, size_t len, const unsigned char *value) |
Write an attribute. More... | |
int | nc_put_att_ushort (int ncid, int varid, const char *name, nc_type xtype, size_t len, const unsigned short *value) |
Write an attribute. More... | |
int | nc_put_att_uint (int ncid, int varid, const char *name, nc_type xtype, size_t len, const unsigned int *value) |
Write an attribute. More... | |
int | nc_put_att_longlong (int ncid, int varid, const char *name, nc_type xtype, size_t len, const long long *value) |
Write an attribute. More... | |
int | nc_put_att_ulonglong (int ncid, int varid, const char *name, nc_type xtype, size_t len, const unsigned long long *value) |
Write an attribute. More... | |