ROPO
|
#include "pyropo_compat.h"
#include "Python.h"
#include <math.h>
#include <stdio.h>
#include <string.h>
#include "pyfmiimage.h"
#include <rave.h>
#include <arrayobject.h>
#include "pypolarscan.h"
#include "pypolarvolume.h"
#include "pyravefield.h"
#include "pyrave_debug.h"
#include "rave_alloc.h"
Go to the source code of this file.
Macros | |
#define | NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION |
#define | PYFMIIMAGE_MODULE |
#define | raiseException_gotoTag(tag, type, msg) {PyErr_SetString(type, msg); goto tag;} |
#define | raiseException_returnNULL(type, msg) {PyErr_SetString(type, msg); return NULL;} |
Functions | |
PYRAVE_DEBUG_MODULE ("_pyfmiimage") | |
MOD_INIT (_fmiimage) | |
Variables | |
PyTypeObject | PyFmiImage_Type |
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION |
Definition at line 25 of file pyfmiimage.c.
#define PYFMIIMAGE_MODULE |
to get correct part in pyfmiimage
Definition at line 32 of file pyfmiimage.c.
#define raiseException_gotoTag | ( | tag, | |
type, | |||
msg ) {PyErr_SetString(type, msg); goto tag;} |
Sets a python exception and goto tag
Definition at line 51 of file pyfmiimage.c.
#define raiseException_returnNULL | ( | type, | |
msg ) {PyErr_SetString(type, msg); return NULL;} |
Sets python exception and returns NULL
Definition at line 57 of file pyfmiimage.c.
MOD_INIT | ( | _fmiimage | ) |
Initializes polar volume.
Definition at line 690 of file pyfmiimage.c.
PYRAVE_DEBUG_MODULE | ( | "_pyfmiimage" | ) |
Debug this module
PyTypeObject PyFmiImage_Type |