~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to visualization/nviz/README.ACS

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
********************************************************************************
2
 
********************************************************************************
3
 
********************************************************************************
4
 
 
5
 
*** Functions added to nviz and files involved for ACS project RIADE ***********
6
 
 
7
 
********************************************************************************
8
 
********************************************************************************
9
 
********************************************************************************
10
 
 
11
 
 
12
 
 
13
 
 
14
 
 
15
 
********************************************************************************
16
 
********************************************************************************
17
 
******************** ADDED FEATURES ********************************************
18
 
********************************************************************************
19
 
********************************************************************************
20
 
 
21
 
*** flythrough
22
 
*** Resize
23
 
*** general utilities
24
 
*** Site attributes
25
 
*** Site highlight
26
 
*** Picking
27
 
*** Time Series (TS) (Not Yet 13 march 2006)
28
 
 
29
 
 
30
 
 
31
 
 
32
 
 
33
 
********************************************************************************
34
 
********************************************************************************
35
 
******************** FILES INVOLVED ********************************************
36
 
********************************************************************************
37
 
********************************************************************************
38
 
 
39
 
************************ NEW FILES *********************************************
40
 
visualization/nviz/README.ACS
41
 
visualization/nviz/scripts/nviz_params
42
 
visualization/nviz/scripts/ACS_utils.tcl
43
 
visualization/nviz/scripts/flythrough.tcl
44
 
visualization/nviz/scripts/panel_resize.tcl
45
 
visualization/nviz/scripts/site_attr.tcl
46
 
visualization/nviz/scripts/panel_highlight.tcl
47
 
visualization/nviz/scripts/panel_pick.tcl
48
 
visualization/nviz/scripts/panel_timeSeries.tcl
49
 
visualization/nviz/scripts/ACS_TimeSeries/*.tcl
50
 
visualization/nviz/src/togl_flythrough.c
51
 
visualization/nviz/src/site_attr_commands.c
52
 
visualization/nviz/src/site_highlight_commands.c
53
 
visualization/nviz/src/pick_vect_commands.c
54
 
visualization/nviz/bitmaps/flythrough/*.gif
55
 
visualization/nviz/bitmaps/TimeSeries/*.gif
56
 
visualization/nviz/bitmaps/TimeSeries/*.xbm
57
 
 
58
 
 
59
 
************************ MODIFIED FILES *****************************************
60
 
visualization/nviz/Makefile
61
 
visualization/nviz/src/Makefile
62
 
visualization/nviz/scripts/tclIndex
63
 
visualization/nviz/scripts/panelIndex
64
 
visualization/nviz/scripts/panel_main.tcl
65
 
visualization/nviz/scripts/panel_kanimator.tcl
66
 
visualization/nviz/scripts/panel_surf.tcl
67
 
visualization/nviz/scripts/panel_vect.tcl
68
 
visualization/nviz/scripts/panel_site.tcl
69
 
visualization/nviz/scripts/colorPopup.tcl
70
 
visualization/nviz/scripts/nviz2.2_script
71
 
visualization/nviz/src/quick_draw.c
72
 
visualization/nviz/src/nviz_init.c
73
 
visualization/nviz/src/map_obj.c
74
 
lib/ogsf/gk.c
75
 
lib/ogsf/GK2.c
76
 
lib/ogsf/gstypes.h
77
 
lib/ogsf/gsds.c
78
 
lib/ogsf/Gp3.c
79
 
lib/ogsf/gpd.c
80
 
lib/ogsf/gsd_objs.c
81
 
lib/ogsf/gsurf.h
82
 
lib/sites/sites.c
83
 
 
84
 
 
85
 
 
86
 
 
87
 
********************************************************************************
88
 
********************************************************************************
89
 
******************** DETAILS ORDERED BY FEATURES ******************************
90
 
********************************************************************************
91
 
********************************************************************************
92
 
 
93
 
 
94
 
 
95
 
********************************************************************************
96
 
*** flythrough *****************************************************************
97
 
********************************************************************************
98
 
 
99
 
+++ visualization/nviz/scripts
100
 
 
101
 
(new) visualization/nviz/scripts/flythrough.tcl
102
 
        tcl part for togl_flythrough.c
103
 
 
104
 
(mod) visualization/nviz/scripts/panel_main.tcl
105
 
        "source" for flythrough.tcl and set UI for flythrough
106
 
 
107
 
(mod) visualization/nviz/scripts/panel_kanimator.tcl
108
 
        replaced get_focus with get_viewdir to work with flythrough
109
 
 
110
 
 
111
 
+++ visualization/nviz/src
112
 
 
113
 
(new) visualization/nviz/src/togl_flythrough.c
114
 
        all flythrough navigation
115
 
        Nset/Nget_viewdir commands
116
 
        override of command Ndraw_all (function draw_all
117
 
        in file draw.c) by function draw_all_together for drawing
118
 
                surf/vector/site in "fine" resolution
119
 
                all together with no flickering (no CLR
120
 
                between any of them)
121
 
        added semaphore "is_drawing" to avoid "clogging"
122
 
                between ordinary drawing and flythrough that
123
 
                try to draw continuously
124
 
 
125
 
(mod) visualization/nviz/src/quick_draw.c
126
 
        calls "flythrough_draw_cb()" after drawing, before returning
127
 
                in order to execute callbacks at the right moment
128
 
        functions that call "GS_alldraw_wire" do not execute
129
 
                "flythrough_draw_cb()"
130
 
 
131
 
(mod) visualization/nviz/src/nviz_init.c
132
 
        creates tcl commands and variables by calling
133
 
                togl_flythrough_init_tcl(interp, &data);
134
 
                that also adds timer function by calling
135
 
                                Togl_TimerFunc(togl_flythrough_timer_cb);
136
 
                                        that first time calls
137
 
                                                togl_flythrough_init(togl);
138
 
 
139
 
 
140
 
WARNING:        remember to add "togl_flythrough.o"
141
 
                        into the visualization/nviz/src/Makefile
142
 
 
143
 
+++ visualization/nviz/bitmaps
144
 
 
145
 
(new) visualization/nviz/bitmaps/flythrough/*.gif
146
 
        a_lr.gif  b_c.gif   b_lc.gif  b_lr.gif  vuota.gif
147
 
        a_ud.gif  b_cr.gif  b_l.gif   b_r.gif
148
 
                icons for flythrough help
149
 
 
150
 
 
151
 
+++ lib/ogsf
152
 
 
153
 
(mod) lib/ogsf/gk.c
154
 
        changed get/set_focus with get/set_viewdir for kanimator
155
 
                to work with flythrough
156
 
        corrected bug when adding point with disabled channels
157
 
 
158
 
(mod) lib/ogsf/GK2.c
159
 
        changed get/set_focus with get/set_viewdir for kanimator
160
 
                to work with flythrough
161
 
 
162
 
 
163
 
********************************************************************************
164
 
*** Resize *********************************************************************
165
 
********************************************************************************
166
 
 
167
 
+++ visualization/nviz/scripts
168
 
(new) visualization/nviz/scripts/panel_resize.tcl
169
 
        resize of draw window useful for kanimator movies
170
 
 
171
 
                        to panelIndex file add:
172
 
                                "resize"
173
 
                        to tclIndex file add:
174
 
                                set auto_index(mkresizePanel) "source $dir/panel_resize.tcl"
175
 
 
176
 
 
177
 
 
178
 
********************************************************************************
179
 
*** general utilities **********************************************************
180
 
********************************************************************************
181
 
 
182
 
(new) visualization/nviz/scripts/ACS_utils.tcl
183
 
        generic tcl functions useful to Time Series and Pick
184
 
 
185
 
 
186
 
 
187
 
*******************************************************************************
188
 
*** Site attributes ***********************************************************
189
 
*******************************************************************************
190
 
 
191
 
+++ REQUIRES ACS_Utils.tcl
192
 
 
193
 
+++ visualization/nviz/scripts
194
 
(mod) visualization/nviz/scripts/panel_site.tcl
195
 
        added site_attr.tcl calls
196
 
 
197
 
(new) visualization/nviz/scripts/site_attr.tcl
198
 
        all the GUI and calls to site_attr_commands.c functions
199
 
 
200
 
(mod) visualization/nviz/scripts/colorPopup.tcl
201
 
        added line
202
 
                setScales $w.top.left $color
203
 
        to solve that the scales and $w.top.color are set to white next time
204
 
        after a color button (not sliders) has been used, regardless $color
205
 
 
206
 
(mod) visualization/nviz/scripts/ACS_utils.tcl
207
 
        added function:
208
 
                modal_edit_list_plain use in site_attr.tcl
209
 
 
210
 
 
211
 
+++ visualization/nviz/src
212
 
 
213
 
(new) visualization/nviz/src/site_attr_commands.c
214
 
        this file that contains:
215
 
        - all c functions for getting fields values and setting attributes
216
 
        - interpolation/evaluation functions used for color and entries
217
 
          that could be put in a separate file if used also by others
218
 
 
219
 
(mod) visualization/nviz/src/nviz_init.c
220
 
        creates tcl commands and variables by calling
221
 
                site_attr_init_tcl(interp, &data);
222
 
                added commands: Nsite_attr_get_fields_name
223
 
                                Nsite_attr_get_fields_type
224
 
                                Nsite_attr_get_fields_name_and_type
225
 
                                Nsite_attr_get_field_values
226
 
                                Nsite_attr_get_field_not_emtpy_cats
227
 
                                Nsite_attr_get_record_values
228
 
                                Nsite_attr_get_GPT_MAX_ATTR
229
 
                                Nsite_attr_get_interpolated_values
230
 
 
231
 
(mod) visualization/nviz/src/map_obj.c
232
 
        added function: site_attr_init for each created site
233
 
        added set/unset useatt functions
234
 
 
235
 
 
236
 
WARNING:        remember to add "site_attr_commands.o"
237
 
                        into the visualization/nviz/src/Makefile
238
 
 
239
 
 
240
 
+++ lib/ogsf
241
 
 
242
 
(mod) lib/ogsf/gstypes.h
243
 
        added:
244
 
 
245
 
        #define GPT_MAX_ATTR 8
246
 
 
247
 
        in typedef struct g_point{
248
 
        ...
249
 
                int cat;
250
 
                int color[GPT_MAX_ATTR];
251
 
                float size[GPT_MAX_ATTR];
252
 
                int marker[GPT_MAX_ATTR];
253
 
        ...
254
 
        } geopoint;
255
 
 
256
 
        in typedef struct g_site{
257
 
        ...
258
 
                int use_attr[GPT_MAX_ATTR]; /* ST_ATT_COLOR, ST_ATT_MARKER, ST_ATT_SIZE, ST_ATT_NONE, for multiple attr's */
259
 
        ...
260
 
        } geosite;
261
 
 
262
 
 
263
 
(mod) lib/ogsf/Gp3.c
264
 
        added line:
265
 
                gpt->cat = nextsite->ccat;
266
 
        in order to get the link at the site cat
267
 
 
268
 
 
269
 
(mod) lib/ogsf/gpd.c
270
 
        added gpd_obj_site_attr in place of gpd_obj to manage multiple attributes
271
 
 
272
 
(mod) lib/ogsf/gsd_objs.c
273
 
        added the "box" drawing for histograms even if it should better stayed
274
 
 
275
 
(mod) lib/ogsf/gsurf.h
276
 
        added #define ST_HISTOGRAMS 10
277
 
 
278
 
+++lib/sites
279
 
 
280
 
(mod) lib/sites/sites.c
281
 
        - managing Map_info structure for sites
282
 
 
283
 
 
284
 
 
285
 
*******************************************************************************
286
 
*** Site highlight ************************************************************
287
 
*******************************************************************************
288
 
 
289
 
+++ REQUIRES Site attributes modification to lib/ogsf/gpd.c
290
 
 
291
 
 
292
 
+++ visualization/nviz/scripts
293
 
 
294
 
(new) visualization/nviz/scripts/panel_highlight.tcl
295
 
 
296
 
                        to panelIndex file add:
297
 
                                "highlight"
298
 
                        to tclIndex file add:
299
 
                                set auto_index(mkhighlightPanel) "source $dir/panel_highlight.tcl"
300
 
 
301
 
 
302
 
+++ visualization/nviz/src
303
 
 
304
 
(new) visualization/nviz/src/site_highlight_commands.c
305
 
        this file: creates Tcl commands
306
 
 
307
 
(mod) visualization/nviz/src/nviz_init.c
308
 
        creates tcl commands and variables by calling
309
 
                site_highlight_init_tcl(interp, &data);
310
 
                added commands: Nsite_highlight
311
 
                                                Nsite_highlight_list
312
 
                                                Nsite_unhighlight
313
 
                                                Nsite_unhighlight_list
314
 
                                                Nsite_unhighlight_all
315
 
                                                Nsite_highlight_set_default
316
 
                                                Nsite_highlight_get_default
317
 
                                                Nsite_highlight_set_default_value
318
 
                                                Nsite_highlight_get_default_value
319
 
 
320
 
WARNING:        remember to add site_highlight_commands.o
321
 
                        into the visualization/nviz/src/Makefile
322
 
 
323
 
+++ lib/ogsf
324
 
 
325
 
(mod) lib/ogsf/gstypes.h
326
 
 
327
 
        added in struct g_point:
328
 
        ...
329
 
        int highlight_color;
330
 
        int highlight_size;
331
 
        int highlight_marker;
332
 
 
333
 
        TRUE/FALSE flags to enable/disable proper highlight
334
 
 
335
 
        int highlight_color_value;
336
 
        float highlight_size_value;
337
 
        int highlight_marker_value;
338
 
        ...
339
 
 
340
 
        proper highlight values used for each geopoint
341
 
 
342
 
 
343
 
(mod) lib/ogsf/Gp3.c
344
 
        added line:
345
 
                gpt->highlight_color = gpt->highlight_size = gpt->highlight_marker = FALSE;
346
 
        in order to get the proper initializations
347
 
 
348
 
 
349
 
(mod) lib/ogsf/gpd.c
350
 
        added:
351
 
                if (gpt->highlight_color) color = gpt->highlight_color_value;
352
 
                if (gpt->highlight_size) marker = gpt->highlight_marker_value;
353
 
                if (gpt->highlight_marker) size *= gpt->highlight_size_value;
354
 
 
355
 
        in function "gpd_obj_site_attr" (that replaces function "gpd_obj")
356
 
 
357
 
 
358
 
 
359
 
 
360
 
********************************************************************************
361
 
*** Picking ********************************************************************
362
 
********************************************************************************
363
 
 
364
 
+++ REQUIRES ACS_Utils.tcl + .nvizrc +
365
 
+++          site_attr_commands.c + (optionally) site_highlight_commands.c
366
 
         site_attr_commands.c is used to retrieve the fields names, values
367
 
           and cats of records with a not empty specific field
368
 
     site_highlight_commands.c is optionally used to highlight picked
369
 
           objects. It is optionally used because "catch" is used in the Tcl
370
 
           code, so if it is not defined, the program doesn't fail.
371
 
 
372
 
 
373
 
+++ visualization/nviz/scripts
374
 
 
375
 
(new) visualization/nviz/scripts/panel_pick.tcl
376
 
        all tcl code
377
 
 
378
 
                        to panelIndex file add:
379
 
                                "pick"
380
 
                        to tclIndex file add:
381
 
                                set auto_index(mkpickPanel) "source $dir/panel_pick.tcl"
382
 
 
383
 
 
384
 
+++ visualization/nviz/src
385
 
 
386
 
(new) visualization/nviz/src/pick_vect_commands.c
387
 
        C functions for picking
388
 
 
389
 
(mod) visualization/nviz/src/nviz_init.c
390
 
        creates tcl commands and variables by calling
391
 
                pick_init_tcl(interp, &data);
392
 
                added commands: Npick_vect,
393
 
 
394
 
WARNING:        remember to add pick_vect_commands.o
395
 
                        into the visualization/nviz/src/Makefile
396
 
 
397
 
 
398
 
 
399
 
********************************************************************************
400
 
*** NOT YET ADDED TO CVS
401
 
********************************************************************************
402
 
*** Time Series (TS) ***********************************************************
403
 
********************************************************************************
404
 
+++ REQUIRES XML package and ACS_Utils.tcl/.nvizrc and picking
405
 
 
406
 
+++ visualization/nviz/scripts
407
 
 
408
 
(mod) visualization/nviz/scripts/panel_surf.tcl
409
 
        added interface labels and TS_delete_obj
410
 
 
411
 
(mod) visualization/nviz/scripts/panel_vect.tcl
412
 
        added TS_delete_obj
413
 
 
414
 
(mod) visualization/nviz/scripts/nviz2.2_script
415
 
        added TS_auto_load
416
 
                (Time Series Loads shows from command line ("ts_show" option added in nviz_init.c))
417
 
                after Nv_makeGUI .top
418
 
 
419
 
(new) visualization/nviz/scripts/panel_timeSeries.tcl
420
 
        "source" for ACS_TimeSeries/TS_*.tcl and UI for TS
421
 
 
422
 
                        to panelIndex file add:
423
 
                                "timeSeries"
424
 
                        to tclIndex file add:
425
 
                                set auto_index(mktimeSeriesPanel) "source $dir/panel_timeSeries.tcl"
426
 
 
427
 
(new) visualization/nviz/scripts/ACS_TimeSeries/*.tcl
428
 
        directory contains:
429
 
                TS_init.tcl
430
 
                TS_nviz.tcl
431
 
                TS_file.tcl
432
 
                TS_show.tcl
433
 
                TS_time.tcl
434
 
                TS_kf_panel.tcl
435
 
                TS_kf_win.tcl
436
 
 
437
 
WARNING: needs to change the Makefile with these lines
438
 
 
439
 
### ACS - BEGIN ###############################################################
440
 
        $(MKDIR) $(INSTALL_DIR)/scripts/ACS_TimeSeries
441
 
        $(INSTALL) scripts/ACS_TimeSeries/*.tcl $(INSTALL_DIR)/scripts/ACS_TimeSeries
442
 
### ACS - END #################################################################
443
 
 
444
 
 
445
 
+++ visualization/nviz/src
446
 
 
447
 
(mod) visualization/nviz/src/nviz_init.c
448
 
        added ts_show option to nviz command line to load a show from there
449
 
 
450
 
(mod) visualization/nviz/src/map_obj.c
451
 
        added:
452
 
                get/set/unset_att_current_persistent
453
 
                get_att_current_dataset_id
454
 
                get_att_dataset_id
455
 
                free_att_dataset
456
 
        to obj commands
457
 
 
458
 
        and when map changes, resolution doesn't change
459
 
 
460
 
 
461
 
+++ visualization/nviz/bitmaps
462
 
 
463
 
(new) visualization/nviz/bitmaps/TimeSeries/*.gif-xbm
464
 
        minus.xbm        oplink.xbm    plus.xbm  site.xbm  vect.xbm
465
 
        no_pickable.xbm  palette.gif   redo.xbm  surf.gif
466
 
        null.xbm         pickable.xbm  save.gif  undo.xbm
467
 
                icons for TimeSeries
468
 
 
469
 
 
470
 
+++ lib/ogsf
471
 
 
472
 
(mod) lib/ogsf/gstypes.h
473
 
        added persistent flag to dataset structure
474
 
 
475
 
(mod) lib/ogsf/gsds.c
476
 
        doesn't free memory if "persistent" flag is set to 1 (gsds_free_datah())
477
 
        added "gsds_set/get_persistent" functions
478
 
 
479
 
dataset structure has been modified in order to manage the "persistent"
480
 
flag that keeps in memory the current att dataset so to optimize
481
 
Time Series management that doesn't reload the datasets
482
 
at every time change, but find them already in place.
483
 
 
484
 
 
485
 
 
486
 
 
487
 
********************************************************************************
488
 
********************************************************************************
489
 
******************** FEATURES REORDERED BY ACTIONS/DIRECTORIES *****************
490
 
********************************************************************************
491
 
********************************************************************************
492
 
 
493
 
 
494
 
+++ REQUIREMENTS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
495
 
 
496
 
*** Site attributes ************************************************************
497
 
ACS_Utils.tcl + .nvizrc
498
 
 
499
 
*** Site highlight *************************************************************
500
 
Site attributes modification to lib/ogsf/gpd.c
501
 
 
502
 
*** Picking ********************************************************************
503
 
ACS_Utils.tcl + .nvizrc
504
 
site_attr_commands.c + (optionally) site_highlight_commands.c
505
 
 
506
 
*** Time Series (TS) ***********************************************************
507
 
XML package
508
 
ACS_Utils.tcl + .nvizrc
509
 
picking
510
 
 
511
 
*** general used by Time Series and Picking ************************************
512
 
Resource file
513
 
.nvizrc
514
 
must be copied in the HOME DIRECTORY where grass is launched
515
 
 
516
 
(new) visualization/nviz/scripts/ACS_utils.tcl
517
 
 
518
 
 
519
 
 
520
 
+++ to visualization/nviz/Makefile add +++++++++++++++++++++++++++++++++++++++++
521
 
 
522
 
*** Time Series (TS) ***********************************************************
523
 
### ACS - BEGIN ###############################################################
524
 
$(MKDIR) $(INSTALL_DIR)/scripts/ACS_TimeSeries
525
 
$(INSTALL) scripts/ACS_TimeSeries/*.tcl $(INSTALL_DIR)/scripts/ACS_TimeSeries
526
 
$(INSTALL) scripts/nviz_params $(INSTALL_DIR)/nviz_params
527
 
### ACS - END #################################################################
528
 
 
529
 
 
530
 
 
531
 
 
532
 
+++ to visualization/nviz/src/Makefile add +++++++++++++++++++++++++++++++++++++
533
 
 
534
 
*** flythrough *****************************************************************
535
 
togl_flythrough.o
536
 
 
537
 
*** Site attributes ************************************************************
538
 
site_attr_commands.o
539
 
 
540
 
*** Site highlight *************************************************************
541
 
site_highlight_commands.o
542
 
 
543
 
*** Picking ********************************************************************
544
 
pick_vect_commands.o
545
 
 
546
 
 
547
 
 
548
 
 
549
 
+++ to panelIndex file add +++++++++++++++++++++++++++++++++++++++++++++++++++++
550
 
 
551
 
*** Resize *********************************************************************
552
 
resize
553
 
 
554
 
*** Site highlight *************************************************************
555
 
highlight
556
 
 
557
 
*** Picking ********************************************************************
558
 
pick
559
 
 
560
 
*** Time Series (TS) ***********************************************************
561
 
timeSeries
562
 
 
563
 
 
564
 
 
565
 
+++ to tclIndex file add +++++++++++++++++++++++++++++++++++++++++++++++++++++++
566
 
 
567
 
*** Resize *********************************************************************
568
 
set auto_index(mkresizePanel) "source $dir/panel_resize.tcl"
569
 
 
570
 
*** Site highlight *************************************************************
571
 
set auto_index(mkhighlightPanel) "source $dir/panel_highlight.tcl"
572
 
 
573
 
*** Picking ********************************************************************
574
 
set auto_index(mkpickPanel) "source $dir/panel_pick.tcl"
575
 
 
576
 
*** Time Series (TS) ***********************************************************
577
 
set auto_index(mktimeSeriesPanel) "source $dir/panel_timeSeries.tcl"
578
 
 
579
 
 
580
 
+++ visualization/nviz/scripts +++++++++++++++++++++++++++++++++++++++++++++++++
581
 
 
582
 
 
583
 
*** flythrough *****************************************************************
584
 
(new) visualization/nviz/scripts/flythrough.tcl
585
 
(mod) visualization/nviz/scripts/panel_main.tcl
586
 
(mod) visualization/nviz/scripts/panel_kanimator.tcl
587
 
 
588
 
*** Resize *********************************************************************
589
 
(new) visualization/nviz/scripts/panel_resize.tcl
590
 
 
591
 
*** Site attributes ************************************************************
592
 
(mod) visualization/nviz/scripts/panel_site.tcl
593
 
(new) visualization/nviz/scripts/site_attr.tcl
594
 
(mod) visualization/nviz/scripts/colorPopup.tcl
595
 
(mod) visualization/nviz/scripts/ACS_utils.tcl
596
 
 
597
 
*** Site highlight *************************************************************
598
 
(new) visualization/nviz/scripts/panel_highlight.tcl
599
 
 
600
 
*** Picking ********************************************************************
601
 
(new) visualization/nviz/scripts/panel_pick.tcl
602
 
 
603
 
*** Time Series (TS) ***********************************************************
604
 
(mod) visualization/nviz/scripts/panel_surf.tcl
605
 
(mod) visualization/nviz/scripts/panel_vect.tcl
606
 
(mod) visualization/nviz/scripts/nviz2.2_script
607
 
(new) visualization/nviz/scripts/panel_timeSeries.tcl
608
 
 
609
 
(new) visualization/nviz/scripts/ACS_TimeSeries/*.tcl
610
 
        directory contains:
611
 
                TS_init.tcl
612
 
                TS_nviz.tcl
613
 
                TS_file.tcl
614
 
                TS_show.tcl
615
 
                TS_time.tcl
616
 
                TS_kf_panel.tcl
617
 
                TS_kf_win.tcl
618
 
 
619
 
 
620
 
 
621
 
 
622
 
+++ visualization/nviz/src +++++++++++++++++++++++++++++++++++++++++++++++++++++
623
 
 
624
 
*** flythrough *****************************************************************
625
 
(new) visualization/nviz/src/togl_flythrough.c
626
 
(mod) visualization/nviz/src/quick_draw.c
627
 
(mod) visualization/nviz/src/nviz_init.c
628
 
 
629
 
*** Site attributes ************************************************************
630
 
(new) visualization/nviz/src/site_attr_commands.c
631
 
(mod) visualization/nviz/src/nviz_init.c
632
 
(mod) visualization/nviz/src/map_obj.c
633
 
 
634
 
*** Site highlight *************************************************************
635
 
(new) visualization/nviz/src/site_highlight_commands.c
636
 
(mod) visualization/nviz/src/nviz_init.c
637
 
 
638
 
*** Picking ********************************************************************
639
 
(new) visualization/nviz/src/pick_vect_commands.c
640
 
(mod) visualization/nviz/src/nviz_init.c
641
 
 
642
 
*** Time Series (TS) ***********************************************************
643
 
(mod) visualization/nviz/src/nviz_init.c
644
 
(mod) visualization/nviz/src/map_obj.c
645
 
 
646
 
 
647
 
 
648
 
 
649
 
+++ visualization/nviz/bitmaps +++++++++++++++++++++++++++++++++++++++++++++++++
650
 
 
651
 
*** flythrough *****************************************************************
652
 
(new) visualization/nviz/bitmaps/flythrough/*.gif
653
 
        a_lr.gif  b_c.gif   b_lc.gif  b_lr.gif  vuota.gif
654
 
        a_ud.gif  b_cr.gif  b_l.gif   b_r.gif
655
 
 
656
 
*** Time Series (TS) ***********************************************************
657
 
(new) visualization/nviz/bitmaps/TimeSeries/*.gif-xbm
658
 
        minus.xbm        oplink.xbm    plus.xbm  site.xbm  vect.xbm
659
 
        no_pickable.xbm  palette.gif   redo.xbm  surf.gif
660
 
        null.xbm         pickable.xbm  save.gif  undo.xbm
661
 
 
662
 
 
663
 
 
664
 
 
665
 
 
666
 
+++ lib/ogsf +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
667
 
 
668
 
*** flythrough *****************************************************************
669
 
(mod) lib/ogsf/gk.c
670
 
(mod) lib/ogsf/GK2.c
671
 
 
672
 
*** Site attributes ************************************************************
673
 
(mod) lib/ogsf/gstypes.h
674
 
(mod) lib/ogsf/Gp3.c
675
 
(mod) lib/ogsf/gpd.c
676
 
(mod) lib/ogsf/gsd_objs.c
677
 
(mod) lib/ogsf/gsurf.h
678
 
 
679
 
*** Site highlight *************************************************************
680
 
(mod) lib/ogsf/gstypes.h
681
 
(mod) lib/ogsf/Gp3.c
682
 
(mod) lib/ogsf/gpd.c
683
 
 
684
 
*** Time Series (TS) ***********************************************************
685
 
(mod) lib/ogsf/gstypes.h
686
 
(mod) lib/ogsf/gsds.c
687
 
 
688
 
 
689
 
 
690
 
 
691
 
+++ lib/sites ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
692
 
(mod) lib/sites/sites.c