International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

Size: px
Start display at page:

Download "International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN"

Transcription

1 International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN SPATIAL KEYWORD QUERY PROCESSING: R*-IF TREE IMPLEMENTATION Sulbha K. Powar 1, Dr. Ganesh M. Magar 2 1 Research Scholar, P. G. Department of Computer Science, SNDT Women s University, Mumbai, India 2 Associate Professor, P. G. Department of Computer Science, SNDT Women s University,Mumbai, India ABSTRACT: The integration of a Geographic Information System (GIS) and internet technology has boosted the use of spatial keyword queries. Various types of hybrid geo-textual indexing techniques are developed that enable the indexing of data that contains both text descriptions and geo-locations to support the efficient processing of spatial keyword queries that take a geo-location and a set of keywords as arguments and return relevant contents that matches the arguments. A single index structure does not suit the needs of all types of queries. Hence it is required to measure the performance using different formulations of index structures and evaluating them in different scenarios. This paper presents implementation of R*-IF tree in four different ways. Keywords: Geo-Textual Indexing, Hybrid Indexing, Inverted file, R*-Tree, R*-IF Tree [1] INTRODUCTION Many applications involve large collections of geo-spatial objects with their latitude, longitude, and the attribute data. Queries that arise over geo-spatial data are of three main types: spatial range queries, nearest neighbor queries and spatial join queries [6]. The efficient management and analysis of such data is of great interest in a wide range of application domains. Few examples amongst wide range of applications of location-based services are weather forecasting, disaster management systems, telecom and network services, urban planning, transportation planning, agriculture, asset management, tourism, water management and wildlife Sulbha K. Powar and Ganesh M. Magar 65

2 SPATIAL KEYWORD QUERY PROCESSING: R*-IF TREE IMPLEMENTATION management [9]. Efficient algorithms for answering location-based queries, which will consider both locations as well as attribute data are needed.the techniques are required that enable the indexing of data that contains both text descriptions and geo-locations to support the efficient processing of spatial keyword queries that take a geo-location and a set of keywords as arguments and return relevant content that matches the arguments [10]. [2] GEO-TEXTUAL INDEXING There is significant commercial and research interest in location-based search. Searching of keywords belonging to one or more locations (geographic references) requires geographical search and ranking based on spatial and textual relevancy. For Example - Find the 5 nearest hospitalsfrom the query location having blood banks. Find all fire stations within 10 kilometres from a query location. This type of search sets the requirement of spatial and textual indexing. Search needs to balance both spatial proximity and textual relevance. Many spatial Index structures have been proposed. Some designed primarily to index collections of points, some handle region data, and some handle both. Examples of index structure for point data are Grid files, hb trees, KD trees, Point Quad trees, SR trees. Examples of index structure for region as well as point data are Region Quad trees. R trees, SKD trees. and many more. Many variants of these index structuresalso exist. There no consensus on the best spatial index structure. R trees are widely implemented in commercial DBMSs, because of their relative simplicity, ability to handle both point and region data and their performance. R trees recursively subdivides the multidimensional space by adapting the B+ tree idea to spatial data. Many variants of R-Trees exist, viz. Cell trees, Hilbert R trees, Packed R trees, R*trees, R+ trees, TV trees and X trees. Geo-textual Indexing can be classified using 3 different aspects, the spatial indexing scheme used, the text index employed, and hybrid manner of the spatial index and the text index. Spatial Indexing Schemehave mainly three categories namely R-tree based indices, grid-based indices, and space filling curve-based indices. Text Indexing Scheme are classified as Inverted file, Bitmap and Combination Scheme. The geo-textual indices combine spatial and text indexing in one of the tree ways text-first loose combination, spatial-first loose combination (Figure 1), and tight combination (Figure 2) [6]. Figure 1: R*-IF Tree - Spatial-First Loose Combination Sulbha K. Powar and Ganesh M. Magar 66

3 International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN Figure 2: R*-IF Tree - Spatial-First Tight Combination A R*-IF is a spatial-firstindex-inverted file. An R*-tree is first built for indexing all objects in Database without considering their text components. Next, for each leaf node of the R*-tree, an inverted file is created for indexing the text components of the objects contained in the leaf node. The IF-R*, a text-first geo-textual index, is the counterpart ofr*-if. For each distinct term t in D, a separate R*-tree is built forthe objects in D containing term t.r*-if and IF R*, both are proposed for tackling the problem of retrieving web documents relevant to a keyword query within a prespecified spatial region, i.e., theboolean Range Query(BRQ). At query time, for the R*-IF, a set of leaf nodes that intersect with the query region is retrieved first. Then, objects whose documents contain query keywords are returned as the result. For the IF-R*, all the R*-trees corresponding to the query keywords need to be accessed [6]. [3] RELATED WORK Various techniques are developed for hybrid indexing which use inverted file and R-tree. Different combining schemes of hybrid indexing structure, which integrate inverted files and R*- tree were proposed [12]. Inverted file and R*-tree double index, first inverted file then R*-and first R*-tree then inverted file scheme are evaluated It was found that, these have almost same storage cost but second is better than first and third in query time. Indexes based on R*-trees are confirmed to be more efficient than indexes based on grid structures. KR*-tree were implemented for processing spatial-keyword queries with the AND semantics by capturing the joint distribution of spatial keywords [7]. In this implementation, the pruning power of both space and text is exploited simultaneously. The performance has greatly enhanced by merging the two steps into one. Information retrieval R-tree (IR2-Tree) combines an R-tree with superimposed text signatures [4]. The tight integration of data structures and algorithms with each node containing both spatial and keyword information efficiently answers top-k spatial keyword queries. The IR-tree is studied and used extensively in variations of spatial keyword queries [13]. The framework proposed uses the inverted file for text retrieval and the R-tree for spatial proximity querying [3]. Several indexing approaches like IR-tree and its variants, document similarity IR tree (DIR-tree), the cluster enhanced IR-tree (CIR-tree) and the cluster enhanced DIR-tree (CDIR-tree) are explored within the framework for computing the top-k query. Hybrid spatial-keyword index (SKI)efficiently processes top-k spatial Boolean (k-sb) queries [1]. It is done by combining an R- Sulbha K. Powar and Ganesh M. Magar 67

4 SPATIAL KEYWORD QUERY PROCESSING: R*-IF TREE IMPLEMENTATION tree with an inverted index by the inclusion of spatial references in posting lists. Spatial inverted index (S2I) improves the performance of top-k spatial keyword queries [5]. Index maps each distinct term in the vocabulary into a distinct ar-tree or block that stores all objects with the given term. The objects are stored differently according to the document frequency of the term and can be retrieved efficiently in decreasing order of keyword relevance and spatial proximity. The spatial inverted list (SI-index) is a compressed version of an I-index with embedded coordinates [11]. In location based approximate-keyword (LBAK) queriesapproximate string search is used to identify for each query keyword those strings that are similar [8]. This is useful when users do not enter the correct keyword. To answer such queries, a tree-based spatial index structure is augmented with approximate-string indexes such as a gram-based inverted index or a trie-based index and resulting structure is called as LBAK-tree index. To answer spatial approximate string (SAS) query, the MHR-treeis proposed, which embeds min-wise signatures into an R-tree [2]. [4] EXPERIMENTAL WORK Each geo-textual object has a point location with latitude, longitude, and a text description. Let D be a geo-textual dataset. Each spatial object o D is defined as a pair (o. ρ, o. φ), where o. ρ is a 2-dimensional geographical point location and o. φ is a text document [6].The performance of creating the R*-IF tree (Figure 1, Figure 2) is studied for the dataset D and the popular spatial keyword query, namely the knn query. The top-k knn queryq = (φ, ρ, k) takes three arguments, where q. φ is a set of keywords, q. ρ is a spatial query point, and q. k is the number of objects to retrieve. The result of knn, q(d), is a set of k objects, each of which covers all the keywords in q. φ. Objects are ranked according to their distances to q. ρ. Formally, o q(d) (( o D\q(D))(dist(o. ρ, q. ρ) dist(o. ρ, q. ρ)) q. φ o. φ). In this paper, four different ways of Implementing R*-IF tree for a geo-textual dataset Dare presented. To evaluate the performance, two different methods are implemented, In the first method R*-Tree and Inverted file are created simultaneouslyi.e. the node of the R*-Tree and Inverted file at the node are created one after the other. In the second method, first complete R*-Tree is created and then Inverted file are created for required nodes of the R*-Tree. Each of thesealgorithms are implemented for loose combination and for tight combinationof R*-IF tree. loose combination has Inverted file only at the leaf node and tight combination has Inverted file at every node of the R*- Tree. 1 creates R*-IF Tree with loose combination and creates Inverted Files for leaf nodes whenever they are created, updated, and split. 2 creates R*-IF Tree with loose combination and creates Inverted Files for leaf nodes only after it has finished creation of R*-tree. 3 creates R*-IF Tree with tight combination and creates Inverted Files for each node whenever it is created, updated, and split. 4 creates R*-IF Tree with tight combination and creates Inverted Files for each node only after finished creation of R*_tree. 1: R*-IF_TREE construction loosecoupling - simultaneous Input: location and text data set D Output: R*-IF_TREE Procedure: Create R* Tree Create inverted file for each leaf node, at the time of Sulbha K. Powar and Ganesh M. Magar 68

5 International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN Creation Update Splitting 2: R*-IF_TREE construction loose coupling - later Input: location and text data set D Output: R*-IF_TREE Procedure: Create R* Tree Traverse R*-Tree and create inverted file for each leaf node. 3: R*-IF_TREE construction tightcoupling - simultaneous Input: location and text data set D Output: R*-IF_TREE Procedure: Create R* Tree Create inverted file for each node, at the time of Creation Update Splitting 4: R*IF_TREE construction tight coupling - later Input: location and text data set D Output: R*-IF_TREE Procedure: Create R* Tree Traverse R*-Tree and create inverted file for each node. [5] RESULTS AND DISCUSSION The four algorithms to create R*-IF tree were evaluated with a Dataset having 1,217 hospital locationsfrom Mumbai and its attributes type of hospital and kind of services. Splitting factors of the node of the R*-Tree were varied from 2 to 14 for evaluating the performance of the algorithm. As the splitting factor of the Node was increased the number of levels were decreased from 24 to 2. Number of nodes also were decreased from 4519 to 74 resulting in decrease of node splitting and total size of all nodes as shown in Table 1. Sr. No. 1 2 Parameter Number of Levels Number of Nodes Table 1: Evaluation with respect to splitting factor Splitting factor Size of nodes Splitting of Nodes Sulbha K. Powar and Ganesh M. Magar 69

6 SPATIAL KEYWORD QUERY PROCESSING: R*-IF TREE IMPLEMENTATION As can be seen from the Table 2, more number of inverted files are created if they are created simultaneously with R*-Tree (algorithm 1 and 3) as compared to the final number of resulting inverted files. It also seen that more number of inverted files are created in tight combination (s 3 and 4) as compared to the loose combination (s 1 and 2). Number of Inverted nodes and lists created are more for tight combination and space requirement is more in case of tight combination, which decreases by increasing the splitting factor of the node. Table 2: Number of Inverted files created/final number of Inverted files Splitting factor / / / / / / / / / / / / / / / / / / / / / / / / / / / /136 Total number of nodes and leaf visited during Geo-Textual knn query are less in tight combination as compared to lose combination, as the search is pruned by checking region and inverted file at each node. If the branch doesn t satisfy spatial proximity and textual relevancy the branch is truncated from the search and there are no false positive hits in tight combination. Table 3 shows the number of internal and leaf nodes visited during Geo-Textual knn query. It is seen that this number is greatly reduced in case of tight combination. Table 3: Total Number of Internal and leaf nodes visited in knn query Loose Combination Tight Combination Splitting factor Sulbha K. Powar and Ganesh M. Magar 70

7 International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN Figure 3: Performance of queries against Loose/Tight Combination and Splitting Factor of the Node Figure 3 depicts performance of knn search with respect to the loose and the tight Combination of R*-IF Tree. Set of 10 queries q = (φ, ρ, k) were executed against each splitting factor for both loose and tight Combination of R*-IF Tree. In Figure 3 interval 0-10 on x-axis represents splitting factor 2, interval represents splitting 4 and so on. Each interval shows the number of comparisons done for each of the 10 queries from the set. As can be observed from the figure 3, the number of comparisons is much less for tightly combined than the loosely combined R*-IF Tree. Hence the query performance increases tremendously with tightly combining R*-Tree and Inverted Files in R*-IF Tree. Figure 4 shows the result of Geo-textual knn query with k =12, where the green marker is query point and red markers are resulting nearest 12 locations satisfying both spatial proximity and textual relevancy. Figure 4: Result of top-12 query Sulbha K. Powar and Ganesh M. Magar 71

8 SPATIAL KEYWORD QUERY PROCESSING: R*-IF TREE IMPLEMENTATION [6] CONCLUSION In this paper, four algorithms for creating R*-IF tree are presented. It is observed from the experimental evaluation that recreating inverted file for every split at every node is not practical as execution time and space requirement is increased tremendously. Space requirement is more for tight combination, but it is compensated by the reduced search time for Geo-Textual knn query. The fourth algorithm, which implements tight combination of R*-IF tree, where IF tree creation is done only after creating R*-Tree is most optimal as compared to the other 3 algorithms presented in this paper. REFERENCES [1] A. Cary, O. Wolfson and N. Rishe, Efficient and Scalable Method for Processing Top-k Spatial Boolean Queries, in SSDBM, [2] F. Li, B. Yao, M. Tang and M. Hadjieleftheriou, Spatial Approximate String Search, IEEE Transactions on Knowledge and Data Engineering, vol. 25, no. 6, pp , March [3] G. Cong, C. S. Jensen and D. Wu, Efficient Retrieval of the Top-k Most Relevant Spatial Web Objects, Proceedings of the VLDB Endowment, vol. 2, no. 1, p , August [4] I. D. Felipe, V. Hristidis and N. Rishe, Keyword Search on Spatial Databases, in ICDE, [5] J. B. Rocha-Junior, O. Gkorgkas, S. Jonassen and K. Nørv ag, Efficient Processing of Top-k Spatial Keyword Queries, in SSTD, Minneapolis, MN, USA, [6] L. Chen, G. Cong, C. S. Jensen and D. Wu, Spatial Keyword Query Processing: An Experimental Evaluation, in VLDB, [7] R. Hariharan, B. Hore, C. Li and S. Mehrotra, Processing Spatial-Keyword (SK) Queries in Geographic Information Retrieval (GIR) Systems, in SSBDM, Banff, Alta., Canada, [8] S. Alsubaiee, A.Behm and C.Li, Supporting Location-Based Approximate-Keyword Queries, in ACM GIS 10, San Jose, CA, USA, [9] S. Powar and G. Magar, A REVIEW ON HYBRID GEO-TEXTUAL INDEXING TECHNIQUES, International Journal of Advanced Research in Computer Science, vol. 8, no. 7, pp , [10] X. Cao, L. Chen, G. Cong, C. S. Jensen, Q. Qu, A. Skovsgaard, D. Wu and M. L. Yiu, Spatial keyword querying, in International Conference on Conceptual Modeling, Verlag Berlin Heidelberg, [11] Y. Tao and C. Sheng, Fast Nearest Neighbor Search with Keywords, IEEE Transactions on Knowledge and Data Engineering, vol. 26, no. 4, pp , April [12] Y. Zhou, X. Xie, C. Wang, Y. Gong and W.-Y. Ma, Hybrid Index Structures for Location-based Web Search, in CIKM, Bremen, Germany, [13] Z. LI, K. C. K. LEE, B. ZHENG, W.-C. LEE and D. L. LEE, IR-Tree: An Efficient Index for Geographic Document Search, IEEE Transactions on Knowledge and Data Engineering, vol. 23, no. 4, pp , September Sulbha K. Powar and Ganesh M. Magar 72

HYBRID GEO-TEXTUAL INDEX STRUCTURE FOR SPATIAL RANGE KEYWORD SEARCH

HYBRID GEO-TEXTUAL INDEX STRUCTURE FOR SPATIAL RANGE KEYWORD SEARCH HYBRID GEO-TEXTUAL INDEX STRUCTURE FOR SPATIAL RANGE KEYWORD SEARCH Su Nandar Aung 1 and Myint Mint Sein 2 1 University of Computer Studies, Yangon, Myanmar 2 Research and Development Department, University

More information

Efficient processing of top-k spatial Boolean queries for distributed system

Efficient processing of top-k spatial Boolean queries for distributed system Suresh Gyan Vihar University Journal of Engineering & Technology (An International Bi Annual Journal) Vol. 1, Issue 2, 2015,pp.38-43 ISSN: 2395 0196 Efficient processing of top-k spatial Boolean queries

More information

Searching of Nearest Neighbor Based on Keywords using Spatial Inverted Index

Searching of Nearest Neighbor Based on Keywords using Spatial Inverted Index Searching of Nearest Neighbor Based on Keywords using Spatial Inverted Index B. SATYA MOUNIKA 1, J. VENKATA KRISHNA 2 1 M-Tech Dept. of CSE SreeVahini Institute of Science and Technology TiruvuruAndhra

More information

Closest Keywords Search on Spatial Databases

Closest Keywords Search on Spatial Databases Closest Keywords Search on Spatial Databases 1 A. YOJANA, 2 Dr. A. SHARADA 1 M. Tech Student, Department of CSE, G.Narayanamma Institute of Technology & Science, Telangana, India. 2 Associate Professor,

More information

ISSN: (Online) Volume 4, Issue 1, January 2016 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 4, Issue 1, January 2016 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 4, Issue 1, January 2016 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Survey of Spatial Approximate String Search

Survey of Spatial Approximate String Search Survey of Spatial Approximate String Search B.Ramya M.Tech 1 1 Department of Computer Science and Engineering, Karunya University, Coimbatore, Tamil Nadu, India Abstract: Several applications require finding

More information

Efficient Index Based Query Keyword Search in the Spatial Database

Efficient Index Based Query Keyword Search in the Spatial Database Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 10, Number 5 (2017) pp. 1517-1529 Research India Publications http://www.ripublication.com Efficient Index Based Query Keyword Search

More information

A NOVEL APPROACH ON SPATIAL OBJECTS FOR OPTIMAL ROUTE SEARCH USING BEST KEYWORD COVER QUERY

A NOVEL APPROACH ON SPATIAL OBJECTS FOR OPTIMAL ROUTE SEARCH USING BEST KEYWORD COVER QUERY A NOVEL APPROACH ON SPATIAL OBJECTS FOR OPTIMAL ROUTE SEARCH USING BEST KEYWORD COVER QUERY S.Shiva Reddy *1 P.Ajay Kumar *2 *12 Lecterur,Dept of CSE JNTUH-CEH Abstract Optimal route search using spatial

More information

FAST NEAREST NEIGHBOR SEARCH WITH KEYWORDS

FAST NEAREST NEIGHBOR SEARCH WITH KEYWORDS Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 9, September 2014,

More information

Inverted Index for Fast Nearest Neighbour

Inverted Index for Fast Nearest Neighbour Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

Spatial Index Keyword Search in Multi- Dimensional Database

Spatial Index Keyword Search in Multi- Dimensional Database Spatial Index Keyword Search in Multi- Dimensional Database Sushma Ahirrao M. E Student, Department of Computer Engineering, GHRIEM, Jalgaon, India ABSTRACT: Nearest neighbor search in multimedia databases

More information

NOVEL CACHE SEARCH TO SEARCH THE KEYWORD COVERS FROM SPATIAL DATABASE

NOVEL CACHE SEARCH TO SEARCH THE KEYWORD COVERS FROM SPATIAL DATABASE NOVEL CACHE SEARCH TO SEARCH THE KEYWORD COVERS FROM SPATIAL DATABASE 1 Asma Akbar, 2 Mohammed Naqueeb Ahmad 1 M.Tech Student, Department of CSE, Deccan College of Engineering and Technology, Darussalam

More information

Best Keyword Cover Search

Best Keyword Cover Search Vennapusa Mahesh Kumar Reddy Dept of CSE, Benaiah Institute of Technology and Science. Best Keyword Cover Search Sudhakar Babu Pendhurthi Assistant Professor, Benaiah Institute of Technology and Science.

More information

Spatial Keyword Search. Presented by KWOK Chung Hin, WONG Kam Kwai

Spatial Keyword Search. Presented by KWOK Chung Hin, WONG Kam Kwai Spatial Keyword Search Presented by KWOK Chung Hin, WONG Kam Kwai Outline Background/ Motivations Spatial Keyword Search Applications Two types of spatial keyword query Individual Object Object Sets Background

More information

Secure and Advanced Best Keyword Cover Search over Spatial Database

Secure and Advanced Best Keyword Cover Search over Spatial Database Secure and Advanced Best Keyword Cover Search over Spatial Database Sweety Thakare 1, Pritam Patil 2, Tarade Priyanka 3, Sonawane Prajakta 4, Prof. Pathak K.R. 4 B. E Student, Dept. of Computer Engineering,

More information

Enhanced Methodology for supporting approximate string search in Geospatial data

Enhanced Methodology for supporting approximate string search in Geospatial data International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Enhanced Methodology for supporting approximate string search in Geospatial data Ashwina.R 1, Mrs.T.Megala 2 1, 2 (MCA-III year,

More information

ST-HBase: A Scalable Data Management System for Massive Geo-tagged Objects

ST-HBase: A Scalable Data Management System for Massive Geo-tagged Objects ST-HBase: A Scalable Data Management System for Massive Geo-tagged Objects Youzhong Ma, Yu Zhang, and Xiaofeng Meng School of Information, Renmin University of China, Beijing, China {mayouzhong,zhangyu199,xfmeng}@ruc.edu.cn

More information

SPATIAL INVERTED INDEX BY USING FAST NEAREST NEIGHBOR SEARCH

SPATIAL INVERTED INDEX BY USING FAST NEAREST NEIGHBOR SEARCH SPATIAL INVERTED INDEX BY USING FAST NEAREST NEIGHBOR SEARCH 1 Narahari RajiReddy 2 Dr G Karuna 3 Dr G Venkata Rami Reddy 1 M. Tech Student, Department of CSE, School of InformationTechnology-JNTUH, Hyderabad

More information

Nearest Neighbour Expansion Using Keyword Cover Search

Nearest Neighbour Expansion Using Keyword Cover Search Nearest Neighbour Expansion Using Keyword Cover Search [1] P. Sai Vamsi Aravind MTECH(CSE) Institute of Aeronautical Engineering, Hyderabad [2] P.Anjaiah Assistant Professor Institute of Aeronautical Engineering,

More information

Efficient and Scalable Method for Processing Top-k Spatial Boolean Queries

Efficient and Scalable Method for Processing Top-k Spatial Boolean Queries Efficient and Scalable Method for Processing Top-k Spatial Boolean Queries Ariel Cary 1, Ouri Wolfson 2, Naphtali Rishe 1 1 School of Computing and Information Sciences Florida International University,

More information

Efficiency of Hybrid Index Structures - Theoretical Analysis and a Practical Application

Efficiency of Hybrid Index Structures - Theoretical Analysis and a Practical Application Efficiency of Hybrid Index Structures - Theoretical Analysis and a Practical Application Richard Göbel, Carsten Kropf, Sven Müller Institute of Information Systems University of Applied Sciences Hof Hof,

More information

Closest Keyword Retrieval with Data Mining Approach

Closest Keyword Retrieval with Data Mining Approach ISSN: 2278 1323 All Rights Reserved 2015 IJARCET 2400 Closest Keyword Retrieval with Data Mining Approach Ms. Sonali B. Gosavi 1, Dr.Shyamrao.V.Gumaste 2 Abstract As the use of internet is increasing nowadays

More information

Location-Based Instant Search

Location-Based Instant Search Location-Based Instant Search Shengyue Ji and Chen Li University of California, Irvine Abstract. Location-based keyword search has become an important part of our daily life. Such a query asks for records

More information

A Study on Creating Assessment Model for Miniature Question Answer Using Nearest Neighbor Search Keywords

A Study on Creating Assessment Model for Miniature Question Answer Using Nearest Neighbor Search Keywords A Study on Creating Assessment Model for Miniature Question Answer Using Nearest Neighbor Search Keywords L.Mary Immaculate Sheela 1, R.J.Poovaraghan 2 M.Tech Student, Dept. of CSE, SRM University, Chennai,

More information

Nearest Keyword Set Search In Multi- Dimensional Datasets

Nearest Keyword Set Search In Multi- Dimensional Datasets Nearest Keyword Set Search In Multi- Dimensional Datasets 1 R. ANITHA, 2 R. JAYA SUNDARI, 3 V. KANIMOZHI, 4 K. MUMTAJ BEGAM 5 Mr. D.SATHYAMURTHY ME 1,2,3,4 Students, 5 Assistant Professor U.G Scholar MRK

More information

Quadrant-Based MBR-Tree Indexing Technique for Range Query Over HBase

Quadrant-Based MBR-Tree Indexing Technique for Range Query Over HBase Quadrant-Based MBR-Tree Indexing Technique for Range Query Over HBase Bumjoon Jo and Sungwon Jung (&) Department of Computer Science and Engineering, Sogang University, 35 Baekbeom-ro, Mapo-gu, Seoul 04107,

More information

Improved IR2-Tree Using SI-Index For Spatial Search

Improved IR2-Tree Using SI-Index For Spatial Search Improved IR2-Tree Using SI-Index For Spatial Search Sridevi.P 1, Loganathan.B 2 1 Student, 2 Associate Professor Government arts college, Coimbatore, India Abstract-Many applications require finding objects

More information

Ranking Web Pages by Associating Keywords with Locations

Ranking Web Pages by Associating Keywords with Locations Ranking Web Pages by Associating Keywords with Locations Peiquan Jin, Xiaoxiang Zhang, Qingqing Zhang, Sheng Lin, and Lihua Yue University of Science and Technology of China, 230027, Hefei, China jpq@ustc.edu.cn

More information

Using the Holey Brick Tree for Spatial Data. in General Purpose DBMSs. Northeastern University

Using the Holey Brick Tree for Spatial Data. in General Purpose DBMSs. Northeastern University Using the Holey Brick Tree for Spatial Data in General Purpose DBMSs Georgios Evangelidis Betty Salzberg College of Computer Science Northeastern University Boston, MA 02115-5096 1 Introduction There is

More information

A SURVEY ON SEARCHING SPATIO-TEXTUAL TOP K-QUERIES BY REVERSE KEYWORD

A SURVEY ON SEARCHING SPATIO-TEXTUAL TOP K-QUERIES BY REVERSE KEYWORD Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 10, October 2015,

More information

A Real Time GIS Approximation Approach for Multiphase Spatial Query Processing Using Hierarchical-Partitioned-Indexing Technique

A Real Time GIS Approximation Approach for Multiphase Spatial Query Processing Using Hierarchical-Partitioned-Indexing Technique International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2017 IJSRCSEIT Volume 2 Issue 6 ISSN : 2456-3307 A Real Time GIS Approximation Approach for Multiphase

More information

Detect tracking behavior among trajectory data

Detect tracking behavior among trajectory data Detect tracking behavior among trajectory data Jianqiu Xu, Jiangang Zhou Nanjing University of Aeronautics and Astronautics, China, jianqiu@nuaa.edu.cn, jiangangzhou@nuaa.edu.cn Abstract. Due to the continuing

More information

Top-k Spatial Keyword Preference Query

Top-k Spatial Keyword Preference Query Top-k Spatial Keyword Preference Query João Paulo Dias de Almeida and João B. Rocha-Junior State University of Feira de Santana, Brazil jpalmeida.uefs@gmail.com and joao@uefs.br Abstract. With the popularity

More information

Enhancing Spatial Inverted Index Technique for Keyword Searching With High Dimensional Data

Enhancing Spatial Inverted Index Technique for Keyword Searching With High Dimensional Data Enhancing Spatial Inverted Index Technique for Keyword Searching With High Dimensional Data 1 T. Lakshmi Prasanna 2 T. Manikanta Reddy 1 M.Tech Student, Department of CSE, Nalanda Institute of Engineering

More information

K.Veena Reddy Annamacharya Institute of Technology And Sciences, CS, DISADVANTAGES OF EXISTING SYSTEM

K.Veena Reddy Annamacharya Institute of Technology And Sciences, CS, DISADVANTAGES OF EXISTING SYSTEM Fast and Efficient Nearest Neighbor Search with Keywords K.Veena Reddy Annamacharya Institute of Technology And Sciences, CS, Veena.reddy1991@gmail.com Abstract-Search engines are used to explore/find

More information

Dr. K. Velmurugan 1, Miss. N. Meenatchi 2 1 Assistant Professor Department of Computer Science, Govt.Arts and Science College, Uthiramerur

Dr. K. Velmurugan 1, Miss. N. Meenatchi 2 1 Assistant Professor Department of Computer Science, Govt.Arts and Science College, Uthiramerur Hierarchical Data Classification and Automatic Retrieval for Location Based Publish and Subscribe System Dr. K. Velmurugan 1, Miss. N. Meenatchi 2 1 Assistant Professor Department of Computer Science,

More information

A Survey on Nearest Neighbor Search with Keywords

A Survey on Nearest Neighbor Search with Keywords A Survey on Nearest Neighbor Search with Keywords Shimna P. T 1, Dilna V. C 2 1, 2 AWH Engineering College, KTU University, Department of Computer Science & Engineering, Kuttikkatoor, Kozhikode, India

More information

Best Keyword Cover Search Using Distance and Rating

Best Keyword Cover Search Using Distance and Rating Best Keyword Cover Search Using Distance and Rating Mr. Vishal D. Kolekar, Prof. Ajay Kumar Gupta Department of Computer Engineering, SPs Institute Of Knowledge College Of Engineering, Savitribai Phule

More information

ISSN Vol.04,Issue.11, August-2016, Pages:

ISSN Vol.04,Issue.11, August-2016, Pages: WWW.IJITECH.ORG ISSN 2321-8665 Vol.04,Issue.11, August-2016, Pages:1972-1976 Fast nearest Neighbor Browsing & Search with Keywords PILLI LAXMI PRANATHI 1, NITTALA SWAPNA SUHASINI 2 1 PG Scholar, Dept of

More information

A Survey on Efficient Location Tracker Using Keyword Search

A Survey on Efficient Location Tracker Using Keyword Search A Survey on Efficient Location Tracker Using Keyword Search Prasad Prabhakar Joshi, Anand Bone ME Student, Smt. Kashibai Navale Sinhgad Institute of Technology and Science Kusgaon (Budruk), Lonavala, Pune,

More information

A Novel Framework to Measure the Degree of Difficulty on Keyword Query Routing

A Novel Framework to Measure the Degree of Difficulty on Keyword Query Routing ISSN (Online): 2349-7084 GLOBAL IMPACT FACTOR 0.238 DIIF 0.876 A Novel Framework to Measure the Degree of Difficulty on Keyword Query Routing 1 Kallem Rajender Reddy, 2 Y.Sunitha 1 M.Tech (CS),Department

More information

Efficient Adjacent Neighbor Expansion Search Keyword

Efficient Adjacent Neighbor Expansion Search Keyword International Journal for Modern Trends in Science and Technology Volume: 03, Special Issue No: 01, February 2017 ISSN: 2455-3778 http://www.ijmtst.com Efficient Adjacent Neighbor Expansion Search Keyword

More information

REMOVAL OF REDUNDANT AND IRRELEVANT DATA FROM TRAINING DATASETS USING SPEEDY FEATURE SELECTION METHOD

REMOVAL OF REDUNDANT AND IRRELEVANT DATA FROM TRAINING DATASETS USING SPEEDY FEATURE SELECTION METHOD Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

Efficient NKS Queries Search in Multidimensional Dataset through Projection and Multi-Scale Hashing Scheme

Efficient NKS Queries Search in Multidimensional Dataset through Projection and Multi-Scale Hashing Scheme Efficient NKS Queries Search in Multidimensional Dataset through Projection and Multi-Scale Hashing Scheme 1 N.NAVEEN KUMAR, 2 YASMEEN ANJUM 1 Assistant Professor, Department of CSE, School of Information

More information

Hybrid Indexing and Seamless Ranking of Spatial and Textual Features of Web Documents

Hybrid Indexing and Seamless Ranking of Spatial and Textual Features of Web Documents Hybrid Indexing and Seamless Ranking of Spatial and Textual Features of Web Documents Ali Khodaei 1, Cyrus Shahabi 1, and Chen Li 2 1 Department of Computer Science, University of Southern California,

More information

APPROXIMATE PATTERN MATCHING WITH RULE BASED AHO-CORASICK INDEX M.Priya 1, Dr.R.Kalpana 2 1

APPROXIMATE PATTERN MATCHING WITH RULE BASED AHO-CORASICK INDEX M.Priya 1, Dr.R.Kalpana 2 1 APPROXIMATE PATTERN MATCHING WITH RULE BASED AHO-CORASICK INDEX M.Priya 1, Dr.R.Kalpana 2 1 Professor, Department of Computer Science and Engineering Bharathiyar College of Engineering and Technology,

More information

EFFECTIVELY MINIMIZE THE OVERALL TRIP DISTANCE USING CONTINUOUS DETOUR QUERY IN SPATIAL NETWORK

EFFECTIVELY MINIMIZE THE OVERALL TRIP DISTANCE USING CONTINUOUS DETOUR QUERY IN SPATIAL NETWORK 26-217 Asian Research Publishing Network (ARPN). All rights reserved. EFFECTIVELY MINIMIZE THE OVERALL TRIP DISTANCE USING CONTINUOUS DETOUR QUERY IN SPATIAL NETWORK A. Sasi Kumar and G. Suseendran Department

More information

A System for Discovering Regions of Interest from Trajectory Data

A System for Discovering Regions of Interest from Trajectory Data A System for Discovering Regions of Interest from Trajectory Data Muhammad Reaz Uddin, Chinya Ravishankar, and Vassilis J. Tsotras University of California, Riverside, CA, USA {uddinm,ravi,tsotras}@cs.ucr.edu

More information

The Flexible Group Spatial Keyword Query

The Flexible Group Spatial Keyword Query The Flexible Group Spatial Keyword Query Sabbir Ahmad 1, Rafi Kamal 1, Mohammed Eunus Ali 1, Jianzhong Qi 2, Peter Scheuermann 3, and Egemen Tanin 2 1 Department of CSE, Bangladesh Univ of Eng & Tech,

More information

A. Krishna Mohan *1, Harika Yelisala #1, MHM Krishna Prasad #2

A. Krishna Mohan *1, Harika Yelisala #1, MHM Krishna Prasad #2 Vol. 2, Issue 3, May-Jun 212, pp.1433-1438 IR Tree An Adept Index for Handling Geographic Document ing A. Krishna Mohan *1, Harika Yelisala #1, MHM Krishna Prasad #2 *1,#2 Associate professor, Dept. of

More information

Keyword search in relational databases. By SO Tsz Yan Amanda & HON Ka Lam Ethan

Keyword search in relational databases. By SO Tsz Yan Amanda & HON Ka Lam Ethan Keyword search in relational databases By SO Tsz Yan Amanda & HON Ka Lam Ethan 1 Introduction Ubiquitous relational databases Need to know SQL and database structure Hard to define an object 2 Query representation

More information

Spatial Data Management

Spatial Data Management Spatial Data Management [R&G] Chapter 28 CS432 1 Types of Spatial Data Point Data Points in a multidimensional space E.g., Raster data such as satellite imagery, where each pixel stores a measured value

More information

RASIM: a rank-aware separate index method for answering top-k spatial keyword queries

RASIM: a rank-aware separate index method for answering top-k spatial keyword queries World Wide Web (2013) 16:111 139 DOI 10.1007/s11280-012-0159-3 RASIM: a rank-aware separate index method for answering top-k spatial keyword queries Hyuk-Yoon Kwon Kyu-Young Whang Il-Yeol Song Haixun Wang

More information

Spatial Data Management

Spatial Data Management Spatial Data Management Chapter 28 Database management Systems, 3ed, R. Ramakrishnan and J. Gehrke 1 Types of Spatial Data Point Data Points in a multidimensional space E.g., Raster data such as satellite

More information

Evaluation of Spatial Keyword Queries with Partial Result Support on Spatial Networks

Evaluation of Spatial Keyword Queries with Partial Result Support on Spatial Networks Evaluation of Spatial Keyword Queries with Partial Result Support on Spatial Networks Ji Zhang, Wei-Shinn Ku, Xiao Qin Dept. of Computer Science and Software Engineering, Auburn University, Auburn, AL,

More information

MULTIDIMENSIONAL INDEXING TREE STRUCTURE FOR SPATIAL DATABASE MANAGEMENT

MULTIDIMENSIONAL INDEXING TREE STRUCTURE FOR SPATIAL DATABASE MANAGEMENT MULTIDIMENSIONAL INDEXING TREE STRUCTURE FOR SPATIAL DATABASE MANAGEMENT Dr. G APPARAO 1*, Mr. A SRINIVAS 2* 1. Professor, Chairman-Board of Studies & Convener-IIIC, Department of Computer Science Engineering,

More information

Batch processing of Top-k Spatial-textual Queries

Batch processing of Top-k Spatial-textual Queries processing of Top-k Spatial-textual Queries Farhana M. Choudhury J. Shane Culpepper Timos Sellis School of CSIT, RMIT University, Melbourne, Australia {farhana.choudhury,shane.culpepper,timos.sellis}@rmit.edu.au

More information

Evaluation of Keyword Search System with Ranking

Evaluation of Keyword Search System with Ranking Evaluation of Keyword Search System with Ranking P.Saranya, Dr.S.Babu UG Scholar, Department of CSE, Final Year, IFET College of Engineering, Villupuram, Tamil nadu, India Associate Professor, Department

More information

Efficient Nearest and Score Based Ranking for Keyword Search

Efficient Nearest and Score Based Ranking for Keyword Search Efficient Nearest and Score Based Ranking for Keyword Search 1 Rajkumar.R, 2 Manimekalai.P, 2 Mohanapriya.M, 3 Vimalarani.C Abstract - Conventional spatial queries, such as range search and nearest neighbour

More information

Improved Framework Of Location Aware Keyword Query Suggestion (LKS) In Geo-Based Social Applications

Improved Framework Of Location Aware Keyword Query Suggestion (LKS) In Geo-Based Social Applications Improved Framework Of Location Aware Keyword Query Suggestion (LKS) In Geo-Based Social Applications Klapala Mounika 1, M.Sailaja 2, V. Siva Parvathi 3 1 M.Tech (CSE), 2.Assistant Professor, 3 Assistant

More information

An Edge-Based Algorithm for Spatial Query Processing in Real-Life Road Networks

An Edge-Based Algorithm for Spatial Query Processing in Real-Life Road Networks An Edge-Based Algorithm for Spatial Query Processing in Real-Life Road Networks Ye-In Chang, Meng-Hsuan Tsai, and Xu-Lun Wu Abstract Due to wireless communication technologies, positioning technologies,

More information

Web Based Spatial Ranking System

Web Based Spatial Ranking System Research Inventy: International Journal Of Engineering And Science Vol.3, Issue 5 (July 2013), Pp 47-53 Issn(e): 2278-4721, Issn(p):2319-6483, Www.Researchinventy.Com 1 Mr. Vijayakumar Neela, 2 Prof. Raafiya

More information

11/30/2010 IEEE CloudCom 2010

11/30/2010 IEEE CloudCom 2010 Afsin Akdogan, Ugur Demiryurek, Farnoush Banaei-Kashani and Cyrus Shahabi University of Southern California 11/30/2010 IEEE CloudCom 2010 Outline Motivation Related Work Preliminaries Voronoi Diagram (Index)

More information

Multiterm Keyword Searching For Key Value Based NoSQL System

Multiterm Keyword Searching For Key Value Based NoSQL System Multiterm Keyword Searching For Key Value Based NoSQL System Pallavi Mahajan 1, Arati Deshpande 2 Department of Computer Engineering, PICT, Pune, Maharashtra, India. Pallavinarkhede88@gmail.com 1, ardeshpande@pict.edu

More information

Supporting Fuzzy Keyword Search in Databases

Supporting Fuzzy Keyword Search in Databases I J C T A, 9(24), 2016, pp. 385-391 International Science Press Supporting Fuzzy Keyword Search in Databases Jayavarthini C.* and Priya S. ABSTRACT An efficient keyword search system computes answers as

More information

An Efficient Technique for Distance Computation in Road Networks

An Efficient Technique for Distance Computation in Road Networks Fifth International Conference on Information Technology: New Generations An Efficient Technique for Distance Computation in Road Networks Xu Jianqiu 1, Victor Almeida 2, Qin Xiaolin 1 1 Nanjing University

More information

User-Contributed Relevance and Nearest Neighbor Queries

User-Contributed Relevance and Nearest Neighbor Queries User-Contributed Relevance and Nearest Neighbor Queries Christodoulos Efstathiades 1 and Dieter Pfoser 2,3 1 Knowledge and Database Systems Laboratory National Technical University of Athens, Greece cefstathiades@dblab.ece.ntua.gr

More information

Ensemble Reverse Spatial Keyword Search

Ensemble Reverse Spatial Keyword Search Ensemble Reverse Spatial Keyword Search K.Sitamaha Lakshmi 1, Ms.D.N Rajeswari 2, 1 M.Tech Andhra Loyola Institute of Engineering & Technology, Vijayawada. A.P., India. 2 Assistant Professor, Andhra Loyola

More information

Tag Based Image Search by Social Re-ranking

Tag Based Image Search by Social Re-ranking Tag Based Image Search by Social Re-ranking Vilas Dilip Mane, Prof.Nilesh P. Sable Student, Department of Computer Engineering, Imperial College of Engineering & Research, Wagholi, Pune, Savitribai Phule

More information

A Self-Adaptive Insert Strategy for Content-Based Multidimensional Database Storage

A Self-Adaptive Insert Strategy for Content-Based Multidimensional Database Storage A Self-Adaptive Insert Strategy for Content-Based Multidimensional Database Storage Sebastian Leuoth, Wolfgang Benn Department of Computer Science Chemnitz University of Technology 09107 Chemnitz, Germany

More information

Survey of String Similarity Join Algorithms on Large Scale Data

Survey of String Similarity Join Algorithms on Large Scale Data Survey of String Similarity Join Algorithms on Large Scale Data P.Selvaramalakshmi Research Scholar Dept. of Computer Science Bishop Heber College (Autonomous) Tiruchirappalli, Tamilnadu, India. Dr. S.

More information

Multidimensional Indexes [14]

Multidimensional Indexes [14] CMSC 661, Principles of Database Systems Multidimensional Indexes [14] Dr. Kalpakis http://www.csee.umbc.edu/~kalpakis/courses/661 Motivation Examined indexes when search keys are in 1-D space Many interesting

More information

A Novel Categorized Search Strategy using Distributional Clustering Neenu Joseph. M 1, Sudheep Elayidom 2

A Novel Categorized Search Strategy using Distributional Clustering Neenu Joseph. M 1, Sudheep Elayidom 2 A Novel Categorized Search Strategy using Distributional Clustering Neenu Joseph. M 1, Sudheep Elayidom 2 1 Student, M.E., (Computer science and Engineering) in M.G University, India, 2 Associate Professor

More information

Voronoi-based Trajectory Search Algorithm for Multi-locations in Road Networks

Voronoi-based Trajectory Search Algorithm for Multi-locations in Road Networks Journal of Computational Information Systems 11: 10 (2015) 3459 3467 Available at http://www.jofcis.com Voronoi-based Trajectory Search Algorithm for Multi-locations in Road Networks Yu CHEN, Jian XU,

More information

KEYWORD BASED OPTIMAL SEARCH FOR EXTRACTING NEAREST NEIGHBOR

KEYWORD BASED OPTIMAL SEARCH FOR EXTRACTING NEAREST NEIGHBOR KEYWORD BASED OPTIMAL SEARCH FOR EXTRACTING NEAREST NEIGHBOR 1 M. SHILPA, 2 M. VASAVI 1 PG Scholar, Department of CSE, TKR College of Engineering & Technology, Hyderabad, India. 2 Associate Professor,

More information

Introduction to Spatial Database Systems

Introduction to Spatial Database Systems Introduction to Spatial Database Systems by Cyrus Shahabi from Ralf Hart Hartmut Guting s VLDB Journal v3, n4, October 1994 Data Structures & Algorithms 1. Implementation of spatial algebra in an integrated

More information

DS504/CS586: Big Data Analytics Data Management Prof. Yanhua Li

DS504/CS586: Big Data Analytics Data Management Prof. Yanhua Li Welcome to DS504/CS586: Big Data Analytics Data Management Prof. Yanhua Li Time: 6:00pm 8:50pm R Location: KH 116 Fall 2017 First Grading for Reading Assignment Weka v 6 weeks v https://weka.waikato.ac.nz/dataminingwithweka/preview

More information

MAINTAIN TOP-K RESULTS USING SIMILARITY CLUSTERING IN RELATIONAL DATABASE

MAINTAIN TOP-K RESULTS USING SIMILARITY CLUSTERING IN RELATIONAL DATABASE INTERNATIONAL JOURNAL OF RESEARCH IN COMPUTER APPLICATIONS AND ROBOTICS ISSN 2320-7345 MAINTAIN TOP-K RESULTS USING SIMILARITY CLUSTERING IN RELATIONAL DATABASE Syamily K.R 1, Belfin R.V 2 1 PG student,

More information

ERCIM Alain Bensoussan Fellowship Scientific Report

ERCIM Alain Bensoussan Fellowship Scientific Report ERCIM Alain Bensoussan Fellowship Scientific Report Fellow: Christos Doulkeridis Visited Location : NTNU Duration of Visit: March 01, 2009 February 28, 2010 I - Scientific activity The research conducted

More information

Top-K Ranking Spatial Queries over Filtering Data

Top-K Ranking Spatial Queries over Filtering Data Top-K Ranking Spatial Queries over Filtering Data 1 Lakkapragada Prasanth, 2 Krishna Chaitanya, 1 Student, 2 Assistant Professor, NRL Instiute of Technology,Vijayawada Abstract: A spatial preference query

More information

CONTENT BASED IMAGE RETRIEVAL SYSTEM USING IMAGE CLASSIFICATION

CONTENT BASED IMAGE RETRIEVAL SYSTEM USING IMAGE CLASSIFICATION International Journal of Research and Reviews in Applied Sciences And Engineering (IJRRASE) Vol 8. No.1 2016 Pp.58-62 gopalax Journals, Singapore available at : www.ijcns.com ISSN: 2231-0061 CONTENT BASED

More information

M Thulasi 2 Student ( M. Tech-CSE), S V Engineering College for Women, (Affiliated to JNTU Anantapur) Tirupati, A.P, India

M Thulasi 2 Student ( M. Tech-CSE), S V Engineering College for Women, (Affiliated to JNTU Anantapur) Tirupati, A.P, India Volume 4, Issue 7, July 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Enhanced Driving

More information

Foundations of Multidimensional and Metric Data Structures

Foundations of Multidimensional and Metric Data Structures Foundations of Multidimensional and Metric Data Structures Hanan Samet University of Maryland, College Park ELSEVIER AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE

More information

Efficient Construction of Safe Regions for Moving knn Queries Over Dynamic Datasets

Efficient Construction of Safe Regions for Moving knn Queries Over Dynamic Datasets Efficient Construction of Safe Regions for Moving knn Queries Over Dynamic Datasets Mahady Hasan, Muhammad Aamir Cheema, Xuemin Lin, Ying Zhang The University of New South Wales, Australia {mahadyh,macheema,lxue,yingz}@cse.unsw.edu.au

More information

On Processing Location Based Top-k Queries in the Wireless Broadcasting System

On Processing Location Based Top-k Queries in the Wireless Broadcasting System On Processing Location Based Top-k Queries in the Wireless Broadcasting System HaRim Jung, ByungKu Cho, Yon Dohn Chung and Ling Liu Department of Computer Science and Engineering, Korea University, Seoul,

More information

Keyword Search Using General Form of Inverted Index

Keyword Search Using General Form of Inverted Index Keyword Search Using General Form of Inverted Index Mrs. Pratiksha P. Nikam Prof. Srinu Dharavath Mr. Kunal Gawande Lecturer Professor(Guide) Software developer GSMCOE, Pune,india GSMCOE, Pune,india Mumbai,

More information

A Hybrid Peer-to-Peer Architecture for Global Geospatial Web Service Discovery

A Hybrid Peer-to-Peer Architecture for Global Geospatial Web Service Discovery A Hybrid Peer-to-Peer Architecture for Global Geospatial Web Service Discovery Shawn Chen 1, Steve Liang 2 1 Geomatics, University of Calgary, hschen@ucalgary.ca 2 Geomatics, University of Calgary, steve.liang@ucalgary.ca

More information

Ontology Based Prediction of Difficult Keyword Queries

Ontology Based Prediction of Difficult Keyword Queries Ontology Based Prediction of Difficult Keyword Queries Lubna.C*, Kasim K Pursuing M.Tech (CSE)*, Associate Professor (CSE) MEA Engineering College, Perinthalmanna Kerala, India lubna9990@gmail.com, kasim_mlp@gmail.com

More information

Effective Pattern Similarity Match for Multidimensional Sequence Data Sets

Effective Pattern Similarity Match for Multidimensional Sequence Data Sets Effective Pattern Similarity Match for Multidimensional Sequence Data Sets Seo-Lyong Lee, * and Deo-Hwan Kim 2, ** School of Industrial and Information Engineering, Hanu University of Foreign Studies,

More information

Data Warehousing & Data Mining

Data Warehousing & Data Mining Data Warehousing & Data Mining Wolf-Tilo Balke Kinda El Maarry Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.de Summary Last week: Logical Model: Cubes,

More information

Nearest Clustering Algorithm for Satellite Image Classification in Remote Sensing Applications

Nearest Clustering Algorithm for Satellite Image Classification in Remote Sensing Applications Nearest Clustering Algorithm for Satellite Image Classification in Remote Sensing Applications Anil K Goswami 1, Swati Sharma 2, Praveen Kumar 3 1 DRDO, New Delhi, India 2 PDM College of Engineering for

More information

So, we want to perform the following query:

So, we want to perform the following query: Abstract This paper has two parts. The first part presents the join indexes.it covers the most two join indexing, which are foreign column join index and multitable join index. The second part introduces

More information

Ground and Non-Ground Filtering for Airborne LIDAR Data

Ground and Non-Ground Filtering for Airborne LIDAR Data Cloud Publications International Journal of Advanced Remote Sensing and GIS 2016, Volume 5, Issue 1, pp. 1500-1506 ISSN 2320-0243, Crossref: 10.23953/cloud.ijarsg.41 Research Article Open Access Ground

More information

CLUSTERING BIG DATA USING NORMALIZATION BASED k-means ALGORITHM

CLUSTERING BIG DATA USING NORMALIZATION BASED k-means ALGORITHM Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

Ranking models in Information Retrieval: A Survey

Ranking models in Information Retrieval: A Survey Ranking models in Information Retrieval: A Survey R.Suganya Devi Research Scholar Department of Computer Science and Engineering College of Engineering, Guindy, Chennai, Tamilnadu, India Dr D Manjula Professor

More information

A Novel Method for Search the Nearest Neigbhour Search in Data Base

A Novel Method for Search the Nearest Neigbhour Search in Data Base A Novel Method for Search the Nearest Neigbhour Search in Data Base Thota.Devendra M.Tech (CS), Sree Rama Engineering College. N.Jayakrishna, M.Tech, Guide, Sree Rama Engineering College. Abstract: Conventional

More information

Analyzing Outlier Detection Techniques with Hybrid Method

Analyzing Outlier Detection Techniques with Hybrid Method Analyzing Outlier Detection Techniques with Hybrid Method Shruti Aggarwal Assistant Professor Department of Computer Science and Engineering Sri Guru Granth Sahib World University. (SGGSWU) Fatehgarh Sahib,

More information

Problem 1: Complexity of Update Rules for Logistic Regression

Problem 1: Complexity of Update Rules for Logistic Regression Case Study 1: Estimating Click Probabilities Tackling an Unknown Number of Features with Sketching Machine Learning for Big Data CSE547/STAT548, University of Washington Emily Fox January 16 th, 2014 1

More information

COMPARATIVE STUDY OF HISTOGRAM SHIFTING ALGORITHMS FOR DIGITAL WATERMARKING

COMPARATIVE STUDY OF HISTOGRAM SHIFTING ALGORITHMS FOR DIGITAL WATERMARKING International Journal of Computer Engineering and Applications, Volume X, Issue VII, July 16 www.ijcea.com ISSN 2321-3469 COMPARATIVE STUDY OF HISTOGRAM SHIFTING ALGORITHMS FOR DIGITAL WATERMARKING Geeta

More information

International Journal of Computer Engineering and Applications, Volume IX, Issue X, Oct. 15 ISSN

International Journal of Computer Engineering and Applications, Volume IX, Issue X, Oct. 15  ISSN DIVERSIFIED DATASET EXPLORATION BASED ON USEFULNESS SCORE Geetanjali Mohite 1, Prof. Gauri Rao 2 1 Student, Department of Computer Engineering, B.V.D.U.C.O.E, Pune, Maharashtra, India 2 Associate Professor,

More information