ncdf4a13/fortran/fort-genatt.c

Go to the documentation of this file.
00001 #include "netcdf.h"
00002 #include "ncfortran.h"
00003 
00004 
00005 /*
00006  * Inquire about a netCDF attribute.
00007  */
00008 FCALLSCFUN5(NF_INT, nc_inq_att, NF_INQ_ATT, nf_inq_att,
00009             NCID, VARID, STRING, PTYPE, PCOUNT)
00010 
00011 
00012 /*
00013  * Obtain the index of a netCDF attribute.
00014  */
00015 FCALLSCFUN4(NF_INT, nc_inq_attid, NF_INQ_ATTID, nf_inq_attid,
00016             NCID, VARID, STRING, PATTID)
00017 
00018 
00019 /*
00020  * Obtain the type of a netCDF attribute.
00021  */
00022 FCALLSCFUN4(NF_INT, nc_inq_atttype, NF_INQ_ATTTYPE, nf_inq_atttype,
00023             NCID, VARID, STRING, PTYPE)
00024 
00025 
00026 /*
00027  * Obtain the length of a netCDF attribute.
00028  */
00029 FCALLSCFUN4(NF_INT, nc_inq_attlen, NF_INQ_ATTLEN, nf_inq_attlen,
00030             NCID, VARID, STRING, PCOUNT)
00031 
00032 
00033 /*
00034  * Obtain the name of a netCDF attribute.
00035  */
00036 FCALLSCFUN4(NF_INT, nc_inq_attname, NF_INQ_ATTNAME, nf_inq_attname,
00037             NCID, VARID, ATTID, PSTRING)
00038 
00039 
00040 /*
00041  * Copy an attribute from one netCDF dataset to another.
00042  */
00043 FCALLSCFUN5(NF_INT, nc_copy_att, NF_COPY_ATT, nf_copy_att,
00044             NCID1, VARID1, STRING, NCID2, VARID2)
00045 
00046 
00047 /*
00048  * Rename a netCDF attribute.
00049  */
00050 FCALLSCFUN4(NF_INT, nc_rename_att, NF_RENAME_ATT, nf_rename_att,
00051             NCID, VARID, STRING, STRING)
00052 
00053 
00054 /*
00055  * Remove a netCDF attribute.
00056  */
00057 FCALLSCFUN3(NF_INT, nc_del_att, NF_DEL_ATT, nf_del_att,
00058             NCID, VARID, STRING)

Generated on Thu Mar 16 18:10:08 2006 for nco by  doxygen 1.4.4