SPATIAL DATABASES AND GEOGRAPHICAL INFORMATION SYSTEMS (GIS)
|
|
|
- Brook Mitchell
- 10 years ago
- Views:
Transcription
1 zk SPATIAL DATABASES AND GEOGRAPHICAL INFORMATION SYSTEMS (GIS) HANAN SAMET COMPUTER SCIENCE DEPARTMENT AND CENTER FOR AUTOMATION RESEARCH AND INSTITUTE FOR ADVANCED COMPUTER STUDIES UNIVERSITY OF MARYLAND COLLEGE PARK, MARYLAND USA Copyright 22 Hanan Samet These notes may not be reproduced by any means (mechanical or electronic or any other) without the express written permission of Hanan Samet
2 zk OUTLINE. GIS overview 2. Background 3. General database issues 4. Spatial indexing 5. The SAND browser 6. Spatial database issues 7. Challenges
3 zk2 WHAT IS A GIS? Def: a system that uses spatial (i.e., geographically referenced) and non-spatial (i.e., attribute) data and includes operations that support spatial analysis Alternative names: AM/FM (automated mapping and facilities management) geographically referenced information system land information system natural resources information system spatial data management (or handling) system spatial database
4 zk3 FIELDS THAT ARE INVOLVED IN GIS. Cartography display of visual information 2. Civil Engineering transportation 3. Computer science databases, computer graphics, image processing 4. Geodesy high accuracy positional control 5. Geography spatial analysis, relation of man to world 6. Mathematics geometry, graph theory 7. Operations research optimization 8. Photogrammetry aerial photographs are best sources for topography 9. Remote sensing images from space. Statistics models, analysis of error. Surveying position of land boundaries, buildings, etc.
5 SOME TYPICAL GIS QUERIES. What feature is at location X? 2. Does feature F exist anywhere? 3. Report the identity of all features present 4. Select all the locations where feature F is present 5. Where is object A with respect to object B? zk4 6. Simulate the effect of phenomenon P for time period T in area A 7. What is the cheapest, fastest, or least resistant path from A to B? 8. What is the value of function f at location X? 9. What is the result of overlaying a given set of map layers?. What is the result of intersecting a given set of map layers?. What combination of features is at location X? 2. Where is object A in relation to object B or location X? 3. Report all features within distance d of location X or object A 4. Reclassify certain ranges of feature values 5. Proximity queries such as what objects are next to other objects having certain attribute values 6. Measure properties such as area, perimeter, etc.
6 zk5 GIS OPERATIONS. Display the data 2. Find a pattern in the data knowledge discovery what is or what could be? usually by decomposing data into finer levels of meaning 3. Predict the behavior of the data at another time and place what should be?
7 zk6 GIS ANALYSIS FUNCTIONS. Local operations retrieval classification and recoding generalization reducing detail measurement 2. Overlay operations 3. Neighborhood operations search proximity e.g., Voronoi diagrams TIN generation interpolation contour generation buffer or corridor generation 4. Connectivity operations network functions e.g., flow, routing, siting spread functions i.e., phenomena accumulate with distance seek or stream functions e.g., drainage intervisibility
8 zk7 EXAMPLE OF GIS (MUNICIPAL DATABASE). Basemap data control points topographic contours building sites 2. Natural area data soil types landuse (e.g., industrial, agricultural, zoning, etc.) vegetation water (e.g., rivers, ponds, etc.) 3. Manmade area data school districts emergency service areas (e.g., fire, police, etc.) 4. Land records data lot boundaries zoning easements and rights-of-way 5. Network data utilities (e.g., phones, sewers, water, electricity, etc.) roads a. road centerlines b. road intersections c. street lights
9 zk8 BACKGROUND (A PERSONAL VIEW!). GIS originally focussed on paper map as output anything is better than drawing by hand no great emphasis on execution time 2. Paper output supports high resolution display screen is of limited resolution can admit less precise algorithms Ex: buffer zone computation (spatial range query) a. usually use a Euclidean distance metric (L 2 ) takes a long time b. can be sped up using a quadtree and a Chessboard distance metric (L ) not as accurate as Euclidean but may not be able to perceive the difference on a display screen! as much as 3 orders of magnitude faster 3. Users accustomed to spreadsheets GIS should work like a spreadsheet fast response time ability to ask what if questions and see the results incorporate a database for seamless integration of spatial and nonspatial (i.e., attribute data)
10 zk9 GENERAL SPATIAL DATABASE ISSUES. Why do we want a database? to store data so that it can be retrieved efficiently should not lose sight of this purpose 2. How to integrate spatial data with nonspatial data 3. Long fields in a relational database are not the answer a stopgap solution as just a repository for data does not aid in retrieving the data if data is large in volume, then breaks down as tuples get very large 4. A database is really a collection of records with fields corresponding to attributes of different types records are like points in a higher dimensional space a. some adaptations take advantage of this analogy b. however, can act like a straight jacket in case of relational model 5. Retrieval is facilitated by building an index need to find a way to sort the data index should be compatible with data being stored choose an appropriate zero or reference point need an implicit rather than an explicit index a. impossible to foresee all possible queries in advance b. explicit would sort two-dimensional points on the basis of their distance from a particular point P impractical as sort is inapplicable to points different from P
11 zk 6. Identify the possible queries and find their analogs in conventional databases e.g., a map in a spatial database is like a relation in a conventional database (also known as spatial relation) a. difference is the presence of spatial attribute(s) b. also presence of spatial output 7. How do we interact with the database? SQL may not be easy to adapt graphical query language output may be visual in which case a browsing capability (e.g., an iterator) is useful 8. What strategy do we use in answering a query that mixes traditional data with nontraditional data? need query optimization rules must define selectivity factors a. dependent on whether index exists on nontraditional data b. if no, then select on traditional data first Ex: find all cities within miles of the Mississippi River with population in excess of million a. spatial selection first if region is small (implies high spatial selectivity) b. relational selection first if very few cities with a large population (implies high relational selectivity)
12 zk DATA IN SPATIAL DATABASES. Spatial information locations of objects (are discrete, individual points in space) space occupied by objects (are continuous; have extent) a. example objects lines (e.g., roads, rivers) regions (e.g., buildings, crop maps, polyhedra) others... b. are objects disjoint or may they overlap? e.g., several crop types may be grown on a plot of land not concerned here with raster vs: vector issues as these are data representation issues rather than data type issues 2. Non-spatial information region names, postal codes,... city population, year founded,... road names, speed limits,...
13 zk2 SAMPLE QUERIES ON SPATIAL OBJECTS Queries about the objects. all objects that contain a given point or set of points 2. all objects that have a non-empty intersection with a given object 3. all objects that have a partial boundary in common 4. all objects that have a boundary in common 5. all objects that have any points in common 6. all objects that contain a given object 7. all objects that are included in a given object Proximity queries. nearest object to a given point or object 2. all objects within a given distance of a point or object (also known as a range or window query) Queries involving non-spatial attributes of objects. given a point or object, find the nearest object of a particular type 2. Given a point, find the minimum enclosing object of a particular type 3. Given a point, find all the objects of a particular type whose boundary passes through it
14 zk3 WHAT MAKES CONTINUOUS SPATIAL DATA DIFFERENT. Spatial extent of the objects is the key to the difference 2. A record in a DBMS may be considered as a point in a multidimensional space a line can be transformed (i.e., represented) as a point in 4-d space with (x, y, x 2, y 2 ) (x 2, y 2 ) (x, y ) good for queries about the line segments not good for proximity queries since points outside the object are not mapped into the higher dimensional space representative points of two objects that are physically close to each other in the original space (e.g., 2-d for lines) may be very far from each other in the higher dimensional space (e.g., 4-d) Ex: problem is that the transformation only A transforms the space occupied by the objects and not the rest of the space B (e.g., the query point) can overcome by projecting back to original space 3. Use an index that sorts based upon spatial occupancy (i.e., extent of the objects)
15 SORTING ON THE BASIS OF SPATIAL OCCUPANCY zk4 Decompose the space from which the data is drawn into regions called buckets (like hashing but preserves order) Interested in methods that are designed specifically for the spatial data type being stored Basic approaches to decomposing space. minimum bounding rectangles e.g., R-tree good at distinguishing empty and non-empty space drawbacks: a. non-disjoint decomposition of space may need to search entire space b. inability to correlate occupied and unoccupied space in two maps 2. disjoint cells drawback: objects may be reported more than once uniform grid a. all cells the same size b. drawback: possibility of many sparse cells adaptive grid quadtree variants a. regular decomposition b. all cells of width power of 2 partitions at arbitrary positions a. drawback: not a regular decomposition b. e.g., R + -tree Can use as approximations in filter/refine query processing strategy
16 4 3 2 zk5 MINIMUM BOUNDING RECTANGLES g z r b Objects grouped into hierarchies, stored in another structure such as a B-tree Drawback: not a disjoint decomposition of space Object has single bounding rectangle, yet area that it spans may be included in several bounding rectangles Examples include the R-tree and the R*-tree Order (m,m ) R-tree. between m M/2 and M entries in each node except root 2. at least 2 entries in root unless a leaf node R R3 b R4 g h R5 R2 a i R6 e d f R c R: R R2 R: R3 R4 R2: R5 R6 R3: a b R4: d g h R5: c i R6: e f
17 SEARCHING FOR A POINT OR LINE SEGMENT IN AN R-TREE b zk6 Drawback is that may have to examine many nodes since a line segment can be contained in the covering rectangles of many nodes yet its record is contained in only one leaf node (e.g., i in R2, R3, R4, and R5) Ex: Search for a line segment containing point Q 5 g 4 3 z r 2 v R: R R2 R: R3 R4 R2: R5 R6 R3: a b R4: d g h R5: c i R6: e f R R3 h a b g i R6 e R4 d Q f R R2 R5 c Q is in R Q can be in both R and R2 Searching R first means that R4 is searched but this leads to failure even though Q is part of i which is in R4 Searching R2 finds that Q can only be in R5
18 zk7 UNIFORM GRID Ideal for uniformly distributed data Supports set-theoretic operations Spatial data (e.g., line segment data) is rarely uniformly distributed
19 QUADTREES zk8 Hierarchical variable resolution data structure based on regular decomposition Many different decomposition schemes and applicable to different data types:. points 2. lines 3. regions 4. rectangles 5. surfaces 6. volumes 7. higher dimensions including time changes meaning of nearest a. nearest in time, OR b. nearest in distance Can handle both raster and vector data as just a spatial index Shape is usually independent of order of inserting data Ex: region quadtree A decomposition into blocks not necessarily a tree!
20 zk9 REGION QUADTREE Repeatedly subdivide until obtain homogeneous region For a binary image (BLACK and WHITE ) Can also use for multicolored data (e.g., a landuse class map associating colors with crops) Can also define the data structure for grayscale images A collection of maximal blocks of size power of two and placed at predetermined positions. could implement as a list of blocks each of which has a unique pair of numbers: concatenate a sequence of 2 bit codes corresponding to the path from the root to the block s node the level of the block s node 2. does not have to be implemented as a tree tree good for logarithmic access A variable resolution data structure in contrast to a pyramid (i.e., a complete quadtree) which is a multiresolution data structure B F H G I J N O L M Q NW NE A SE SW B C D E K P F G H I J L M N O Q
21 zk2 PYRAMID Internal nodes contain summary of information in nodes below them Useful for avoiding inspecting nodes where there could be no relevant information c c2 c3 c4 c5 c6 {c,c2,c3,c4,c5,c6} {c6} {c2,c3,c6} {c2,c3,c4,c5} {c,c2,c3, c4,c5,c6}
22 zk2 QUADTREES VS. PYRAMIDS Quadtrees are good for location-based queries. e.g., what is at location x? 2. not good if looking for a particular feature as have to examine every block or location asking are you the one I am looking for? Pyramid is good for feature-based queries e.g.,. does wheat exist in region x? if wheat does not appear at the root node, then impossible to find it in the rest of the structure and the search can cease 2. report all crops in region x just look at the root 3. select all locations where wheat is grown only descend a node if there is a possibility that wheat is in one of its four sons implies little wasted work Ex: truncated pyramid where 4 identically-colored sons are merged {c,c2,c3,c4,c5,c6} {c6} {c2,c3,c6} {c2,c3,c4,c5} {c,c2,c3, c4,c5,c6} c c2 c3 c4 c5 c6 {c2,c3,c5} {c,c2,c3,c5} Can represent as a list of leaf and nonleaf blocks (e.g., as a linear quadtree)
23 PR QUADTREE (Orenstein) b zk22. Regular decomposition point representation 2. Decomposition occurs whenever a block contains more than one point 3. Useful when the domain of data points is not discrete but finite 4. Maximum level of decomposition depends on the minimum separation between two points if two points are very close, then decomposition can be very deep can be overcome by viewing blocks as buckets with capacity c and only decomposing the block when it contains more than c points Ex: c = (,) (,) 8 r 7 z 6 g 5 v 4 g 3 z 2 r (62,77) Toronto (82,65) Buffalo (5,45) Denver (35,42) Chicago (27,35) Omaha (85,5) Atlanta (,) (52,) Mobile (9,5) Miami (,)
24 REGION SEARCH 3 z 2 r b zk23 Ex: Find all points within radius r of point A r 5 4 A Use of quadtree results in pruning the search space If a quadrant subdivision point p lies in a region l, then search the quadrants of p specified by l. SE 6. NE. All but SW 2. SE, SW 7. NE, NW 2. All but SE 3. SW 8. NW 3. All 4. SE, NE 9. All but NW 5. SW, NW. All but NE
25 FINDING THE NEAREST OBJECT 7 r 6 z 5 v 4 g 3 z 2 r b zk24 Ex: find the nearest object to P E C B 5 D P 2 A 3 new F F Assume PR quadtree for points (i.e., at most one point per block) Search neighbors of block in counterclockwise order Points are sorted with respect to the space they occupy which enables pruning the search space Algorithm:. start at block 2 and compute distance to P from A 2. ignore block 3 whether or not it is empty as A is closer to P than any point in 3 3. examine block 4 as distance to SW corner is shorter than the distance from P to A; however, reject B as it is further from P than A 4. ignore blocks 6, 7, 8, 9, and as the minimum distance to them from P is greater than the distance from P to A 5. examine block as the distance from P to the southern border of is shorter than the distance from P to A; however, reject F as it is further from P than A If F was moved, a better order would have started with block, the southern neighbor of, as it is closest
26 PM QUADTREE 9 8 v g 7 z 6 r 5 v 4 g 3 z 2 r b zk25 Vertex-based (one vertex per block) a b h g e d i f c DECOMPOSITION RULE: Partitioning occurs when a block contains more than one segment unless all the segments are incident at the same vertex which is also in the same block Shape independent of order of insertion
27 zk26 SAND BROWSER: A SPATIO-RELATIONAL BROWSER Assume a relational database Relations have spatial and nonspatial attributes Browse through tuples or objects (groups of tuples with similar attribute values) of a relation one at a time according to values within ranges of the. nonspatial attributes 2. underlying space in which the objects corresponding to the spatial attributes are embedded Make use of indexes to facilitate viewing (termed ranking) tuples in order of nearness to a reference attribute value (e.g., zero, origin, etc.) and obtain tuples in this order Graphical user interface instead of SQL but functionally equivalent Graphical result of spatial and nonspatial queries Output. display tuples satisfying the query one tuple or one object at a time show the values of all of the attributes of the most recently generated tuple cursor points at this tuple 2. cumulative display of spatial attributes Can save the result of an operation as a relation for future operations (SAVE GROUP)
28 zk27 SAND RELATION OR OBJECT DESCRIPTION Assumes a relation. length: number of tuples 2. width: bytes per tuple only accounts for fixed size components of a tuple e.g., for a polygon, there is extra space needed for each vertex of the polygon List of attributes. attribute names and type e.g., name is a 25 character array e.g., verts is a polygon 2. measurement type (e.g., nominal, ordinal, interval, ratio) range of possible values for nominals if finite range, if known, for interval and ratio 3. rendering attributes (e.g., color, iconic) 4. highlighting method 5. print name for tuple(s) or objects being displayed Indexes. name of index 2. type of index e.g., B-tree spatial index and type 3. sort sequence e.g., alphabetic spatial a. sorted with respect to distance from Chicago b. no reference point (with respect to space occupied)
29 zk28 RENDERING ATTRIBUTES FOR SPATIAL RELATIONS: SPATIAL ATTRIBUTES. Set by user at query time or pre-defined at relation creation time 2. For entire relation or on a tuple-by-tuple basis 3. Examples: line and fill colors, line thickness, point size highlight method what is being displayed a. boundary b. interior need to fill when zoom in but can avoid fill if draw boundary after interior c. boundary plus interior 3. Name of type of objects being displayed useful in dialog box for scan order so user knows what each tuple represents e.g., Silver Spring map contains tuples corresponding to road segments 4. Scale for queries involving distance used when zooming while specifying a query
30 zk29 VALUES OF RENDERING ATTRIBUTES FOR SPATIAL RELATIONS: SPATIAL ATTRIBUTES Coloring choice method to automatically differentiate between displayed entities. specific color e.g., blue meaning all are displayed in blue 2. different from previous color is different from that of the tuple or object most recently displayed 3. different from adjacent color is different from that of any spatially adjacent tuple or object e.g., a side in common for regions and surfaces and a vertex for lines Highlighting. shape pre-defined such as rectangle, minimum bounding box, circle, etc. user-defined graphically 2. color fixed arbitrary different from colors of objects in the highlighted area 3. mode blinking or non-blinking (i.e., binary)
31 zk3 RENDERING ATTRIBUTES FOR SPATIAL RELATIONS: NON-SPATIAL ATTRIBUTES. Scalar value or iconic rendering is displayed for each tuple using the same rendering for different objects at different locations conveys a notion of similarity e.g., company trademark to mark all its properties such as plants, stores, fields,... dissimilarity of rendering emphasizes differences between objects (e.g., different size circle for different cities based on their populations may need a legend to convey the semantics of the different renderings 2. One attribute for the entire relation 3. Need to indicate position of displayed value absolute location OR relative to spatial attribute value 4. Icon for specifying the attribute value in a condition e.g., slider for a ratio attribute e.g., check box for a nominal attribute
32 zk3 SAND SPATIAL BROWSING CONSTRAINTS Range. all tuples overlapping an object (spatial selection or a window query) also termed a spatial join if a non-constant window 2. all tuples within a distance of an object (spatial range query) also termed a spatial join 3. Boolean combinations of the above Upper bound on the maximum number of tuples that can be found
33 zk32 SAND SPATIAL BROWSING ORDERINGS. Random order 2. In order of nearness to a particular object (termed a ranking object) can limit the ordering to a range of distance values from the ranking object ranking object need not be the same as the object a. being overlapped, OR b. in whose range we are retrieving e.g., rank all streets within miles of Georgia Ave. in the order of their distance from University Blvd. a 3-way spatial join could possibly be in order of farness (FUTURE!) 3. Could have multiple ranking objects with some priority rank objects with respect to a polygon rank objects with respect to a point all objects within the polygon have a distance and the tie is broken by ranking them with respect to the point 4. Cardinality or frequency useful for finding which country has the most instances of a particular spatial feature probably need to precede with a join more useful for nonspatial attributes such as finding all cities with the same population and can use actual value of the attribute as a secondary ranking key
34 zk33 PRIMITIVE BROWSER SETTINGS. Scan Order: which attribute values form the basis of the browsing assumes that an index exists for the attributes can be a combination of attributes (e.g., name and type for street proper name and nature of street i.e., Avenue ) 2. Conditions: Boolean combination of condition values of various attributes including ranges for attributes of type ratio and interval take advantage of indexes on attributes, if they exist future; graphical specification with icons from the rendering attributes 3. Display: output specifications 4. Browser Mode: one tuple at a time (usual case!) even if several tuples have the same attribute value, OR one object at a time a. retrieves all tuples with same attribute values b. condition specification is in terms of sets of attribute names same spatial attribute value overcomes problem of spatial index resulting in more than one tuple per feature as in a disjoint decomposition such as a PM quadtree for lines example a. retrieve all pieces of each segment of a polyline b. retrieve all pieces of a polyline
35 zk34 SAND BROWSER MENUS AND ACTION BUTTONS File: browser control menu. Open: invoke SAND BROWSER on an additional relation menu containing a schema for each relation (i.e., attribute names and types) default values for rendering attributes on a relationby-relation basis 2. Save: make a relation from the tuples that satisfy the current browsing condition and save it check box 3. Quit: exit SAND BROWSER Display: output specifications menu Options: anything else that was forgotten a catch-all!. rendering attribute settings 2. name of type of objects being displayed (i.e., tuples) Action buttons. First: first item in a particular scan order 2. Next: next item in a particular scan order Mode radio button:. browse by tuples OR 2. browse by objects (sets of tuples) Condition menus. spatial 2. non-spatial
36 zk35 SAND BROWSER SAVE MODES Two modes:. FULL: tuples satisfying entire query need to let query execute to completion if invoked in middle of ranking process save entire relation if no ranking condition has been specified 2. PARTIAL: tuples computed so far enables saving results of a partial ranking (e.g., nearest 5 neighbors) Should also form indices for the attributes. copy existing indices can be just a subset of the indices 2. new indices Create a name for the objects represented by the relation s tuples Rendering attributes Not a view as tuples are copied when forming new relation. difficult to implement views as they represent a sequence of operations that are applied to a database of relations like common subexpression elimination for query expression view is not precomputed 2. if any modifications to relations, then must update view 3. implementing views in SAND BROWSER would require saving geometric query objects and ranking objects which have been input by the user as well as the operations that were performed
37 zk36 ISSUES IN SPATIAL DATABASES. Representation bounding boxes versus disjoint decomposition 2. How are spatial integrity constraints captured and assured? edges of a polygon link to form a complete object line segments do not intersect except at vertices contour lines should not cross 3. Interaction with the relational model spatial operations don t fit into SQL a. buffer b. nearest to... c. others... difficult to capture hierarchy of complex objects (e.g., nested definition) 4. Spatial input is visual need a graphical query language
38 zk37 5. Spatial output is visual unlike conventional databases, once operation is complete, want to browse entire output together rather than one tuple at-a-time don t want to wait for operation to complete before output a. partial visual output is preferable e.g., incremental spatial join and nearest neighbor b. multiresolution output is attractive 6. Functionality determining what people really want to do! 7. Performance not enough to just measure the execution time of an operation time to load a spatial index and build a spatiallyindexed output is important sequence of spatial operations as in a spatial spreadsheet a. output of one operation serves as input to another e.g., cascaded spatial join b. spatial join yields locations of objects and not just the object pairs
39 CHALLENGES: zk38. Incorporation of geometry into database queries without user being aware of it! find geometric analogs of conventional database operations (e.g., ranking semi-join yields discrete Voronoi diagram) extension of browser concept to permit more general browsing units based on connectivity (e.g., shortest path), frequency, etc. 2. Spatial query optimization different query execution plans use spatial selectivity factors to choose between them 3. Graphical query specification instead of SQL 4. Incorporation of time-varying data how to represent rates? 5. Incorporation of imagery 6. Develop spatial indices that support both locationbased ( what is at X?) and feature-based queries ( where is Y?) 7. Incorporate rendering attributes into database objects or relations queries based on the rendering attributes Ex: find all red regions query by content (e.g., image databases) 8. GIS on the Web and distributed data and algorithms 9. Knowledge discovery. Interoperability
40 zk39 SELECTED REFERENCES (Also see C. Esperança and H. Samet, An overview of the SAND spatial database system, to appear in Communications of the ACM, G. Hjaltason and H. Samet, Ranking in Spatial Databases in Advances in Spatial Databases 4th Symposium, SSD 95, M. J. Egenhofer and J. R. Herring, Eds., Lecture Notes in Computer Science 95, Springer-Verlag, Berlin, 995, H. Samet, Spatial Data Structures in Modern Database Systems: The Object Model, Interoperability, and Beyond, W. Kim, Ed., Addison-Wesley/ACM Press, 995, H. Samet, Applications of Spatial Data Structures: Computer Graphics, Image Processing, and GIS, Addison-Wesley, Reading, MA, 99. ISBN H. Samet, The Design and Analysis of Spatial Data Structures, Addison-Wesley, Reading, MA, 99. ISBN H. Samet and W. G. Aref, Spatial Data Models and Query Processing in Modern Database Systems: The Object Model, Interoperability, and Beyond, W. Kim, Ed., Addison-Wesley/ACM Press, 995, C. D. Tomlin, Geographic Information Systems and Cartographic Modeling, Prentice-Hall, Englewood Cliffs, NJ, 99. ISBN
Vector storage and access; algorithms in GIS. This is lecture 6
Vector storage and access; algorithms in GIS This is lecture 6 Vector data storage and access Vectors are built from points, line and areas. (x,y) Surface: (x,y,z) Vector data access Access to vector
Oracle8i Spatial: Experiences with Extensible Databases
Oracle8i Spatial: Experiences with Extensible Databases Siva Ravada and Jayant Sharma Spatial Products Division Oracle Corporation One Oracle Drive Nashua NH-03062 {sravada,jsharma}@us.oracle.com 1 Introduction
R-trees. R-Trees: A Dynamic Index Structure For Spatial Searching. R-Tree. Invariants
R-Trees: A Dynamic Index Structure For Spatial Searching A. Guttman R-trees Generalization of B+-trees to higher dimensions Disk-based index structure Occupancy guarantee Multiple search paths Insertions
Introduction to GIS (Basics, Data, Analysis) & Case Studies. 13 th May 2004. Content. What is GIS?
Introduction to GIS (Basics, Data, Analysis) & Case Studies 13 th May 2004 Content Introduction to GIS Data concepts Data input Analysis Applications selected examples What is GIS? Geographic Information
University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 5: Analyzing Spatial Data. Buffering Features:
: Analyzing Spatial Data Buffering Features: A buffer operation is one of the most common spatial analysis tools. A buffer is a map feature that represents a uniform distance around a feature. When creating
Applying a circular load. Immediate and consolidation settlement. Deformed contours. Query points and query lines. Graph query.
Quick Start Tutorial 1-1 Quick Start Tutorial This quick start tutorial will cover some of the basic features of Settle3D. A circular load is applied to a single soil layer and settlements are examined.
An Introduction to Point Pattern Analysis using CrimeStat
Introduction An Introduction to Point Pattern Analysis using CrimeStat Luc Anselin Spatial Analysis Laboratory Department of Agricultural and Consumer Economics University of Illinois, Urbana-Champaign
DATA MINING CLUSTER ANALYSIS: BASIC CONCEPTS
DATA MINING CLUSTER ANALYSIS: BASIC CONCEPTS 1 AND ALGORITHMS Chiara Renso KDD-LAB ISTI- CNR, Pisa, Italy WHAT IS CLUSTER ANALYSIS? Finding groups of objects such that the objects in a group will be similar
Data Warehousing und Data Mining
Data Warehousing und Data Mining Multidimensionale Indexstrukturen Ulf Leser Wissensmanagement in der Bioinformatik Content of this Lecture Multidimensional Indexing Grid-Files Kd-trees Ulf Leser: Data
Computational Geometry. Lecture 1: Introduction and Convex Hulls
Lecture 1: Introduction and convex hulls 1 Geometry: points, lines,... Plane (two-dimensional), R 2 Space (three-dimensional), R 3 Space (higher-dimensional), R d A point in the plane, 3-dimensional space,
The GeoMedia Fusion Validate Geometry command provides the GUI for detecting geometric anomalies on a single feature.
The GeoMedia Fusion Validate Geometry command provides the GUI for detecting geometric anomalies on a single feature. Below is a discussion of the Standard Advanced Validate Geometry types. Empty Geometry
Raster Data Structures
Raster Data Structures Tessellation of Geographical Space Geographical space can be tessellated into sets of connected discrete units, which completely cover a flat surface. The units can be in any reasonable
A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION
A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION Zeshen Wang ESRI 380 NewYork Street Redlands CA 92373 [email protected] ABSTRACT Automated area aggregation, which is widely needed for mapping both natural
Representing Geography
3 Representing Geography OVERVIEW This chapter introduces the concept of representation, or the construction of a digital model of some aspect of the Earth s surface. The geographic world is extremely
Multi-dimensional index structures Part I: motivation
Multi-dimensional index structures Part I: motivation 144 Motivation: Data Warehouse A definition A data warehouse is a repository of integrated enterprise data. A data warehouse is used specifically for
Understand the Sketcher workbench of CATIA V5.
Chapter 1 Drawing Sketches in Learning Objectives the Sketcher Workbench-I After completing this chapter you will be able to: Understand the Sketcher workbench of CATIA V5. Start a new file in the Part
Spatial Data Analysis
14 Spatial Data Analysis OVERVIEW This chapter is the first in a set of three dealing with geographic analysis and modeling methods. The chapter begins with a review of the relevant terms, and an outlines
Frsq: A Binary Image Coding Method
Frsq: A Binary Image Coding Method Peter L. Stanchev, William I. Grosky, John G. Geske Kettering University, Flint, MI 4854, {pstanche, jgeske}@kettering.edu University of Michigan-Dearborn, Dearborn,
SPATIAL ANALYSIS IN GEOGRAPHICAL INFORMATION SYSTEMS. A DATA MODEL ORffiNTED APPROACH
POSTER SESSIONS 247 SPATIAL ANALYSIS IN GEOGRAPHICAL INFORMATION SYSTEMS. A DATA MODEL ORffiNTED APPROACH Kirsi Artimo Helsinki University of Technology Department of Surveying Otakaari 1.02150 Espoo,
Survey On: Nearest Neighbour Search With Keywords In Spatial Databases
Survey On: Nearest Neighbour Search With Keywords In Spatial Databases SayaliBorse 1, Prof. P. M. Chawan 2, Prof. VishwanathChikaraddi 3, Prof. Manish Jansari 4 P.G. Student, Dept. of Computer Engineering&
CHAPTER-24 Mining Spatial Databases
CHAPTER-24 Mining Spatial Databases 24.1 Introduction 24.2 Spatial Data Cube Construction and Spatial OLAP 24.3 Spatial Association Analysis 24.4 Spatial Clustering Methods 24.5 Spatial Classification
How to use PGS: Basic Services Provision Map App
How to use PGS: Basic Services Provision Map App The PGS: Basic Services Provision Map App The main features of the PGP Basic Services web application includes: Navigation Tools Map Tools Main Map Links
Clustering & Visualization
Chapter 5 Clustering & Visualization Clustering in high-dimensional databases is an important problem and there are a number of different clustering paradigms which are applicable to high-dimensional data.
Spatial data analysis: retrieval, (re)classification and measurement operations
CHAPTER 7 Spatial data analysis: retrieval, (re)classification and measurement operations In chapter 5 you used a number of table window operations, such as calculations, aggregations, and table joining,
Modeling Fire Hazard By Monica Pratt, ArcUser Editor
By Monica Pratt, ArcUser Editor Spatial modeling technology is growing like wildfire within the emergency management community. In areas of the United States where the population has expanded to abut natural
Geocoding in Law Enforcement Final Report
Geocoding in Law Enforcement Final Report Geocoding in Law Enforcement Final Report Prepared by: The Crime Mapping Laboratory Police Foundation August 2000 Report to the Office of Community Oriented Policing
Euclidean Minimum Spanning Trees Based on Well Separated Pair Decompositions Chaojun Li. Advised by: Dave Mount. May 22, 2014
Euclidean Minimum Spanning Trees Based on Well Separated Pair Decompositions Chaojun Li Advised by: Dave Mount May 22, 2014 1 INTRODUCTION In this report we consider the implementation of an efficient
Clustering. Data Mining. Abraham Otero. Data Mining. Agenda
Clustering 1/46 Agenda Introduction Distance K-nearest neighbors Hierarchical clustering Quick reference 2/46 1 Introduction It seems logical that in a new situation we should act in a similar way as in
Environmental Remote Sensing GEOG 2021
Environmental Remote Sensing GEOG 2021 Lecture 4 Image classification 2 Purpose categorising data data abstraction / simplification data interpretation mapping for land cover mapping use land cover class
VISUALIZING HIERARCHICAL DATA. Graham Wills SPSS Inc., http://willsfamily.org/gwills
VISUALIZING HIERARCHICAL DATA Graham Wills SPSS Inc., http://willsfamily.org/gwills SYNONYMS Hierarchical Graph Layout, Visualizing Trees, Tree Drawing, Information Visualization on Hierarchies; Hierarchical
Fast Sequential Summation Algorithms Using Augmented Data Structures
Fast Sequential Summation Algorithms Using Augmented Data Structures Vadim Stadnik [email protected] Abstract This paper provides an introduction to the design of augmented data structures that offer
Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches
Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches PhD Thesis by Payam Birjandi Director: Prof. Mihai Datcu Problematic
Voronoi Treemaps in D3
Voronoi Treemaps in D3 Peter Henry University of Washington [email protected] Paul Vines University of Washington [email protected] ABSTRACT Voronoi treemaps are an alternative to traditional rectangular
Visualization of 2D Domains
Visualization of 2D Domains This part of the visualization package is intended to supply a simple graphical interface for 2- dimensional finite element data structures. Furthermore, it is used as the low
SCALABILITY OF CONTEXTUAL GENERALIZATION PROCESSING USING PARTITIONING AND PARALLELIZATION. Marc-Olivier Briat, Jean-Luc Monnot, Edith M.
SCALABILITY OF CONTEXTUAL GENERALIZATION PROCESSING USING PARTITIONING AND PARALLELIZATION Abstract Marc-Olivier Briat, Jean-Luc Monnot, Edith M. Punt Esri, Redlands, California, USA [email protected], [email protected],
Guide To Creating Academic Posters Using Microsoft PowerPoint 2010
Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 INFORMATION SERVICES Version 3.0 July 2011 Table of Contents Section 1 - Introduction... 1 Section 2 - Initial Preparation... 2 2.1 Overall
International Journal of Advance Research in Computer Science and Management Studies
Volume 3, Issue 11, November 2015 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online
Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering
Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques
Topographic Change Detection Using CloudCompare Version 1.0
Topographic Change Detection Using CloudCompare Version 1.0 Emily Kleber, Arizona State University Edwin Nissen, Colorado School of Mines J Ramón Arrowsmith, Arizona State University Introduction CloudCompare
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model An Oracle Technical White Paper May 2005 Building GIS Applications Using the Oracle Spatial Network Data Model
MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem
MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem David L. Finn November 30th, 2004 In the next few days, we will introduce some of the basic problems in geometric modelling, and
Draft Martin Doerr ICS-FORTH, Heraklion, Crete Oct 4, 2001
A comparison of the OpenGIS TM Abstract Specification with the CIDOC CRM 3.2 Draft Martin Doerr ICS-FORTH, Heraklion, Crete Oct 4, 2001 1 Introduction This Mapping has the purpose to identify, if the OpenGIS
Plotting: Customizing the Graph
Plotting: Customizing the Graph Data Plots: General Tips Making a Data Plot Active Within a graph layer, only one data plot can be active. A data plot must be set active before you can use the Data Selector
Data Mining. Cluster Analysis: Advanced Concepts and Algorithms
Data Mining Cluster Analysis: Advanced Concepts and Algorithms Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 1 More Clustering Methods Prototype-based clustering Density-based clustering Graph-based
GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION
GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION GIS Syllabus - Version 1.2 January 2007 Copyright AICA-CEPIS 2009 1 Version 1 January 2007 GIS Certification Programme 1. Target The GIS certification is aimed
IBM SPSS Direct Marketing 23
IBM SPSS Direct Marketing 23 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 23, release
GEOGRAPHIC INFORMATION SYSTEMS
GEOGRAPHIC INFORMATION SYSTEMS WHAT IS A GEOGRAPHIC INFORMATION SYSTEM? A geographic information system (GIS) is a computer-based tool for mapping and analyzing spatial data. GIS technology integrates
IBM SPSS Direct Marketing 22
IBM SPSS Direct Marketing 22 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 22, release
What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features
What is GIS? Geographic Information Systems Introduction to ArcGIS A database system in which the organizing principle is explicitly SPATIAL For CPSC 178 Visualization: Data, Pixels, and Ideas. What Can
Chapter Contents Page No
Chapter Contents Page No Preface Acknowledgement 1 Basics of Remote Sensing 1 1.1. Introduction 1 1.2. Definition of Remote Sensing 1 1.3. Principles of Remote Sensing 1 1.4. Various Stages in Remote Sensing
Reading Questions. Lo and Yeung, 2007: 2 19. Schuurman, 2004: Chapter 1. 1. What distinguishes data from information? How are data represented?
Reading Questions Week two Lo and Yeung, 2007: 2 19. Schuurman, 2004: Chapter 1. 1. What distinguishes data from information? How are data represented? 2. What sort of problems are GIS designed to solve?
Introduction to GIS. Dr F. Escobar, Assoc Prof G. Hunter, Assoc Prof I. Bishop, Dr A. Zerger Department of Geomatics, The University of Melbourne
Introduction to GIS 1 Introduction to GIS http://www.sli.unimelb.edu.au/gisweb/ Dr F. Escobar, Assoc Prof G. Hunter, Assoc Prof I. Bishop, Dr A. Zerger Department of Geomatics, The University of Melbourne
Utilizing spatial information systems for non-spatial-data analysis
Jointly published by Akadémiai Kiadó, Budapest Scientometrics, and Kluwer Academic Publishers, Dordrecht Vol. 51, No. 3 (2001) 563 571 Utilizing spatial information systems for non-spatial-data analysis
A Short Introduction to Computer Graphics
A Short Introduction to Computer Graphics Frédo Durand MIT Laboratory for Computer Science 1 Introduction Chapter I: Basics Although computer graphics is a vast field that encompasses almost any graphical
From GPS Data Collection to GIS Data Display A Walk-Through Example
From GPS Data Collection to GIS Data Display A Walk-Through Example The Global Positioning System (GPS) is a satellite based navigation system consisting of 24 satellites, a worldwide network of tracking
Knowledge Discovery and Data Mining. Structured vs. Non-Structured Data
Knowledge Discovery and Data Mining Unit # 2 1 Structured vs. Non-Structured Data Most business databases contain structured data consisting of well-defined fields with numeric or alphanumeric values.
Prentice Hall Mathematics: Course 1 2008 Correlated to: Arizona Academic Standards for Mathematics (Grades 6)
PO 1. Express fractions as ratios, comparing two whole numbers (e.g., ¾ is equivalent to 3:4 and 3 to 4). Strand 1: Number Sense and Operations Every student should understand and use all concepts and
Technologies & Applications
Chapter 10 Emerging Database Technologies & Applications Truong Quynh Chi [email protected] Spring - 2013 Contents 1 Distributed Databases & Client-Server Architectures 2 Spatial and Temporal Database
Getting Started with the ArcGIS Predictive Analysis Add-In
Getting Started with the ArcGIS Predictive Analysis Add-In Table of Contents ArcGIS Predictive Analysis Add-In....................................... 3 Getting Started 4..............................................
ADVANCED DATA STRUCTURES FOR SURFACE STORAGE
1Department of Mathematics, Univerzitni Karel, Faculty 22, JANECKA1, 323 of 00, Applied Pilsen, Michal, Sciences, Czech KARA2 Republic University of West Bohemia, ADVANCED DATA STRUCTURES FOR SURFACE STORAGE
Topic 13 Predictive Modeling. Topic 13. Predictive Modeling
Topic 13 Predictive Modeling Topic 13 Predictive Modeling 13.1 Predicting Yield Maps Talk about the future of Precision Ag how about maps of things yet to come? Sounds a bit far fetched but Spatial Data
Lecture 9: Geometric map transformations. Cartographic Transformations
Cartographic Transformations Analytical and Computer Cartography Lecture 9: Geometric Map Transformations Attribute Data (e.g. classification) Locational properties (e.g. projection) Graphics (e.g. symbolization)
Storing a Collection of Polygons Using Quadtrees
Storing a Collection of Polygons Using Quadtrees HANAN SAMET University of Maryland and ROBERT E. WEBBER Rutgers University An adaptation of the quadtree data structure that represents polygonal maps (i.e.,
GEOENGINE MSc in Geomatics Engineering (Master Thesis) Anamelechi, Falasy Ebere
Master s Thesis: ANAMELECHI, FALASY EBERE Analysis of a Raster DEM Creation for a Farm Management Information System based on GNSS and Total Station Coordinates Duration of the Thesis: 6 Months Completion
DATA QUALITY IN GIS TERMINOLGY GIS11
DATA QUALITY IN GIS When using a GIS to analyse spatial data, there is sometimes a tendency to assume that all data, both locational and attribute, are completely accurate. This of course is never the
Objectives. Raster Data Discrete Classes. Spatial Information in Natural Resources FANR 3800. Review the raster data model
Spatial Information in Natural Resources FANR 3800 Raster Analysis Objectives Review the raster data model Understand how raster analysis fundamentally differs from vector analysis Become familiar with
STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.
STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter
Graph/Network Visualization
Graph/Network Visualization Data model: graph structures (relations, knowledge) and networks. Applications: Telecommunication systems, Internet and WWW, Retailers distribution networks knowledge representation
INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES
INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES A TUTORIAL FROM SPATIAL AND NUMERIC DATA SERVICES NICOLE SCHOLTZ AND GEOFF IVERSON Overview... 2 A. Get a Digital Elevation Model (DEM)... 3 B. Open ArcMap,
Comparison of Non-linear Dimensionality Reduction Techniques for Classification with Gene Expression Microarray Data
CMPE 59H Comparison of Non-linear Dimensionality Reduction Techniques for Classification with Gene Expression Microarray Data Term Project Report Fatma Güney, Kübra Kalkan 1/15/2013 Keywords: Non-linear
Part-Based Recognition
Part-Based Recognition Benedict Brown CS597D, Fall 2003 Princeton University CS 597D, Part-Based Recognition p. 1/32 Introduction Many objects are made up of parts It s presumably easier to identify simple
3D Interactive Information Visualization: Guidelines from experience and analysis of applications
3D Interactive Information Visualization: Guidelines from experience and analysis of applications Richard Brath Visible Decisions Inc., 200 Front St. W. #2203, Toronto, Canada, [email protected] 1. EXPERT
SPATIAL DATA ANALYSIS
SPATIAL DATA ANALYSIS P.L.N. Raju Geoinformatics Division Indian Institute of Remote Sensing, Dehra Dun Abstract : Spatial analysis is the vital part of GIS. Spatial analysis in GIS involves three types
Graphic Design. Background: The part of an artwork that appears to be farthest from the viewer, or in the distance of the scene.
Graphic Design Active Layer- When you create multi layers for your images the active layer, or the only one that will be affected by your actions, is the one with a blue background in your layers palette.
Digital Cadastral Maps in Land Information Systems
LIBER QUARTERLY, ISSN 1435-5205 LIBER 1999. All rights reserved K.G. Saur, Munich. Printed in Germany Digital Cadastral Maps in Land Information Systems by PIOTR CICHOCINSKI ABSTRACT This paper presents
æ A collection of interrelated and persistent data èusually referred to as the database èdbèè.
CMPT-354-Han-95.3 Lecture Notes September 10, 1995 Chapter 1 Introduction 1.0 Database Management Systems 1. A database management system èdbmsè, or simply a database system èdbsè, consists of æ A collection
. Address the following issues in your solution:
CM 3110 COMSOL INSTRUCTIONS Faith Morrison and Maria Tafur Department of Chemical Engineering Michigan Technological University, Houghton, MI USA 22 November 2012 Zhichao Wang edits 21 November 2013 revised
3D-GIS in the Cloud USER MANUAL. August, 2014
3D-GIS in the Cloud USER MANUAL August, 2014 3D GIS in the Cloud User Manual August, 2014 Table of Contents 1. Quick Reference: Navigating and Exploring in the 3D GIS in the Cloud... 2 1.1 Using the Mouse...
Visualization Quick Guide
Visualization Quick Guide A best practice guide to help you find the right visualization for your data WHAT IS DOMO? Domo is a new form of business intelligence (BI) unlike anything before an executive
Files Used in this Tutorial
Generate Point Clouds Tutorial This tutorial shows how to generate point clouds from IKONOS satellite stereo imagery. You will view the point clouds in the ENVI LiDAR Viewer. The estimated time to complete
REGIONAL SEDIMENT MANAGEMENT: A GIS APPROACH TO SPATIAL DATA ANALYSIS. Lynn Copeland Hardegree, Jennifer M. Wozencraft 1, Rose Dopsovic 2 INTRODUCTION
REGIONAL SEDIMENT MANAGEMENT: A GIS APPROACH TO SPATIAL DATA ANALYSIS Lynn Copeland Hardegree, Jennifer M. Wozencraft 1, Rose Dopsovic 2 ABSTRACT: Regional sediment management (RSM) requires the capability
Medial Axis Construction and Applications in 3D Wireless Sensor Networks
Medial Axis Construction and Applications in 3D Wireless Sensor Networks Su Xia, Ning Ding, Miao Jin, Hongyi Wu, and Yang Yang Presenter: Hongyi Wu University of Louisiana at Lafayette Outline Introduction
1. Launch ArcCatalog, then navigate to the following location using the directory tree on the left side of the screen:
Vector Data Analysis I: Buffering Today we will use ArcMap and ArcToolbox to manipulate vector-based geographic data. The results of these simple analyses will allow us to visualize complex spatial relationships.
Iris Sample Data Set. Basic Visualization Techniques: Charts, Graphs and Maps. Summary Statistics. Frequency and Mode
Iris Sample Data Set Basic Visualization Techniques: Charts, Graphs and Maps CS598 Information Visualization Spring 2010 Many of the exploratory data techniques are illustrated with the Iris Plant data
Algebra 1 2008. Academic Content Standards Grade Eight and Grade Nine Ohio. Grade Eight. Number, Number Sense and Operations Standard
Academic Content Standards Grade Eight and Grade Nine Ohio Algebra 1 2008 Grade Eight STANDARDS Number, Number Sense and Operations Standard Number and Number Systems 1. Use scientific notation to express
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
Largest Fixed-Aspect, Axis-Aligned Rectangle
Largest Fixed-Aspect, Axis-Aligned Rectangle David Eberly Geometric Tools, LLC http://www.geometrictools.com/ Copyright c 1998-2016. All Rights Reserved. Created: February 21, 2004 Last Modified: February
Data Exploration Data Visualization
Data Exploration Data Visualization What is data exploration? A preliminary exploration of the data to better understand its characteristics. Key motivations of data exploration include Helping to select
A Non-Linear Schema Theorem for Genetic Algorithms
A Non-Linear Schema Theorem for Genetic Algorithms William A Greene Computer Science Department University of New Orleans New Orleans, LA 70148 bill@csunoedu 504-280-6755 Abstract We generalize Holland
So today we shall continue our discussion on the search engines and web crawlers. (Refer Slide Time: 01:02)
Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #39 Search Engines and Web Crawler :: Part 2 So today we
Introduction to ANSYS
Lecture 3 Introduction to ANSYS Meshing 14. 5 Release Introduction to ANSYS Meshing 2012 ANSYS, Inc. March 27, 2014 1 Release 14.5 Introduction to ANSYS Meshing What you will learn from this presentation
SolidWorks Implementation Guides. Sketching Concepts
SolidWorks Implementation Guides Sketching Concepts Sketching in SolidWorks is the basis for creating features. Features are the basis for creating parts, which can be put together into assemblies. Sketch
TIBCO Spotfire Network Analytics 1.1. User s Manual
TIBCO Spotfire Network Analytics 1.1 User s Manual Revision date: 26 January 2009 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO
