~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to raster/r.mfilter/filter.h

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <grass/gis.h>
 
2
#include <grass/raster.h>
 
3
#include <grass/rowio.h>
2
4
typedef struct
3
5
{
4
6
    int size;                   /* size of filter matrix */
5
 
    int **matrix;               /* filter coefficient matrix */
6
 
    int **dmatrix;              /* divisor coefficient matrix */
7
 
    int divisor;                /* filter scale factor */
 
7
    double **matrix;            /* filter coefficient matrix */
 
8
    double **dmatrix;           /* divisor coefficient matrix */
 
9
    double divisor;             /* filter scale factor */
8
10
    int type;                   /* sequential or parallel */
9
11
    int start;                  /* starting corner */
10
12
} FILTER;
17
19
#define LR 4
18
20
 
19
21
/* apply.c */
20
 
CELL apply_filter(FILTER *, CELL **);
 
22
DCELL apply_filter(FILTER *, DCELL **);
21
23
 
22
24
/* getfilt.c */
23
25
FILTER *get_filter(char *, int *, char *);
24
26
 
25
27
/* perform.c */
26
 
int perform_filter(char *, char *, char *, FILTER *, int, int);
 
28
int perform_filter(const char *, const char *, FILTER *, int, int);
27
29
 
28
 
#ifdef GRASS_ROWIO_H
29
30
/* execute.c */
30
 
int execute_filter(ROWIO *, int, FILTER *, CELL *);
31
 
#endif
 
31
int execute_filter(ROWIO *, int, FILTER *, DCELL *);