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

« back to all changes in this revision

Viewing changes to imagery/i.ortho.photo/libes/cam.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_camera_new (group)
4
 
* I_fopen_group_camera_old (group)
5
 
*
6
 
* fopen() the imagery group camera reference file "CAMERA"
7
 
* (containing the name of the camera associated with the group)
8
 
**********************************************************/
9
 
#include <grass/imagery.h>
10
 
#include "orthophoto.h"
11
 
#include <grass/ortholib.h>
12
 
 
13
 
FILE *I_fopen_group_camera_new(char *group)
14
 
{
15
 
    return I_fopen_group_file_new(group, "CAMERA");
16
 
}
17
 
 
18
 
FILE *I_fopen_group_camera_old(char *group)
19
 
{
20
 
    return I_fopen_group_file_old(group, "CAMERA");
21
 
}