RAVE
rave_bufr_io.h
Go to the documentation of this file.
1/* --------------------------------------------------------------------
2Copyright (C) 2011 Swedish Meteorological and Hydrological Institute, SMHI,
3
4This file is part of RAVE.
5
6RAVE is free software: you can redistribute it and/or modify
7it under the terms of the GNU Lesser General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11RAVE is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU Lesser General Public License for more details.
15
16You should have received a copy of the GNU Lesser General Public License
17along with RAVE. If not, see <http://www.gnu.org/licenses/>.
18------------------------------------------------------------------------*/
26#ifndef RAVE_BUFR_IO_H
27#define RAVE_BUFR_IO_H
28#include "rave_object.h"
29#include "polarscan.h"
30#include "polarvolume.h"
31
36
41
48int RaveBufrIO_setTableDir(RaveBufrIO_t* self, const char* dirname);
49
55const char* RaveBufrIO_getTableDir(RaveBufrIO_t* self);
56
63RaveCoreObject* RaveBufrIO_read(RaveBufrIO_t* self, const char* filename);
64
70int RaveBufrIO_isBufr(const char* filename);
71
72#endif /* RAVE_BUFR_IO_H */
Defines the functions available when working with polar scans.
Defines the functions available when working with polar volumes.
const char * RaveBufrIO_getTableDir(RaveBufrIO_t *self)
Returns the table dir name.
Definition rave_bufr_io.c:791
int RaveBufrIO_isBufr(const char *filename)
Tests if the specified file is a bufr file.
Definition rave_bufr_io.c:830
RaveCoreObject * RaveBufrIO_read(RaveBufrIO_t *self, const char *filename)
Reads the bufr file.
Definition rave_bufr_io.c:797
int RaveBufrIO_setTableDir(RaveBufrIO_t *self, const char *dirname)
Sets the table dir name where the descriptor information resides.
Definition rave_bufr_io.c:769
RaveCoreObjectType RaveBufrIO_TYPE
Type definition to use when creating a rave object.
Definition rave_bufr_io.c:851
Generic implementation of an object that is used within rave.
Defines the structure for the RaveIO in a volume.
Definition rave_bufr_io.c:73
The basic raveobject that contains the header information for all rave objects.
Definition rave_object.h:42
The rave object type definition.
Definition rave_object.h:52