TIN Support in an Open Source Spatial Database

Total Page:16

File Type:pdf, Size:1020Kb

TIN Support in an Open Source Spatial Database TIN support in an open source spatial database Ali Mohammed Al-Salami March, 2009 TIN support in an open source spatial database by Ali Mohammed Al-Salami Thesis submitted to the International Institute for Geo-information Science and Earth Observation in partial fulfilment of the requirements for the degree in Master of Science in GeoInformatics. Degree Assessment Board Thesis advisor Dr. Ir. R. A. de By Dr. I. Ivanova Thesis examiners Prof. Dr. M.J. Kraak Dr. Ir. M. van Keulen INTERNATIONAL INSTITUTE FOR GEO-INFORMATION SCIENCE AND EARTH OBSERVATION ENSCHEDE, THE NETHERLANDS Disclaimer This document describes work undertaken as part of a programme of study at the International Institute for Geo-information Science and Earth Observation (ITC). All views and opinions expressed therein remain the sole responsibility of the author, and do not necessarily represent those of the institute. Contents List of Tables v List of Figures vii Abstract ix Acknowledgements xi 1 Introduction 1 1.1 Motivation and problem statement ................. 1 1.1.1 Motivation ........................... 1 1.1.2 Research problem ....................... 2 1.2 Research identification ........................ 3 1.2.1 Research objectives ...................... 3 1.2.2 Research questions ...................... 4 1.2.3 Innovation aimed at . .................. 4 1.3 Method adopted ............................ 4 1.4 Thesis outline ............................. 5 2 TIN vision and definition of ADT for TIN 7 2.1 Standardizations ........................... 7 2.1.1 Abstract semantics from ISO ................ 7 2.1.2 OpenGIS Implementation Specification .......... 10 2.2 Definition of Abstract Data Type for TIN ............. 11 2.2.1 The Type System ....................... 12 2.2.2 TIN Operations ........................ 20 2.2.3 Other Functions ........................ 36 3 TIN Implementation Alternatives 37 3.1 Existing TIN data structures . ................. 38 3.1.1 Serialized object approach .................. 38 3.1.2 Tabular and multiple row object approaches ....... 38 3.2 Examples of existing libraries . ................. 43 3.2.1 The CGAL library ....................... 43 3.2.2 The TerraLib library . .................. 45 3.3 A desired TIN data structure . ................. 47 3.3.1 Evaluation of the available TIN data structures ..... 47 i Contents 3.3.2 Tiling TIN data structure . ................ 48 4 TIN Implementation 53 4.1 Introduction .............................. 53 4.2 Implementation requirements .................... 55 4.2.1 Platform and working environment ............ 55 4.2.2 External sources of TIN data set and TIN builder .... 56 4.3 TIN internal data structure implementation ........... 60 4.3.1 Vertex data type ........................ 60 4.3.2 Triangle data type ...................... 61 4.4 TIN Loader implementation ..................... 61 4.4.1 Input and output analysis . ................. 61 4.4.2 TIN Loader design ...................... 63 4.4.3 Implementation algorithms ................. 68 4.5 Function implementations ...................... 74 4.5.1 TIN functions scope ...................... 75 4.5.2 TIN functions algorithms implementation ......... 75 5 Discussions, Conclusions and Recommendations 79 5.1 Discussion ............................... 79 5.1.1 Research questions ...................... 79 5.1.2 Advantages and features . ................. 81 5.1.3 Limitations and difficulties ................. 82 5.2 Conclusions .............................. 83 5.3 Future improvements ......................... 84 A Preparation phase 85 A.1 Building the intermediate temporary database .......... 85 A.2 Reading data from the external TIN ................ 86 A.3 Constructing the required geometries for the ‘geom’ attributes probable in the corresponding tables ................ 89 A.4 Creating spatial indexes on the tables to help speedup the spatial search in PostgreSQL/PostGIS . ................ 91 A.5 Running the VACUUM ANALYZE command ........... 92 A.6 Maintaining the reference positioning values for neighbor trian- gles, for CGAL files only ....................... 92 A.7 Populating tmp tile table with the bounding boxes ....... 92 A.8 Determining which triangle and vertex belongs to which tile . 95 A.9 Computing the geometry in tmp tile table, as a true polygonal boundary ................................ 95 A.10 Finding the value of the new sequence of triangles and vertices and populate them into the corresponding tables ......... 96 A.11 For OFF files only, compute the references of neighbor triangles 97 A.12 Updating the reference positioning values of the incident vertices and neighbor triangles, for all tiles, for each triangle ....... 98 ii Contents B Populating TIN table 101 B.1 Create an object of type vertex[] . ................. 103 B.2 Create an object of type triangle[] . ................. 103 B.3 Populate TIN table .......................... 104 B.4 TIN loader ............................... 104 B.5 TIN functions ............................. 114 C Data type 131 Bibliography 133 iii Contents iv List of Tables 2.1 Signature for Stack Operations (after [Gut93])¨ .......... 13 2.2 Signature Describing the Type System ............... 14 2.3 Classes of Operations (after [GBE+00]) .............. 22 2.4 Classification of Types (after [GBE+00]) .............. 22 2.5 Unary Predicates (after [GBE+00]) ................. 24 2.6 Binary Predicates(after [GBE+00, Ope99]) ............ 25 2.7 Set Operations(after [GBE+00]) ................... 26 2.8 Aggregate Operations (after [GBE+00]) .............. 32 2.9 Numeric Operations (after [GBE+00]) ............... 34 2.10 Other operations ............................ 36 v List of Tables vi List of Figures 1.1 The adopted method based on [JBR99, EN07, Gut93,¨ SB06] . 5 2.1 Polygonal surface [Int02] ....................... 8 2.2 TIN construction [Int02] ....................... 9 2.3 Geometry class hierarchy [Ope06] ................. 10 2.4 Signature concept ........................... 13 3.1 A vertex-based TIN structure (1) [after [GK90]] ......... 39 3.2 A vertex-based TIN structure (2) [after [McK87]] ......... 40 3.3 Triangle-based TIN structure . ................. 41 3.4 A combination of the triangle-based and the vertex-based TIN structure [after [McK87]] ....................... 42 3.5 An edge-based TIN structure . ................. 43 3.6 CGAL’s TIN structure ......................... 44 3.7 Vertex and face numbering[after [CGA09] ............. 45 3.8 Tiling TIN data structure ...................... 50 4.1 TIN-in-database life cycle ...................... 53 4.2 Example of a CGAL file ........................ 57 4.3 Example of a triangle-based TIN data structure ......... 60 4.4 Temporarily intermediate database design ............ 64 4.5 MultiPolygon geometry type ..................... 65 vii List of Figures viii Abstract Triangulated Irregular Network (TIN) is commonly used in Geographic Information Systems (GIS) to represent any continuous field and is one of the standard implementation techniques for digital terrain models. How- ever, there are use-case needs for TIN-in-database in the GIS communities. Such needs like: one does not have to recompute a TIN repeatedly. There is a need for a library of storage and manipulation functions to be designed, developed and implemented in an open source spatial database allowing us to routinely use TIN with other feature data sets and making use of the offered capabilities of spatial databases. Therefore, it is of great value to implement such library. The main three objectives of this project are to: define a proper ADT for TIN; define alternative implementations of such ADT; and implement the type system and the functions of TIN. The first objective is achieved using the second-order-signature specification framework, the ISO abstract spa- tial schema specification, and the OGC abstract and implementation spec- ifications. The second objective is achieved by describing, analyzing, and adopting the possible approaches based on functions applicability, feasibil- ity of the desired platform and environment, and bridging the definition of the ADT with selected approach. The third objective is accomplished using the adopted implementation TIN tiling approach, considering implementa- tion platform, PL/pgSQL for implementation leading to a type system and TIN interpolation functions implemented in PostgreSQL/PostGIS. A library of TIN storage and manipulation functions has been devel- oped allowing us to ‘interoperably’ use it along with other spatial data sets in an open source spatial database while making use of the capabilities, scalability, security, and performance of such database and addressing real use-case needs of TIN-in-database. Keywords TIN, ADT, open source spatial database, GIS, ISO, OGC, PostgreSQL/PostGIS ix Abstract x Acknowledgements I would like to express my deep and sincere gratitude to my supervisors Dr. Ir. R. A. de By and Dr. I. Ivanova for their detailed and constructive comments, and for their important support throughout this work. I would like to thank the almighty God, for it is under his grace that we live, learn and flourish. Lastly, and most importantly, I wish to thank my family. They supported me, and loved me. To them I dedicate this thesis. xi Acknowledgements xii Chapter 1 Introduction 1.1 Motivation and problem statement 1.1.1 Motivation A Triangulated Irregular Network (TIN) is a vector-based data structure com- monly used in GIS software to represent any continuous field. For example, it is one of the standard implementation
Recommended publications
  • Date Created Size MB . تماس بگیر ید 09353344788
    Name Software ( Search List Ctrl+F ) Date created Size MB برای سفارش هر یک از نرم افزارها با شماره 09123125449 - 09353344788 تماس بگ ریید . \1\ Simulia Abaqus 6.6.3 2013-06-10 435.07 Files: 1 Size: 456,200,192 Bytes (435.07 MB) \2\ Simulia Abaqus 6.7 EF 2013-06-10 1451.76 Files: 1 Size: 1,522,278,400 Bytes (1451.76 MB) \3\ Simulia Abaqus 6.7.1 2013-06-10 584.92 Files: 1 Size: 613,330,944 Bytes (584.92 MB) \4\ Simulia Abaqus 6.8.1 2013-06-10 3732.38 Files: 1 Size: 3,913,689,088 Bytes (3732.38 MB) \5\ Simulia Abaqus 6.9 EF1 2017-09-28 3411.59 Files: 1 Size: 3,577,307,136 Bytes (3411.59 MB) \6\ Simulia Abaqus 6.9 2013-06-10 2462.25 Simulia Abaqus Doc 6.9 2013-06-10 1853.34 Files: 2 Size: 4,525,230,080 Bytes (4315.60 MB) \7\ Simulia Abaqus 6.9.3 DVD 1 2013-06-11 2463.45 Simulia Abaqus 6.9.3 DVD 2 2013-06-11 1852.51 Files: 2 Size: 4,525,611,008 Bytes (4315.96 MB) \8\ Simulia Abaqus 6.10.1 With Documation 2017-09-28 3310.64 Files: 1 Size: 3,471,454,208 Bytes (3310.64 MB) \9\ Simulia Abaqus 6.10.1.5 2013-06-13 2197.95 Files: 1 Size: 2,304,712,704 Bytes (2197.95 MB) \10\ Simulia Abaqus 6.11 32BIT 2013-06-18 1162.57 Files: 1 Size: 1,219,045,376 Bytes (1162.57 MB) \11\ Simulia Abaqus 6.11 For CATIA V5-6R2012 2013-06-09 759.02 Files: 1 Size: 795,893,760 Bytes (759.02 MB) \12\ Simulia Abaqus 6.11.1 PR3 32-64BIT 2013-06-10 3514.38 Files: 1 Size: 3,685,099,520 Bytes (3514.38 MB) \13\ Simulia Abaqus 6.11.3 2013-06-09 3529.41 Files: 1 Size: 3,700,856,832 Bytes (3529.41 MB) \14\ Simulia Abaqus 6.12.1 2013-06-10 3166.30 Files: 1 Size: 3,320,102,912 Bytes
    [Show full text]
  • Standards and Guidelines for Cadastral Surveys Using GPS
    Table of Contents Foreword ........................................................................................................................................ 3 Part One: Standards for Positional Accuracy ................................................................................ 4 Part Two: GPS Survey Guidelines ................................................................................................ 5 Section One: Field Data Acquisition Methods Section Two: Field Survey Operations and Procedures Cadastral Project Control Cadastral Measurements Section Three: Data Processing and Analysis Section Four: Project Documentation Appendix A: Definitions ............................................................................................................. 16 Appendix B: Computation of Accuracies ................................................................................... 18 Appendix C: References ............................................................................................................. 19 Attachment 1-2 Foreword These Standards and Guidelines provide guidance to the Government cadastral surveyor and other land surveyors in the use of Global Positioning System (GPS) technology to perform Public Land Survey System (PLSS) surveys of the Public Lands of the United States of America. Many sources were consulted during the preparation of this document. These sources included other GPS survey standards and guidelines, technical reports and manuals. Opinions and reviews were also sought from public and
    [Show full text]
  • National Spatial Reference System: "Positioning Changes for 2022"
    National Spatial Reference System “Positioning Changes for 2022” Civil GPS Service Interface Committee Meeting Miami, Florida September 24, 2018 Denis Riordan, PSM NOAA, National Geodetic Survey [email protected] U.S. Department of Commerce National Oceanic & Atmospheric Administration National Geodetic Survey Mission: To define, maintain & provide access to the National Spatial Reference System (NSRS) to meet our Nation’s economic, social & environmental needs National Spatial Reference System * Latitude * Scale * Longitude * Gravity * Height * Orientation & their variations in time U. S. Geometric Datums in 2022 National Spatial Reference System (NSRS) Improvements in the Horizontal Datums TIME NETWORK METHOD NETWORK SPAN ACCURACY OF REFERENCE NAD 27 1927-1986 10 meter (1 part in 100,000) TRAVERSE & TRIANGULATION - GROUND MARKS USED FOR NAD83(86) 1986-1990 1 meter REFERENCING (1 part THE in 100,000) NSRS. NAD83(199x)* 1990-2007 0.1 meter GPS B- orderBECOMES (1 part THE in MEANS 1 million) OF POSITIONING – STILL GRND MARKS. HARN A-order (1 part in 10 million) NAD83(2007) 2007 - 2011 0.01 meter 0.01 meter GPS – CORS STATIONS ARE MEANS (CORS) OF REFERENCE FOR THE NSRS. NAD83(2011) 2011 - 2022 0.01 meter 0.01 meter (CORS) NSRS Reference Basis Old Method - Ground Current Method - GNSS Stations Marks (Terrestrial) (CORS) Why Replace NAD83? • Datum based on best known information about the earth’s size and shape from the early 1980’s (45 years old), and the terrestrial survey data of the time. • NAD83 is NON-geocentric & hence inconsistent w/GNSS . • Necessary for agreement with future ubiquitous positioning of GNSS capability. Future Geometric (3-D) Reference Frame Blueprint for 2022: Part 1 – Geometric Datum • Replace NAD83 with new geometric reference frame – by 2022.
    [Show full text]
  • Metadefender Core V4.12.2
    MetaDefender Core v4.12.2 © 2018 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of Metadefender Core 14 1. Quick Start with Metadefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Scan Files with Metadefender Core 21 2. Installing or Upgrading Metadefender Core 22 2.1. Recommended System Requirements 22 System Requirements For Server 22 Browser Requirements for the Metadefender Core Management Console 24 2.2. Installing Metadefender 25 Installation 25 Installation notes 25 2.2.1. Installing Metadefender Core using command line 26 2.2.2. Installing Metadefender Core using the Install Wizard 27 2.3. Upgrading MetaDefender Core 27 Upgrading from MetaDefender Core 3.x 27 Upgrading from MetaDefender Core 4.x 28 2.4. Metadefender Core Licensing 28 2.4.1. Activating Metadefender Licenses 28 2.4.2. Checking Your Metadefender Core License 35 2.5. Performance and Load Estimation 36 What to know before reading the results: Some factors that affect performance 36 How test results are calculated 37 Test Reports 37 Performance Report - Multi-Scanning On Linux 37 Performance Report - Multi-Scanning On Windows 41 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3. Configuring Metadefender Core 50 3.1. Management Console 50 3.2.
    [Show full text]
  • DOTD Standards for GPS Data Collection Accuracy
    Louisiana Transportation Research Center Final Report 539 DOTD Standards for GPS Data Collection Accuracy by Joshua D. Kent Clifford Mugnier J. Anthony Cavell Larry Dunaway Louisiana State University 4101 Gourrier Avenue | Baton Rouge, Louisiana 70808 (225) 767-9131 | (225) 767-9108 fax | www.ltrc.lsu.edu TECHNICAL STANDARD PAGE 1. Report No. 2. Government Accession No. 3. Recipient's Catalog No. FHWA/LA.539 4. Title and Subtitle 5. Report Date DOTD Standards for GPS Data Collection Accuracy September 2015 6. Performing Organization Code 127-15-4158 7. Author(s) 8. Performing Organization Report No. Kent, J. D., Mugnier, C., Cavell, J. A., & Dunaway, L. Louisiana State University Center for GeoInformatics 9. Performing Organization Name and Address 10. Work Unit No. Center for Geoinformatics Department of Civil and Environmental Engineering 11. Contract or Grant No. Louisiana State University LTRC Project Number: 13-6GT Baton Rouge, LA 70803 State Project Number: 30001520 12. Sponsoring Agency Name and Address 13. Type of Report and Period Covered Louisiana Department of Transportation and Final Report Development 6/30/2014 P.O. Box 94245 Baton Rouge, LA 70804-9245 14. Sponsoring Agency Code 15. Supplementary Notes Conducted in Cooperation with the U.S. Department of Transportation, Federal Highway Administration 16. Abstract The Center for GeoInformatics at Louisiana State University conducted a three-part study addressing accurate, precise, and consistent positional control for the Louisiana Department of Transportation and Development. First, this study focused on Departmental standards of practice when utilizing Global Navigational Satellite Systems technology for mapping-grade applications. Second, the recent enhancements to the nationwide horizontal and vertical spatial reference framework (i.e., datums) is summarized in order to support consistent and accurate access to the National Spatial Reference System.
    [Show full text]
  • Metadefender Core V4.13.1
    MetaDefender Core v4.13.1 © 2018 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of Metadefender Core 14 1. Quick Start with Metadefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Scan Files with Metadefender Core 21 2. Installing or Upgrading Metadefender Core 22 2.1. Recommended System Requirements 22 System Requirements For Server 22 Browser Requirements for the Metadefender Core Management Console 24 2.2. Installing Metadefender 25 Installation 25 Installation notes 25 2.2.1. Installing Metadefender Core using command line 26 2.2.2. Installing Metadefender Core using the Install Wizard 27 2.3. Upgrading MetaDefender Core 27 Upgrading from MetaDefender Core 3.x 27 Upgrading from MetaDefender Core 4.x 28 2.4. Metadefender Core Licensing 28 2.4.1. Activating Metadefender Licenses 28 2.4.2. Checking Your Metadefender Core License 35 2.5. Performance and Load Estimation 36 What to know before reading the results: Some factors that affect performance 36 How test results are calculated 37 Test Reports 37 Performance Report - Multi-Scanning On Linux 37 Performance Report - Multi-Scanning On Windows 41 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3. Configuring Metadefender Core 50 3.1. Management Console 50 3.2.
    [Show full text]
  • Autodesk Alias 2016 Hardware Qualification
    Autodesk Alias 2016 Hardware Qualification Updated June 1, 2015 Windows Mac OSX Build Information Products Platform Version Software Date Build Number • Autodesk AutoStudio • Autodesk Alias Surface 64-bit 2016 March 6, 2015 201503061129-441529 • Autodesk Alias Design Supported Operating Systems and CPU Platforms Operating System CPU Platform Windows 7 SP1 Intel Xeon (Enterprise, Ultimate or Professional) 64-bit Intel Core AMD Opteron Windows 8.0 or 8.1 Intel Xeon (Enterprise or Professional) 64-bit Intel Core AMD Opteron Important Notes • Alias AutoStudio, Automotive, Surface and Design fully support 64-bit environments. Running the 64-bit native version requires Windows 8 or 8.1 64-bit or Windows 7 64-bit operating system. • Certain 3rd party software may alter the processor affinity settings, affecting multi-cpu systems running Alias.exe and its spawned processes. To check the affinity setting, right-click on the Alias.exe process inside the Windows Task Manager and select Set Affinity... ensure that all available CPUs are enabled. • Alias or its component programs may not launch successfully depending on your Windows security settings. If this occurs, you may either unblock the program via the Windows Firewall Security Alert dialog, or add it as an Exception in the Exceptions Tab in the Windows Firewall dialog box. For more information, please see the Microsoft Update. Similar configurations are necessary for any third party firewall software, Please Read • It may be possible to successfully use Alias for Windows with a non-qualified configuration, however, Support and Maintenance programs will be subject to the Autodesk Support services guidelines. • The configurations shown are subject to change, and additional qualified configurations may be added after qualification testing has been carried out.
    [Show full text]
  • UNIT-II GPS Systems:NAVSTAR-GLONAAS-Beidou-QZSS-IRNSS-GPS Receivers Based On: Data Type and Yield-Realization of Channels-Signal
    UNIT-II GPS systems:NAVSTAR-GLONAAS-Beidou-QZSS-IRNSS-GPS receivers based on: Data type and yield-Realization of channels-Signal structure:Course Acquisition(code)-Carrier ranging and Navigational message Global Positioning System (GPS), originally Navstar GPS,[1] is a satellite-based radionavigation system owned by the United States government and operated by the United States Space Force.[2] It is one of the global navigation satellite systems (GNSS) that provides geolocation and time information to a GPS receiver anywhere on or near the Earth where there is an unobstructed line of sight to four or more GPS satellites.[3] Obstacles such as mountains and buildings block the relatively weak GPS signals. The GPS does not require the user to transmit any data, and it operates independently of any telephonic or internet reception, though these technologies can enhance the usefulness of the GPS positioning information. The GPS provides critical positioning capabilities to military, civil, and commercial users around the world. The United States government created the system, maintains it, and makes it freely accessible to anyone with a GPS receiver.[4][better source needed] The GPS project was started by the U.S. Department of Defense in 1973, with the first prototype spacecraft launched in 1978 and the full constellation of 24 satellites operational in 1993. Originally limited to use by the United States military, civilian use was allowed from the 1980s following an executive order from President Ronald Reagan.[5] Advances in technology and new demands on the existing system have now led to efforts to modernize the GPS and implement the next generation of GPS Block IIIA satellites and Next Generation Operational Control System (OCX).[6] Announcements from Vice President Al Gore and the Clinton Administration in 1998 initiated these changes, which were authorized by the U.S.
    [Show full text]
  • Gis Sections Proposal
    COORDINATING WORKING PARTY ON FISHERY STATISTICS Sixth Meeting of the Aquaculture Subject Group (AS) and Twenty-seventh meeting of the Fisheries Subject Group (FS) GIS TECHNICAL WORKING GROUP FOR THE CWP HANDBOOK - GIS SECTIONS PROPOSAL Emmanuel Blondel (FAO) – [email protected] 1 CWP – AS 6th Session and FS 27th Session Rome, Italy – 15-16 May 2019 GIS Section Overview Title Definition / Scope Target Spatial reference systems Standards to use for handling a spatial reference system CWP Handbook (SRS) used with fisheries dataset. GIS Section Definitions; rationale; equivalent terminologies; recommended standard format & notations; use of Spatial Reference Identifiers (SRIDs); SRS use cases Geographic coordinates Standards for handling properly geographic coordinates CWP Handbook for reference shapes and fisheries datasets. GIS Section Definitions; rationale; recommended standard formats; Geographic coordinates use cases. Geographic classification Geographic classification and coding systems used for CWP Handbook and coding systems fisheries data. GIS Section General; Types of geographic classification systems (Irregular areas, grid reporting systems, Others); Main geographic Water main areas classification systems (FAO Major Fishing areas, Breakdown of major fishing areas; Geographic coding systems; Geographic information Standards format for data and metadata, and related CWP Data sharing formats & protocols standard protocols. and protocols/ Data formats and protocols; Metadata formats and protocols; Geospatial Section Geographic information Geographic information list of resources of interest for CWP Website resources of interest for CWP the CWP. Geographic information reference web-catalogues; GIS datasets of primary interest; 2 CWP – AS 6th Session and FS 27th Session Rome, Italy – 15-16 May 2019 GIS Section Overview • Handbook GIS Section proposal • Title: Geographic Dimension • Structure 1.
    [Show full text]
  • Autodesk Alias 2108 Comparison Matrix
    http://www.imaginit.com/alias Product design and Class-A surfacing software 2018 Feature Comparison Alias Applications Alias Design Alias Surface AutoStudio VRed Design - - ü Speedform - - ü Sketchbook ü Shipped with 2016 product. - - Maya ü Shipped with 2016 product. - - Automotive Asset Library - - ü Alias Concept Exploration Alias Design Alias Surface AutoStudio Paint and Canvas Tools ü - ü Overlay Annotation ü ü ü Alias Sketching/Manipulation Alias Design Alias Surface AutoStudio Raster brushes ü - ü Annotation pencils - ü - Custom texture brush ü - ü Effect brushes ü - ü Vector/Raster Hybrid (editable shapes) ü - ü Symmetry ü - ü Gradient Fill ü - ü Raster Text ü ü ü Image warping (transforming) ü - ü Color Replace ü - ü Image Cropping ü - ü Sketch over 3D data (underlay) ü - ü Page 1 of 7 For more information visit www.autodesk.com/products/alias-products http://www.imaginit.com/alias Mark-up brushes over 3D - ü - Project sketch on 3D geometry ü - ü Import Image ü ü ü Save images ü ü *screen and window export * Alias Modeling Alias Design Alias Surface AutoStudio G2 Continuity ü ü ü G3 Continuity - ü ü Explicit Control - ü ü Offset ü ü ü Extend ü ü ü Cut ü ü ü Align ü ü ü Symmetrical Align ü ü ü Smoothing ü ü ü Query Edit ü ü ü Attach ü ü ü Insert ü ü ü Vectors ü ü ü Dynamic Planes ü ü ü Transform Curve Operator ü ü ü Surface/Curve Orientation ü ü ü Workflows ü ü *partial * Preference Sets and Workspaces ü ü ü Alias Dynamic Shape Modeling Alias Design Alias Surface AutoStudio DSM: Transformer Rig - ü ü DSM: Conform Rig ü ü ü DSM:
    [Show full text]
  • My Training. My Skills. My Time. Your Design and Engineering Team Is a Valuable Asset to Your Organization and a Considerable Investment
    My Training. My Skills. My Time. Your design and engineering team is a valuable asset to your organization and a considerable investment. But how well are they leveraging the PLM software they use every day? What if you could improve productivity with an easy-to-use online “More than training tool? 70 percent of Get more out of your technology investment with i GET IT® by Tata Technologies, a organizations use self-paced, online training solution that provides real-world skill building for the most TRY IT EXERCISES. online training for popular PLM programs on the market. More than 100,000 designers and engineers i GET IT is founded on the concept of desktop application worldwide rely on i GET IT for access to courses on Autodesk®, Dassault Systèmes, providing practical, project-based learning. training. Do you?”1 PTC®, and Siemens PLM products. i GET IT, part of the i PRODUCTS family which With our Try It exercises, users can “learn by doing” by also includes i CHECK IT, i COMPARE IT and i SUPPORT IT, provides valuable skills participating in a variety of practice exercises. training to support the design process in the areas of GD&T, GPS ISO, FEA, Project LEARNING POINTS. Management and more. Keep track of how many training courses you’ve taken with Learning Points. i GET IT tracks page views, lesson types and tests passed to provide you with a MORE FASTER BETTER Learning Points total. Learning how to effectively use software drives better designs and better INTERACTIVE TEAM REPORTING. products. To meet the relentless demand for new, innovative and more personalized Powerful reporting tools allow managers to review team progress at the push of a products, manufacturers are faced with the challenge of bringing MORE products button.
    [Show full text]
  • Mind the Gap! a New Positioning Reference
    A new positioning reference Why is the United States adopting NATRF2022? What are we doing about this in Canada? We want to hear from you! • The Canadian Geodetic Survey and the United States • Improved compatibility with Global Navigation • The Canadian Geodetic Survey is working closely National Geodetic Survey have collaborated for Satellite Systems (GNSS), such as GPS, is driving this with the United States National Geodetic Survey in • Send us your comments, the challenges you over a century to provide the fundamental reference change. The geometric reference frames currently defining reference frames to ensure they will also foresee, and any concerns to help inform our path Mind the gap! systems for latitude, longitude and height for their used in Canada and the United States, although be suitable for Canada. forward to either of these organizations: respective countries. compatible with each other, are offset by 2.2 m from • Geodetic agencies from across Canada are A new positioning reference the Earth’s geocentre, whereas GNSS are geocentric. - Canadian Geodetic Survey: nrcan. • Together our reference systems have evolved collaborating on reference system improvements geodeticinformation-informationgeodesique. to meet today’s world of GPS and geographical • Real-time decimetre-level accuracies directly from through the Canadian Geodetic Reference System [email protected] NATRF2022 information systems, while supporting legacy datums GNSS satellites are expected to be available soon. Committee, a working committee of the Canadian
    [Show full text]