RAVE
bitmap_generator.h
Go to the documentation of this file.
1/* --------------------------------------------------------------------
2Copyright (C) 2016 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------------------------------------------------------------------------*/
25#ifndef BITMAP_GENERATOR_H
26#define BITMAP_GENERATOR_H
27#include "rave_object.h"
28#include "cartesian.h"
29#include "cartesianparam.h"
30#include "rave_field.h"
31
32
37
42
50
58RaveField_t* BitmapGenerator_create_intersect(BitmapGenerator_t* self, CartesianParam_t* param, const char* qualityFieldName);
59
60#endif
RaveCoreObjectType BitmapGenerator_TYPE
Type definition to use when creating a rave object.
Definition bitmap_generator.c:201
RaveField_t * BitmapGenerator_create_surrounding(BitmapGenerator_t *self, CartesianParam_t *param)
Creates a bitmask that surrounds all radars.
Definition bitmap_generator.c:71
RaveField_t * BitmapGenerator_create_intersect(BitmapGenerator_t *self, CartesianParam_t *param, const char *qualityFieldName)
Creates a bitmask that shows the intersection between the radars.
Definition bitmap_generator.c:133
Defines the functions available when working with cartesian products.
Defines the functions available when working with a cartesian field.
Generic field that only provides a 2-dim data field and a number of dynamic attributes.
Generic implementation of an object that is used within rave.
Represents the functionality for creating bitmaps.
Definition bitmap_generator.c:34
Represents the cartesian field product.
Definition cartesianparam.c:40
Represents the cartesian volume.
Definition rave_field.c:36
The rave object type definition.
Definition rave_object.h:52