1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* Print z coordinate value for each node */
- #include <grass/gis.h>
- #include <grass/vector.h>
- #include <grass/display.h>
- #include <grass/glocale.h>
- #include "local_proto.h"
- #include "plot.h"
- int display_zcoor(struct Map_info *Map, int type, LATTR *lattr)
- {
- int num, el, ltype;
- double xl, yl, zl;
- struct line_pnts *Points;
- char text[50];
- if (!Vect_is_3d(Map)) {
- G_warning(_("Vector map is not 3D. Unable to display z-coordinates."));
- return 1;
- }
-
- G_debug(1, "display zcoor:");
- Points = Vect_new_line_struct();
-
- D_RGB_color(lattr->color.R, lattr->color.G, lattr->color.B);
- D_text_size(lattr->size, lattr->size);
- if (lattr->font)
- D_font(lattr->font);
- if (lattr->enc)
- D_encoding(lattr->enc);
- Vect_rewind(Map);
- num = Vect_get_num_lines(Map);
- G_debug(1, "n_lines = %d", num);
- /* Points - no nodes registered */
- for (el = 1; el <= num; el++) {
- if (!Vect_line_alive(Map, el))
- continue;
- ltype = Vect_read_line(Map, Points, NULL, el);
- if ((ltype != GV_POINT) && (ltype & type))
- continue;
- G_debug(3, "point = %d", el);
-
- sprintf(text, "%.2f", Points->z[0]);
- show_label(&Points->x[0], &Points->y[0], lattr, text);
- }
-
- num = Vect_get_num_nodes(Map);
- G_debug(1, "n_nodes = %d", num);
- /* Nodes */
- for (el = 1; el <= num; el++) {
- if (!Vect_node_alive(Map, el))
- continue;
- Vect_get_node_coor(Map, el, &xl, &yl, &zl);
- G_debug(3, "node = %d", el);
- sprintf(text, "%.2f", zl);
- show_label(&xl, &yl, lattr, text);
- }
- Vect_destroy_line_struct(Points);
-
- return 0;
- }
|