-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOGR_Formats.tcl
More file actions
33 lines (28 loc) · 793 Bytes
/
Copy pathOGR_Formats.tcl
File metadata and controls
33 lines (28 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
# the next line restarts using tclsh \
exec $SPI_PATH/tclsh "$0" "$@"
#============================================================================
# Environnement Canada
# Centre Meteorologique Canadien
# 2100 Trans-Canadienne
# Dorval, Quebec
#
# Projet : Exemple de scripts.
# Fichier : OGR_Basic.tcl
# Creation : Mai 2000 - J.P. Gauthier - CMC/CMOE
# Description: Afficher la liste des formats reconnus par les APIs
#
# Parametres :
#
# Retour:
#
# Remarques :
#
#============================================================================
package require TclData
#package require TclGeoEER
package require Logger
Log::Start [info script] 0.1
puts "OGR Formats :\n\t[join [ogrfile format] "\n\t"]"
puts "GDAL Formats:\n\t[join [gdalfile format] "\n\t"]"
Log::End