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

« back to all changes in this revision

Viewing changes to vector/v.vol.rst/oct.c

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
/*
2
2
 ****************************************************************************
3
3
 *
4
 
 * MODULE:       s.vol.rst: program for 3D(volume) interpolation and geometry
 
4
 * MODULE:       v.vol.rst: program for 3D (volume) interpolation and geometry
5
5
 *               analysis from scattered point data using regularized spline
6
6
 *               with tension
7
7
 *
11
11
 *               GRASS 4.2, GRASS 5.0 version and modifications:
12
12
 *               H. Mitasova,  I. Kosinovsky, D. Gerdes, J. Hofierka
13
13
 *
14
 
 * PURPOSE:      s.vol.rst interpolates the values to 3-dimensional grid from
 
14
 * PURPOSE:      v.vol.rst interpolates the values to 3-dimensional grid from
15
15
 *               point data (climatic stations, drill holes etc.) given in a
16
 
 *               sites file named input. Output grid3 file is elev. 
 
16
 *               3D vector point input. Output grid3 file is elev. 
17
17
 *               Regularized spline with tension is used for the
18
18
 *               interpolation.
19
19
 *
21
21
 *               I. Kosinovsky, D. Gerdes, J. Hofierka
22
22
 *
23
23
 *               This program is free software under the GNU General Public
24
 
 *              License (>=v2). Read the file COPYING that comes with GRASS
25
 
 *              for details.
 
24
 *               License (>=v2). Read the file COPYING that comes with GRASS
 
25
 *               for details.
26
26
 *
27
27
 *****************************************************************************/
28
28