~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to imagery/i.rectify/crs.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/***************************************************************************/
3
 
 
4
 
/***************************************************************************/
5
 
/*
6
 
   CRS.H - Center for Remote Sensing rectification routines
7
 
 
8
 
   Written By: Brian J. Buckley
9
 
 
10
 
   At: The Center for Remote Sensing
11
 
   Michigan State University
12
 
   302 Berkey Hall
13
 
   East Lansing, MI  48824
14
 
   (517)353-7195
15
 
 
16
 
   Written: 12/19/91
17
 
 
18
 
   Last Update: 12/26/91 Brian J. Buckley
19
 
 */
20
 
 
21
 
/***************************************************************************/
22
 
 
23
 
/***************************************************************************/
24
 
 
25
 
#define MAXORDER 3
26
 
 
27
 
#ifdef MSDOS
28
 
 
29
 
extern int CRS_compute_georef_equations(struct Control_Points *, double *,
30
 
                                        double *, double *, double *, int);
31
 
extern int CRS_georef(double, double, double *, double *, double *, double *,
32
 
                      int);
33
 
 
34
 
#else
35
 
 
36
 
#ifdef NO_PROTO
37
 
extern int CRS_compute_georef_equations();
38
 
extern int CRS_georef();
39
 
#else
40
 
/* crs.c */
41
 
void CRS_georef2(int, double[], double[], double[], double[], int);
42
 
int CRS_georef(double, double, double *, double *, double[], double[], int);
43
 
int CRS_compute_georef_equations(struct Control_Points *,
44
 
                                 double[], double[], double[], double[], int);
45
 
#endif
46
 
 
47
 
#endif