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

« back to all changes in this revision

Viewing changes to imagery/i.ortho.photo/libes/group_elev.c

  • 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
 
* I_fopen_group_elev_new (group)
4
 
* I_fopen_group_elev_old (group)
5
 
*
6
 
* fopen() the imagery group elev reference file "ELEVATION"
7
 
* (containing the name of the elev associated with the block)
8
 
**********************************************************/
9
 
#include <grass/imagery.h>
10
 
#include "orthophoto.h"
11
 
 
12
 
FILE *I_fopen_group_elev_new(char *group)
13
 
{
14
 
    return ((FILE *) I_fopen_group_file_new(group, "ELEVATION"));
15
 
}
16
 
 
17
 
FILE *I_fopen_group_elev_old(char *group)
18
 
{
19
 
    return ((FILE *) I_fopen_group_file_old(group, "ELEVATION"));
20
 
}
21
 
 
22
 
int I_find_group_elev_file(char *group)
23
 
{
24
 
    return I_find_group_file(group, "ELEVATION");
25
 
}