Browse Source

v.surf.bspline: linear,cubic -> bilinear,bicubic

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@59090 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 11 years ago
parent
commit
194fd148ee
1 changed files with 2 additions and 2 deletions
  1. 2 2
      vector/v.surf.bspline/main.c

+ 2 - 2
vector/v.surf.bspline/main.c

@@ -152,8 +152,8 @@ int main(int argc, char *argv[])
     type_opt->key = "method";
     type_opt->description = _("Spline interpolation algorithm");
     type_opt->type = TYPE_STRING;
-    type_opt->options = "linear,cubic";
-    type_opt->answer = "linear";
+    type_opt->options = "bilinear,bicubic";
+    type_opt->answer = "bilinear";
     type_opt->guisection = _("Settings");
     G_asprintf((char **) &(type_opt->descriptions),
 	       "bilinear;%s;bicubic;%s",