瀏覽代碼

m.proj: in/out -> input/output

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@38204 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 16 年之前
父節點
當前提交
2bedc658c6
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      scripts/m.proj/m.proj.py

+ 4 - 4
scripts/m.proj/m.proj.py

@@ -54,13 +54,13 @@
 #% answer : |
 #%end
 #%option
-#% key: proj_in
+#% key: proj_input
 #% type: string
 #% description: Input projection parameters (PROJ.4 style)
 #% required : no
 #%end
 #%option
-#% key: proj_out
+#% key: proj_output
 #% type: string
 #% description: Output projection parameters (PROJ.4 style)
 #% required : no
@@ -95,8 +95,8 @@ def main():
     input = options['input']
     output = options['output']
     fs = options['fs']
-    proj_in = options['proj_in']
-    proj_out = options['proj_out']
+    proj_in = options['proj_input']
+    proj_out = options['proj_output']
     ll_in = flags['i']
     ll_out = flags['o']
     decimal = flags['d']