123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- ##########################################################################
- # chart.tcl - vector chart layer options file for GRASS GIS Manager
- # March 2006 Michael Barton, Arizona State University
- # COPYRIGHT: (C) 1999 - 2006 by the GRASS Development Team
- #
- # This program is free software under the GNU General Public
- # License (>=v2). Read the file COPYING that comes with GRASS
- # for details.
- #
- ##########################################################################
- namespace eval GmChart {
- variable array opt # chart options
- variable count 1
- variable array lfile # vector
- variable array lfilemask # vector
- variable optlist
- variable array dup # vector
- }
- ###############################################################################
- proc GmChart::create { tree parent } {
- variable opt
- variable count
- variable dup
- variable lfile
- variable lfilemask
- variable optlist
- global iconpath
- set node "chart:$count"
- set frm [ frame .charticon$count]
- set check [checkbutton $frm.check \
- -variable GmChart::opt($count,1,_check) \
- -height 1 -padx 0 -width 0]
- image create photo chartico -file "$iconpath/module-d.vect.chart.gif"
- set ico [label $frm.ico -image chartico -bd 1 -relief raised]
-
- bind $ico <ButtonPress-1> "GmTree::selectn $tree $node"
- pack $check $ico -side left
-
- #insert new layer
- if {[$tree selection get] != "" } {
- set sellayer [$tree index [$tree selection get]]
- } else {
- set sellayer "end"
- }
- $tree insert $sellayer $parent $node \
- -text "chart $count"\
- -window $frm \
- -drawcross auto
-
- set opt($count,1,_check) 1
- set dup($count) 0
-
- set opt($count,1,map) ""
- set opt($count,1,opacity) 1.0
- set opt($count,1,type_point) 1
- set opt($count,1,type_line) 1
- set opt($count,1,type_boundary) 1
- set opt($count,1,type_centroid) 1
- set opt($count,1,type_area) 0
- set opt($count,1,layer) 1
- set opt($count,1,ctype) "pie"
- set opt($count,1,columns) ""
- set opt($count,1,sizecol) ""
- set opt($count,1,csize) 40
- set opt($count,1,cscale) 1
- set opt($count,1,ocolor) "black"
- set opt($count,1,fcolors) ""
- set opt($count,1,mod) 1
-
- set optlist { _check map opacity layer ctype columns sizecol csize cscale ocolor fcolors \
- type_point type_line type_boundary type_centroid type_area}
- foreach key $optlist {
- set opt($count,0,$key) $opt($count,1,$key)
- }
-
- # create files in tmp diretory for layer output
- set mappid [pid]
- if {[catch {set lfile($count) [exec g.tempfile pid=$mappid]} error]} {
- GmLib::errmsg $error [G_msg "Error creating tempfile"]
- }
- set lfilemask($count) $lfile($count)
- append lfile($count) ".ppm"
- append lfilemask($count) ".pgm"
- incr count
- return $node
- }
- ###############################################################################
- proc GmChart::set_option { node key value } {
- variable opt
-
- set id [GmTree::node_id $node]
- set opt($id,1,$key) $value
- }
- proc GmChart::select_map { id } {
- variable tree
- variable node
- set m [GSelect vector title [G_msg "Vector map for chart"] parent "."]
- if { $m != "" } {
- set GmChart::opt($id,1,map) $m
- GmTree::autonamel [format [G_msg "chart for %s"] $m ]
- }
- }
- ###############################################################################
- proc GmChart::show_columns { id } {
- variable opt
- global bgcolor
- set mapname $opt($id,1,map)
- set layernum $opt($id,1,layer)
- set cmd "v.info -c map=$mapname layer=$layernum"
- run_panel $cmd
- }
- proc GmChart::show_data { id } {
- variable opt
- global bgcolor
- set mapname $opt($id,1,map)
- set layer $opt($id,1,layer)
- if ![catch {open "|v.db.connect map=$mapname layer=$layer -g" r} vdb] {
- set vectdb [read $vdb]
- if {[catch {close $vdb} error]} {
- GmLib::errmsg $error
- }
- set vdblist [split $vectdb " "]
- set tbl [lindex $vdblist 1]
- set db [lindex $vdblist 3]
- set drv [lindex $vdblist 4]
- set cmd "db.select table=$tbl database=$db driver=$drv"
- run_panel $cmd
- }
- }
- ###############################################################################
- # chart options
- proc GmChart::options { id frm } {
- variable opt
-
- global bgcolor
- global iconpath
-
- # Panel heading
- set row [ frame $frm.heading1 ]
- Label $row.a -text [G_msg "Display pie and bar charts of attribute values at vector object locations"] \
- -fg MediumBlue
- pack $row.a -side left
- pack $row -side top -fill both -expand yes
- #opacity
- set row [ frame $frm.opc]
- Label $row.a -text [G_msg "Opaque "]
- scale $row.b -from 1.0 -to 0.0 -showvalue 1 \
- -orient horizontal -length 300 -resolution 0.01 -fg "#656565"\
- -variable GmChart::opt($id,1,opacity)
- Label $row.c -text [G_msg " Transparent"]
- pack $row.a $row.b $row.c -side left
- pack $row -side top -fill both -expand yes
-
- # vector name
- set row [ frame $frm.map ]
- Label $row.a -text [G_msg "Vector map to chart:"]
- Button $row.b -image [image create photo -file "$iconpath/element-vector.gif"] \
- -highlightthickness 0 -takefocus 0 -relief raised -borderwidth 1 \
- -helptext [G_msg "vector map to chart"] \
- -command "GmChart::select_map $id"
- Entry $row.c -width 30 -text " $opt($id,1,map)" \
- -textvariable GmChart::opt($id,1,map)
- Label $row.d -text " "
- Button $row.e -text [G_msg "Help"] \
- -image [image create photo -file "$iconpath/gui-help.gif"] \
- -command "spawn g.manual --q d.vect.chart" \
- -background $bgcolor \
- -helptext [G_msg "Help"]
- pack $row.a $row.b $row.c $row.d $row.e -side left
- pack $row -side top -fill both -expand yes
- # vector type
- set row [ frame $frm.type ]
- Label $row.a -text [G_msg "Vector type:"]
- checkbutton $row.b -text [G_msg "points"] -variable GmChart::opt($id,1,type_point)
- checkbutton $row.c -text [G_msg "lines"] -variable GmChart::opt($id,1,type_line)
- checkbutton $row.d -text [G_msg "boundaries"] -variable GmChart::opt($id,1,type_boundary)
- checkbutton $row.e -text [G_msg "centroids"] -variable GmChart::opt($id,1,type_centroid)
- checkbutton $row.f -text [G_msg "areas"] -variable GmChart::opt($id,1,type_area)
- pack $row.a $row.b $row.c $row.d $row.e $row.f -side left
- pack $row -side top -fill both -expand yes
- # attributes1 and data
- set row [ frame $frm.attr1 ]
- Label $row.a -text [G_msg "Attributes to chart: attribute layer"]
- LabelEntry $row.b -textvariable GmChart::opt($id,1,layer) -width 5
- pack $row.a $row.b -side left
- pack $row -side top -fill both -expand yes
- # show data and columns
- set row [ frame $frm.showcolumns ]
- Label $row.a -text [G_msg " show attribute columns"]
- Button $row.b -text [G_msg "columns"] \
- -image [image create photo -file "$iconpath/db-columns.gif"] \
- -command "GmChart::show_columns $id" \
- -background $bgcolor \
- -helptext [G_msg "Show columns"]
- Label $row.c -text [G_msg " show attribute data"]
- Button $row.d -text [G_msg "data"] \
- -image [image create photo -file "$iconpath/db-values.gif"] \
- -command "GmChart::show_data $id" \
- -background $bgcolor \
- -helptext [G_msg "Show data"]
- pack $row.a $row.b $row.c $row.d -side left
- pack $row -side top -fill both -expand yes
- # attributes2
- set row [ frame $frm.attr2 ]
- Label $row.a -text [G_msg "\tcolumns to chart (col1,col2,...) "]
- LabelEntry $row.b -textvariable GmChart::opt($id,1,columns) -width 30
- pack $row.a $row.b -side left
- pack $row -side top -fill both -expand yes
- # attributes3
- set row [ frame $frm.attr3 ]
- Label $row.a -text [G_msg "\tcolors for columns (clr1,clr2,...)"]
- LabelEntry $row.b -textvariable GmChart::opt($id,1,fcolors) -width 30 -padx 2
- pack $row.a $row.b -side left
- pack $row -side top -fill both -expand yes
- # attributes4
- set row [ frame $frm.attr4 ]
- Label $row.a -text [G_msg "\tcolumn for variable chart size"]
- LabelEntry $row.b -textvariable GmChart::opt($id,1,sizecol) -width 12 -padx 8
- Label $row.c -text [G_msg " scale factor"]
- LabelEntry $row.d -textvariable GmChart::opt($id,1,cscale) -width 4
- pack $row.a $row.b $row.c $row.d -side left
- pack $row -side top -fill both -expand yes
- # chart options1
- set row [ frame $frm.chopt1 ]
- Label $row.a -text [G_msg "Chart type:"]
- ComboBox $row.b -padx 2 -width 4 -textvariable GmChart::opt($id,1,ctype) \
- -values {"pie" "bar"}
- Label $row.c -text [G_msg "\tfixed chart size (if size column not used)"]
- LabelEntry $row.d -textvariable GmChart::opt($id,1,csize) -width 4
- pack $row.a $row.b $row.c $row.d -side left
- pack $row -side top -fill both -expand yes
- # chart options2
- set row [ frame $frm.chopt2 ]
- Label $row.a -text [G_msg "\tchart outline color:"]
- ComboBox $row.b -padx 0 -width 10 -textvariable GmChart::opt($id,1,ocolor) \
- -values {"none" "white" "grey" "gray" "black" "brown" "red" "orange" \
- "yellow" "green" "aqua" "cyan" "indigo" "blue" "purple" "violet" "magenta"}
- pack $row.a $row.b -side left
- pack $row -side top -fill both -expand yes
- }
- ###############################################################################
- proc GmChart::save { tree depth node } {
- variable opt
- variable optlist
-
- set id [GmTree::node_id $node]
- foreach key $optlist {
- GmTree::rc_write $depth "$key $opt($id,1,$key)"
- }
- }
- ###############################################################################
- # get selected vector map
- proc GmChart::mapname { node } {
- variable opt
- variable tree
- global mon
-
- set tree($mon) $GmTree::tree($mon)
- set id [GmTree::node_id $node]
- if { $opt($id,1,map) == "" } { return ""}
- set mapname $opt($id,1,map)
- return $mapname
- }
- ###############################################################################
- proc GmChart::display { node mod } {
- global mon
- variable optlist
- variable lfile
- variable lfilemask
- variable opt
- variable tree
- variable dup
- variable count
- set line ""
- set input ""
-
- set cmd ""
- set tree($mon) $GmTree::tree($mon)
- set id [GmTree::node_id $node]
- # If we are told dirty (for zoom) force dirty
- # Don't remove a dirty from a previous unrendered zoom
- if {$mod} {set opt($id,1,mod) 1}
- if { $opt($id,1,map) == "" } { return }
- if { $opt($id,1,columns) == "" } { return }
- if { !$opt($id,1,type_point) && !$opt($id,1,type_line) &&
- !$opt($id,1,type_boundary) && !$opt($id,1,type_centroid) &&
- !$opt($id,1,type_area) } { return }
- # combine vector types
- set type ""
- if { $opt($id,1,type_point) } { append type "point" }
- if { $opt($id,1,type_line) && "$type" != "" } {
- append type ",line"
- } elseif { $opt($id,1,type_line) && "$type" == "" } {
- append type "line"}
- if { $opt($id,1,type_boundary) && "$type" != "" } {
- append type ",boundary"
- } elseif { $opt($id,1,type_boundary) && "$type" == "" } {
- append type "boundary"}
- if { $opt($id,1,type_centroid) && "$type" != "" } {
- append type ",centroid"
- } elseif { $opt($id,1,type_centroid) && "$type" == "" } {
- append type "centroid"}
- if { $opt($id,1,type_area) && "$type" != "" } {
- append type ",area"
- } elseif { $opt($id,1,type_area) && "$type" == "" } {
- append type "area"}
- #create d.vect.chart command
- set cmd "d.vect.chart map=$opt($id,1,map) type=$type \
- layer=$opt($id,1,layer) columns=$opt($id,1,columns) \
- ctype=$opt($id,1,ctype) ocolor=$opt($id,1,ocolor) "
-
- # sizecol
- if { $opt($id,1,sizecol) != "" } {
- append cmd " sizecol=$opt($id,1,sizecol)"
- }
- # csize
- if { $opt($id,1,csize) != "" } {
- append cmd " size=$opt($id,1,csize)"
- }
- # cscale
- if { $opt($id,1,cscale) != "" } {
- append cmd " scale=$opt($id,1,cscale)"
- }
- # fcolors
- if { $opt($id,1,fcolors) != "" } {
- append cmd " colors=$opt($id,1,fcolors)"
- }
- # Decide whether to run, run command, and copy files to temp
- GmCommonLayer::display_command [namespace current] $id $cmd
- }
- ###############################################################################
- proc GmChart::duplicate { tree parent node id } {
- variable optlist
- variable lfile
- variable lfilemask
- variable opt
- variable count
- variable dup
- global iconpath
- set node "chart:$count"
- set dup($count) 1
- set frm [ frame .charticon$count]
- set check [checkbutton $frm.check \
- -variable GmChart::opt($count,1,_check) \
- -height 1 -padx 0 -width 0]
- image create photo chartico -file "$iconpath/module-d.vect.chart.gif"
- set ico [label $frm.ico -image chartico -bd 1 -relief raised]
- bind $ico <ButtonPress-1> "GmTree::selectn $tree $node"
- pack $check $ico -side left
- #insert new layer
- if {[$tree selection get] != "" } {
- set sellayer [$tree index [$tree selection get]]
- } else {
- set sellayer "end"
- }
- if { $opt($id,1,map) == ""} {
- $tree insert $sellayer $parent $node \
- -text "chart $count" \
- -window $frm \
- -drawcross auto
- } else {
- $tree insert $sellayer $parent $node \
- -text "chart for $opt($id,1,map)" \
- -window $frm \
- -drawcross auto
- }
- set opt($count,1,opacity) $opt($id,1,opacity)
- set optlist { _check map layer ctype columns sizecol csize cscale ocolor fcolors \
- type_point type_line type_boundary type_centroid type_area}
- foreach key $optlist {
- set opt($count,1,$key) $opt($id,1,$key)
- set opt($count,0,$key) $opt($count,1,$key)
- }
-
- set id $count
-
- # create files in tmp directory for layer output
- set mappid [pid]
- if {[catch {set lfile($count) [exec g.tempfile pid=$mappid]} error]} {
- GmLib::errmsg $error [G_msg "Error creating tempfile"]
- }
- set lfilemask($count) $lfile($count)
- append lfile($count) ".ppm"
- append lfilemask($count) ".pgm"
- incr count
- return $node
- }
|