/*! \file sindex.c \brief Vector library - spatial index Higher level functions for reading/writing/manipulating vectors. (C) 2001-2008 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. \author Radim Blazek \date 2001 */ #include #include #include #include #include #include /*! \brief Init spatial index \param si pointer to spatial index structure \return void */ void Vect_spatial_index_init(SPATIAL_INDEX * si) { G_debug(1, "Vect_spatial_index_init()"); si->root = RTreeNewIndex(); } /*! \brief Destroy existing spatial index Vect_spatial_index_init() must be call before new use. \param si pointer to spatial index structure \return void */ void Vect_spatial_index_destroy(SPATIAL_INDEX * si) { G_debug(1, "Vect_spatial_index_destroy()"); RTreeDestroyNode(si->root); } /*! \brief Add a new item to spatial index \param si pointer to spatial index structure \param id item identifier \param box pointer to item bounding box \return void */ void Vect_spatial_index_add_item(SPATIAL_INDEX * si, int id, BOUND_BOX * box) { struct Rect rect; G_debug(3, "Vect_spatial_index_add_item(): id = %d", id); rect.boundary[0] = box->W; rect.boundary[1] = box->S; rect.boundary[2] = box->B; rect.boundary[3] = box->E; rect.boundary[4] = box->N; rect.boundary[5] = box->T; RTreeInsertRect(&rect, id, &(si->root), 0); } /*! \brief Delete item from spatial index \param si pointer to spatial index structure \param id item identifier \return void */ void Vect_spatial_index_del_item(SPATIAL_INDEX * si, int id) { int ret; struct Rect rect; G_debug(3, "Vect_spatial_index_del_item(): id = %d", id); /* TODO */ G_fatal_error("Vect_spatial_index_del_item() %s", _("not implemented")); /* Bounding box of item would be needed, which is not stored in si. */ /* rect.boundary[0] = ; rect.boundary[1] = ; rect.boundary[2] = ; rect.boundary[3] = ; rect.boundary[4] = ; rect.boundary[5] = ; */ ret = RTreeDeleteRect(&rect, id, &(si->root)); if (ret) G_fatal_error(_("Unable to delete item %d from spatial index"), id); } /*! \brief Create spatial index if necessary. To be used in modules. Map must be opened on level 2. \param Map pointer to vector map \param out print progress here \return 0 OK \return 1 error */ int Vect_build_spatial_index(struct Map_info *Map) { if (Map->level < 2) { G_fatal_error(_("Unable to build spatial index from topology, " "vector map is not opened at topo level 2")); } if (!(Map->plus.Spidx_built)) { return (Vect_build_sidx_from_topo(Map)); } return 0; } /*! \brief Create spatial index from topo if necessary \param Map pointer to vector map \return 0 OK \return 1 error */ int Vect_build_sidx_from_topo(struct Map_info *Map) { int i, total, done; struct Plus_head *plus; BOUND_BOX box; P_LINE *Line; P_NODE *Node; P_AREA *Area; P_ISLE *Isle; G_debug(3, "Vect_build_sidx_from_topo()"); plus = &(Map->plus); dig_spidx_init(plus); total = plus->n_nodes + plus->n_lines + plus->n_areas + plus->n_isles; /* Nodes */ for (i = 1; i <= plus->n_nodes; i++) { Node = plus->Node[i]; if (!Node) G_fatal_error(_("BUG (Vect_build_sidx_from_topo): node does not exist")); dig_spidx_add_node(plus, i, Node->x, Node->y, Node->z); } /* Lines */ done = plus->n_nodes; for (i = 1; i <= plus->n_lines; i++) { Line = plus->Line[i]; if (!Line) G_fatal_error(_("BUG (Vect_build_sidx_from_topo): line does not exist")); box.N = Line->N; box.S = Line->S; box.E = Line->E; box.W = Line->W; box.T = Line->T; box.B = Line->B; dig_spidx_add_line(plus, i, &box); } /* Areas */ done += plus->n_lines; for (i = 1; i <= plus->n_areas; i++) { Area = plus->Area[i]; if (!Area) G_fatal_error(_("BUG (Vect_build_sidx_from_topo): area does not exist")); box.N = Area->N; box.S = Area->S; box.E = Area->E; box.W = Area->W; box.T = Area->T; box.B = Area->B; dig_spidx_add_area(plus, i, &box); } /* Isles */ done += plus->n_areas; for (i = 1; i <= plus->n_isles; i++) { Isle = plus->Isle[i]; if (!Isle) G_fatal_error(_("BUG (Vect_build_sidx_from_topo): isle does not exist")); box.N = Isle->N; box.S = Isle->S; box.E = Isle->E; box.W = Isle->W; box.T = Isle->T; box.B = Isle->B; dig_spidx_add_isle(plus, i, &box); } Map->plus.Spidx_built = 1; G_debug(3, "Spatial index was built"); return 0; } /************************* SELECT BY BOX *********************************/ /* This function is called by RTreeSearch() to add selected item to the list */ static int _add_item(int id, struct ilist *list) { dig_list_add(list, id); return 1; } /*! \brief Select items by bounding box to list \param si pointer to spatial index structure \param box bounding box \param list pointer to list where selected items are stored \return number of selected items */ int Vect_spatial_index_select(SPATIAL_INDEX * si, BOUND_BOX * box, struct ilist *list) { struct Rect rect; G_debug(3, "Vect_spatial_index_select()"); list->n_values = 0; rect.boundary[0] = box->W; rect.boundary[1] = box->S; rect.boundary[2] = box->B; rect.boundary[3] = box->E; rect.boundary[4] = box->N; rect.boundary[5] = box->T; RTreeSearch(si->root, &rect, (void *)_add_item, list); G_debug(3, " %d items selected", list->n_values); return (list->n_values); }