Toponym Resolution in Scientific Papers

Total Page:16

File Type:pdf, Size:1020Kb

Toponym Resolution in Scientific Papers SemEval-2019 Task 12: Toponym Resolution in Scientific Papers Davy Weissenbachery, Arjun Maggez, Karen O’Connory, Matthew Scotchz, Graciela Gonzalez-Hernandezy yDBEI, The Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA 19104, USA zBiodesign Center for Environmental Health Engineering, Arizona State University, Tempe, AZ 85281, USA yfdweissen, karoc, [email protected] zfamaggera, [email protected] Abstract Disambiguation of toponyms is a more recent task (Leidner, 2007). We present the SemEval-2019 Task 12 which With the growth of the internet, the public adop- focuses on toponym resolution in scientific ar- ticles. Given an article from PubMed, the tion of smartphones equipped with Geographic In- task consists of detecting mentions of names formation Systems and the collaborative devel- of places, or toponyms, and mapping the opment of comprehensive maps and geographi- mentions to their corresponding entries in cal databases, toponym resolution has seen an im- GeoNames.org, a database of geospatial loca- portant gain of interest in the last two decades. tions. We proposed three subtasks. In Sub- Not only academic but also commercial and open task 1, we asked participants to detect all to- source toponym resolvers are now available. How- ponyms in an article. In Subtask 2, given to- ponym mentions as input, we asked partici- ever, their performance varies greatly when ap- pants to disambiguate them by linking them plied on corpora of different genres and domains to entries in GeoNames. In Subtask 3, we (Gritta et al., 2018). Toponym disambiguation asked participants to perform both the de- tackles ambiguities between different toponyms, tection and the disambiguation steps for all like Manchester, NH, USA vs. Manchester, UK toponyms. A total of 29 teams registered, (Geo-Geo ambiguities), and between toponyms and 8 teams submitted a system run. We and other entities, such as names of people or summarize the corpus and the tools created daily life objects (Geo-NonGeo ambiguities). Ad- for the challenge. They are freely available at https://competitions.codalab. ditional linguistic challenges during the resolution org/competitions/19948. We also an- step may be metonymic usage of toponyms, “91% alyze the methods, the results and the errors of the US didn’t vote for either Hilary or Trump” made by the competing systems with a focus (a country does not vote, thus the toponym refers on toponym disambiguation. to the people living in the country), elliptical con- structions, “Lakeview and Harrison streets” (the 1 Introduction phrase refers to two street names Lakeview street Toponym resolution, also known as geoparsing, and Harrison street), or when the context simply geo-grounding or place name resolution, aims does not provide enough evidences for the resolu- to assign geographic coordinates to all location tion. names mentioned in documents. Toponym res- Although significant progress has been made in olution is usually performed in two independent the last decade on toponym resolution, it is still steps. First, toponym detection or geotagging, difficult to determine precisely the current state- where the span of place names mentioned in a doc- of-the-art performances (Leidner and Lieberman, ument is noted. Second, toponym disambiguation 2011). As emphasized by several authors (To- or geocoding, where each name found is mapped bin et al., 2010; Speriosu, 2013; Weissenbacher to latitude and longitude coordinates correspond- et al., 2015; Gritta et al., 2018; Karimzadeh and ing to the centroid of its physical location. To- MacEachren, 2019), the main obstacle is that few ponym detection has been extensively studied in corpora of large size exist or are freely available. named entity recognition: location names were Consequently, researchers create their own (lim- one of the first classes of named entities to be ited) corpora to evaluate their system, with the detected in text (Piskorski and Yangarber, 2013). known drawbacks and biases that this implies. 907 Proceedings of the 13th International Workshop on Semantic Evaluation (SemEval-2019), pages 907–916 Minneapolis, Minnesota, USA, June 6–7, 2019. ©2019 Association for Computational Linguistics Moreover, one corpus is not sufficient to evaluate taking the set of candidates that are the closest a toponym resolver thoroughly, as the domain of a to each other (Leidner, 2007). A recent heuris- corpus strongly impacts the performance of a re- tic computes from Wikipedia a network express- solver. A disambiguation strategy can be optimal ing important toponyms and their semantic rela- on one domain and damaging on another. In (Spe- tion with other entities. The network is then used riosu, 2013), Speriosu illustrates that toponyms to disambiguate jointly all toponyms in a doc- occurring in historical literature will tend to re- ument (Hoffart and Weikum, 2013; Spitz et al., solve within a local vicinity, whereas toponyms 2016). The last strategy is less frequently used occurring in international press news refer to the as it depends on metadata describing the doc- most prominent places by default. Otherwise ad- uments where toponyms are mentioned. These ditional information is provided to help the reso- metadata are of various kinds, but they all indi- lution (ex. Paris, the city in Texas). cate, directly or not, geographic areas to help in- In this article we first define the concept of to- terpret toponyms mentioned in documents. Such ponym and detail the subtasks of this challenge metadata can be geotagging of social media posts (Section3). Then, we summarize how we ac- (Zhang and Gelernter, 2014) or external databases quired and annotated our data (Section4). In Sec- structuring the information detailed in a document tion5, after describing the evaluation metrics, we (Weissenbacher et al., 2015). These three strate- briefly describe the resources and the baseline sys- gies are complementary and can be unified with tem provided to the participants. In the last Sec- machine learning algorithms as shown by (Santos tion6 we discuss the results obtained and the po- et al., 2015) or (Kamalloo and Rafiei, 2018). tential future direction for the task of toponym res- olution. 3 Task Description The definition of toponym is still in debate among 2 Related Work researchers. In its simpler definition, a toponym is a proper name of an existing populated place on The Entity Linking task aims to map a name of Earth. This definition can be extended to include a an entity with the ID of the corresponding en- place or geographical entity that is named, and can tity in a predefined Knowledge database (Bada, be designated by a geographical coordinate1. This 2014). Entity linking has been largely studied by encompasses cities and countries, but also lakes the community (Shen et al., 2015). Toponym res- or monuments. In this challenge we consider the olution is a special case of the entity linking task extended definition of toponyms and exclude all where strategies dedicated to toponyms can im- indirect mentions of places such as “30 km north prove overall performances. Three main strate- from Boston”, as well as metonymic usage and el- gies have been proposed in the literature. The first liptical constructions of toponyms. exploits the linguistic context where a toponym is mentioned in a document. The vicinity of the Subtask 1: Toponym Detection Toponym de- toponym often contains clues that help the read- tection consists of detecting the text boundaries of ers to interpret it. These clues can be other to- all toponym mentions in full PubMed articles. For ponyms (Tobin et al., 2010), other named entities example, given the sentence An H1N1 virus (Roberts et al., 2010), or even more generally, spe- was isolated in 2009 from a child cific topics associated more often with a particular hospitalized in Nanjing, China., a toponym than with others (Speriosu, 2013; Adams perfect detector, regardless how, would return two and McKenzie, 2013; Ju et al., 2016). The sec- pairs encoding the starting and ending positions ond strategy relies on the physical properties of of Nanjing and China, i.e. (64, 70) and (73, 77). the toponyms to disambiguate their mentions in Despite major progress, toponym detection is documents. The population heuristic or the min- still an open problem and it was evaluated in a imum distance heuristic are popular heuristics us- separate subtask since it determines the overall ing such properties. The population heuristics dis- performance of the resolution. Toponym mentions ambiguates toponyms by taking, among the am- missed during the detection cannot be disam- biguous candidates, the candidate with the largest biguated (False Negative, FN) and, inversely, population, whereas the minimum distance heuris- 1https://unstats.un.org/unsd/geoinfo/ tic disambiguates all toponyms in a document by UNGEGN/ 908 phrases wrongly detected as toponyms will re- 2017)3. The metadata provides the location of the ceived geocoordinates during the disambiguation infected host. With more than 3 million virus se- (False Positive, FP). Both FNs and FPs degrade quences4, GenBank provides abundant informa- the quality of the overall resolution. tion on viruses. However, previous work has sug- gested that geospatial metadata, when it is not sim- Subtask 2: Toponym Disambiguation The ply missing, can be too imprecise for local-scale second subtask focuses on the disambiguation of epidemiology (Scotch et al., 2011). In their ar- the toponyms only. In this subtask, all names of ticle Scotch et al., 2011 estimate that only 20% locations in articles are known by a disambigua- of GenBank records of zoonotic viruses contain tor but not their precise coordinates. The disam- detailed geospatial metadata such as a county or biguator has to select the GeoNames IDs corre- a town name (zoonotic viruses are viruses able sponding to the expected places among all pos- to infect naturally hosts of different species, like 2 sible candidates. GeoNames is a crowdsourced rabies). Most GenBank records provide generic database of geospatial locations and freely avail- information, such as Japan or Australia, without able.
Recommended publications
  • Adaptive Geoparsing Method for Toponym Recognition and Resolution in Unstructured Text
    remote sensing Article Adaptive Geoparsing Method for Toponym Recognition and Resolution in Unstructured Text Edwin Aldana-Bobadilla 1,∗ , Alejandro Molina-Villegas 2 , Ivan Lopez-Arevalo 3 , Shanel Reyes-Palacios 3, Victor Muñiz-Sanchez 4 and Jean Arreola-Trapala 4 1 Conacyt-Centro de Investigación y de Estudios Avanzados del I.P.N. (Cinvestav), Victoria 87130, Mexico; [email protected] 2 Conacyt-Centro de Investigación en Ciencias de Información Geoespacial (Centrogeo), Mérida 97302, Mexico; [email protected] 3 Centro de Investigación y de Estudios Avanzados del I.P.N. Unidad Tamaulipas (Cinvestav Tamaulipas), Victoria 87130, Mexico; [email protected] (I.L.); [email protected] (S.R.) 4 Centro de Investigación en Matemáticas (Cimat), Monterrey 66628, Mexico; [email protected] (V.M.); [email protected] (J.A.) * Correspondence: [email protected] Received: 10 July 2020; Accepted: 13 September 2020; Published: 17 September 2020 Abstract: The automatic extraction of geospatial information is an important aspect of data mining. Computer systems capable of discovering geographic information from natural language involve a complex process called geoparsing, which includes two important tasks: geographic entity recognition and toponym resolution. The first task could be approached through a machine learning approach, in which case a model is trained to recognize a sequence of characters (words) corresponding to geographic entities. The second task consists of assigning such entities to their most likely coordinates. Frequently, the latter process involves solving referential ambiguities. In this paper, we propose an extensible geoparsing approach including geographic entity recognition based on a neural network model and disambiguation based on what we have called dynamic context disambiguation.
    [Show full text]
  • Georeferencing Accuracy of Geoeye-1 Stereo Imagery: Experiences in a Japanese Test Field
    International Archives of the Photogrammetry, Remote Sensing and Spatial Information Science, Volume XXXVIII, Part 8, Kyoto Japan 2010 GEOREFERENCING ACCURACY OF GEOEYE-1 STEREO IMAGERY: EXPERIENCES IN A JAPANESE TEST FIELD Y. Meguro a, *, C.S.Fraser b a Japan Space Imaging Corp., 8-1Yaesu 2-Chome, Chuo-Ku, Tokyo 104-0028, Japan - [email protected] b Department of Geomatics, University of Melbourne VIC 3010, Australia - [email protected] Commission VIII, Working Group ICWG IV/VIII KEY WORDS: GeoEye-1, Stereo, RPCs, geopositioning, accuracy evaluation, bias compensation, satellite imagery ABSTRACT: High-resolution satellite imagery (HRSI) is being increasingly employed for large-scale topographic mapping, and especially for geodatabase updating. As the spatial resolution of HRSI sensors increases, so the potential georeferencing accuracy also improves. However, accuracy is not a function of spatial resolution alone, as it is also dependent upon radiometric image quality, the dynamics of the image scanning, and the fidelity of the sensor orientation model, both directly from orbit and attitude observations and indirectly from ground control points (GCPs). Users might anticipate accuracies of, say, 1 pixel in planimetry and 1-3 pixels in height when using GCPs. However, there are practical and in some cases administrative/legal imperatives for the georeferencing accuracy of HRSI systems to be quantified through well controlled tests. This paper discusses an investigation into the georeferencing accuracy attainable from the GeoEye-1 satellite, and specifically the 3D accuracy achievable from stereo imagery. Both direct georeferencing via supplied RPCs and indirect georeferencing via ground control and bias-corrected RPCs were examined for a stereo pair of pansharpened GeoEye-1 Basic images covering the Tsukuba Test Field in Japan, which contains more than 100 precisely surveyed and image identifiable GCPs.
    [Show full text]
  • Knowledge-Driven Geospatial Location Resolution for Phylogeographic
    Bioinformatics, 31, 2015, i348–i356 doi: 10.1093/bioinformatics/btv259 ISMB/ECCB 2015 Knowledge-driven geospatial location resolution for phylogeographic models of virus migration Davy Weissenbacher1,*, Tasnia Tahsin1, Rachel Beard1,2, Mari Figaro1,2, Robert Rivera1, Matthew Scotch1,2 and Graciela Gonzalez1 1Department of Biomedical Informatics, Arizona State University, Scottsdale, AZ 85259, USA and 2Center for Environmental Security, Biodesign Institute, Arizona State University, Tempe, AZ 85287-5904, USA *To whom correspondence should be addressed. Abstract Summary: Diseases caused by zoonotic viruses (viruses transmittable between humans and ani- mals) are a major threat to public health throughout the world. By studying virus migration and mutation patterns, the field of phylogeography provides a valuable tool for improving their surveil- lance. A key component in phylogeographic analysis of zoonotic viruses involves identifying the specific locations of relevant viral sequences. This is usually accomplished by querying public data- bases such as GenBank and examining the geospatial metadata in the record. When sufficient detail is not available, a logical next step is for the researcher to conduct a manual survey of the corresponding published articles. Motivation: In this article, we present a system for detection and disambiguation of locations (topo- nym resolution) in full-text articles to automate the retrieval of sufficient metadata. Our system has been tested on a manually annotated corpus of journal articles related to phylogeography using inte- grated heuristics for location disambiguation including a distance heuristic, a population heuristic and a novel heuristic utilizing knowledge obtained from GenBank metadata (i.e. a ‘metadata heuristic’). Results: For detecting and disambiguating locations, our system performed best using the meta- data heuristic (0.54 Precision, 0.89 Recall and 0.68 F-score).
    [Show full text]
  • Introduction to Georeferencing
    Introduction to Georeferencing Turning paper maps to interactive layers DMDS Workshop Jay Brodeur 2019-02-29 Today’s Outline ➢ Basic fundamentals of GIS and geospatial data ⚬ Vectors vs. rasters ⚬ Coordinate reference systems ➢ Introduction to Quantum GIS (QGIS) ➢ Hands-on Problem-Solving Assignments Quantum GIS (QGIS) ➢ Free and open-source GIS software ➢ User-friendly, fully-functional; relatively lightweight ➢ Product of the Open Source Geospatial Foundation (OSGeo) ➢ Built in C++; uses python for scripting and plugins ➢ Version 1.0 released in 2009 ➢ Current version: 3.16; Long-term release (LTR): 3.14 GDAL - Geospatial Data Abstraction Library www.gdal.org SAGA - System for Automated Geoscientific Analyses saga-gis.org/ GRASS - Geographic Resources Analysis Support System www.grass.osgeo.org QGIS - Quantum GIS qgis.org GeoTools www.geotools.org Helpful QGIS Tutorials and Resources ➢ QGIS Tutorials: http://www.qgistutorials.com/en/ ➢ QGIS Quicktips with Klas Karlsson: https://www.youtube.com/channel/UCxs7cfMwzgGZhtUuwhny4-Q ➢ QGIS Training Guide: https://docs.qgis.org/2.8/en/docs/training_manual/ Geospatial Data Fundamentals Representing real-world geographic information in a computer Task 1: Compare vector and raster data layers Objective: Download some openly-available raster and vector data. Explore the differences. Topics Covered: ➢ The QGIS Interface ➢ Geospatial data ➢ Layer styling ➢ Vectors vs rasters Online version of notes: https://goo.gl/H5vqNs Task 1.1: Downloading vector raster data & adding it to your map 1. Navigate a browser to Scholars Geoportal: http://geo.scholarsportal.info/ 2. Search for ‘index’ using the ‘Historical Maps’ category 3. Load the 1:25,000 topo map index 4. Use the interactive index to download the 1972 map sheet of Hamilton 5.
    [Show full text]
  • Georeferencing
    Georeferencing How do we make sure all our data layers line up ? Georeferencing: = linking a layer or dataset with spatial coordinates Registration: = lining up layers with each other Rectification: The process by which the geometry of an image is made planimetric Georeferencing • ‘To georeference’ the act of assigning locations to atoms of information • Is essential in GIS, since all information must be linked to the Earth’s surface • The method of georeferencing must be: – Unique, linking information to exactly one location – Shared, so different users understand the meaning of a georeference – Persistent through time, so today’s georeferences are still meaningful tomorrow Georeferencing Based on Data Types • Raster and Raster • Vector and Vector • Raster and Vector Geocoding Concepts and Definitions Definition of Geocoding • Geocoding can be broadly defined as the assignment of a code to a geographic location. Usually however, Geocoding refers to a more specific assignment of geographic coordinates (latitude,Longitude) to an individual address.. UN Report Definition of Geocoding • What is Geocoding • Geocoding is a process of creating map features from addresses, place names, or similar textual information based on attributes associated with a referenced geographic database, typically a street network that has address ranges associated with each street segment or 'link' running from one intersection to the next. Definition of Geocoding • What is Geocoding • Geocoding typically uses Interpolation as a method to find the location information about an address. – (If the address along one side of a block range from 1 to 199, then Street Number = 66 is about one-third of the way along that side of the block.) • Data required: – Reasonably clean, consistent list of legal addresses (i.e.
    [Show full text]
  • A Comparison of Address Point and Street Geocoding Techniques
    A COMPARISON OF ADDRESS POINT AND STREET GEOCODING TECHNIQUES IN A COMPUTER AIDED DISPATCH ENVIRONMENT by Jimmy Tuan Dao A Thesis Presented to the FACULTY OF THE USC GRADUATE SCHOOL UNIVERSITY OF SOUTHERN CALIFORNIA In Partial Fulfillment of the Requirements for the Degree MASTER OF SCIENCE (GEOGRAPHIC INFORMATION SCIENCE AND TECHNOLOGY) August 2015 Copyright 2015 Jimmy Tuan Dao DEDICATION I dedicate this document to my mother, sister, and Marie Knudsen who have inspired and motivated me throughout this process. The encouragement that I received from my mother and sister (Kim and Vanna) give me the motivation to pursue this master's degree, so I can better myself. I also owe much of this success to my sweetheart and life-partner, Marie who is always available to help review my papers and offer support when I was frustrated and wanting to quit. Thank you and I love you! ii ACKNOWLEDGMENTS I will be forever grateful to the faculty and classmates at the Spatial Science Institute for their support throughout my master’s program, which has been a wonderful period of my life. Thank you to my thesis committee members: Professors Darren Ruddell, Jennifer Swift, and Daniel Warshawsky for their assistance and guidance throughout this process. I also want to thank the City of Brea, my family, friends, and Marie Knudsen without whom I could not have made it this far. Thank you! iii TABLE OF CONTENTS DEDICATION ii ACKNOWLEDGMENTS iii LIST OF TABLES iii LIST OF FIGURES iv LIST OF ABBREVIATIONS vi ABSTRACT vii CHAPTER 1: INTRODUCTION 1 1.1 Brea, California
    [Show full text]
  • TAGGS: Grouping Tweets to Improve Global Geotagging for Disaster Response Jens De Bruijn1, Hans De Moel1, Brenden Jongman1,2, Jurjen Wagemaker3, Jeroen C.J.H
    Nat. Hazards Earth Syst. Sci. Discuss., https://doi.org/10.5194/nhess-2017-203 Manuscript under review for journal Nat. Hazards Earth Syst. Sci. Discussion started: 13 June 2017 c Author(s) 2017. CC BY 3.0 License. TAGGS: Grouping Tweets to Improve Global Geotagging for Disaster Response Jens de Bruijn1, Hans de Moel1, Brenden Jongman1,2, Jurjen Wagemaker3, Jeroen C.J.H. Aerts1 1Institute for Environmental Studies, VU University, Amsterdam, 1081HV, The Netherlands 5 2Global Facility for Disaster Reduction and Recovery, World Bank Group, Washington D.C., 20433, USA 3FloodTags, The Hague, 2511 BE, The Netherlands Correspondence to: Jens de Bruijn ([email protected]) Abstract. The availability of timely and accurate information about ongoing events is important for relief organizations seeking to effectively respond to disasters. Recently, social media platforms, and in particular Twitter, have gained traction as 10 a novel source of information on disaster events. Unfortunately, geographical information is rarely attached to tweets, which hinders the use of Twitter for geographical applications. As a solution, analyses of a tweet’s text, combined with an evaluation of its metadata, can help to increase the number of geo-located tweets. This paper describes a new algorithm (TAGGS), that georeferences tweets by using the spatial information of groups of tweets mentioning the same location. This technique results in a roughly twofold increase in the number of geo-located tweets as compared to existing methods. We applied this approach 15 to 35.1 million flood-related tweets in 12 languages, collected over 2.5 years. In the dataset, we found 11.6 million tweets mentioning one or more flood locations, which can be towns (6.9 million), provinces (3.3 million), or countries (2.2 million).
    [Show full text]
  • Structured Toponym Resolution Using Combined Hierarchical Place Categories∗
    In GIR’13: Proceedings of the 7th ACM SIGSPATIAL Workshop on Geographic Information Retrieval, Orlando, FL, November 2013 (GIR’13 Best Paper Award). Structured Toponym Resolution Using Combined Hierarchical Place Categories∗ Marco D. Adelfio Hanan Samet Center for Automation Research, Institute for Advanced Computer Studies Department of Computer Science, University of Maryland College Park, MD 20742 USA {marco, hjs}@cs.umd.edu ABSTRACT list or table is geotagged with the locations it references. To- ponym resolution and geotagging are common topics in cur- Determining geographic interpretations for place names, or rent research but the results can be inaccurate when place toponyms, involves resolving multiple types of ambiguity. names are not well-specified (that is, when place names are Place names commonly occur within lists and data tables, not followed by a geographic container, such as a country, whose authors frequently omit qualifications (such as city state, or province name). Our aim is to utilize the context of or state containers) for place names because they expect other places named within the table or list to disambiguate the meaning of individual place names to be obvious from place names that have multiple geographic interpretations. context. We present a novel technique for place name dis- ambiguation (also known as toponym resolution) that uses Geographic references are a very common component of Bayesian inference to assign categories to lists or tables data tables that can occur in both (1) the case where the containing place names, and then interprets individual to- primary entities of a table are geographic or (2) the case ponyms based on the most likely category assignments.
    [Show full text]
  • A Survey on Geocoding: Algorithms and Datasets for Toponym Resolution
    A Survey on Geocoding: Algorithms and Datasets for Toponym Resolution Anonymous ACL submission Abstract survey and critical evaluation of the currently avail- 040 able datasets, evaluation metrics, and geocoding 041 001 Geocoding, the task of converting unstructured algorithms. Our contributions are: 042 002 text to structured spatial data, has recently seen 003 progress thanks to a variety of new datasets, • the first survey to review deep learning ap- 043 004 evaluation metrics, and machine-learning algo- proaches to geocoding 044 005 rithms. We provide a comprehensive survey • comprehensive coverage of geocoding sys- 045 006 to review, organize and analyze recent work tems, which increased by 50% in the last 4 046 007 on geocoding (also known as toponym resolu- 008 tion) where the text is matched to geospatial years 047 009 coordinates and/or ontologies. We summarize • comprehensive coverage of annotated geocod- 048 010 the findings of this research and suggest some ing datasets, which increased by 100% in the 049 011 promising directions for future work. last 4 years 050 012 1 Introduction 2 Background 051 013 Geocoding, also called toponym resolution or to- An early work on geocoding, Amitay et al.(2004), 052 014 ponym disambiguation, is the subtask of geopars- identifies two important types of ambiguity: A 053 015 ing that disambiguates place names in text. The place name may also have a non-geographic mean- 054 016 goal of geocoding is, given a textual mention of a ing, such as Turkey the country vs. turkey the ani- 055 017 location, to choose the corresponding geospatial co- mal, and two places may have the same name, such 056 018 ordinates, geospatial polygon, or entry in a geospa- as the San Jose in California and the San Jose in 057 019 tial database.
    [Show full text]
  • An Integrated INS/GPS Approach to the Georeferencing of Remotely
    I PEER-REVIEWED ARTICLE An Integrated INSIGPS Approach to the Georeferencing of Remotely Sensed Data Abstract remote areas such as are found in many developing coun- A general model for the georeferencing of remotely sensed tries. data by an onboard positioning and orientation system is In the case of pushbroom imagery, the georeferencing presented as a problem of rigid body motion. The determina- problem is further complicated due to the need for the in- tion of the six independent parameters of motion by discrete stantaneous position and attitude information at each line of measurements from ineNealand satellife systems is directly imagery. Ground control alone is not sufficient to resolve all related to the problem of exterior orientation. The contribu- of the three position and three orientation (attitude) parame- tion of each measuring system to the determination of the ters associated with each exposure station, of which there three translational and three rotational parameters is treated may be thousands in a single mission. In order to overcome in detail, with emphasis on the contribution of inertial navi- these problems, systems have been proposed whereby multi- gation systems (INS] and single- and multi-antenna receivers ple look angles are simultaneously recorded with slight vari- of the Global Positioning System [GPS). The advantages of an ations in alignment (Hofmann et al., 1988). integrated INSIGPS approach are briefly discussed. Position- Another approach has been through the use of auxiliary ing and orientation accuracies obtainable from available position and navigation sensors which have been simulta- systems are then highlighted using selected results to em- neously flown during imaging missions.
    [Show full text]
  • Guide to Best Practices for Georeferencing Includes Index ISBN: 87-92020-00-3
    Guide to Best Practices for Georeferencing Guide to Best Practices for Georeferencing BioGeomancer Consortium August 2006 Published by: Global Biodiversity Information Facility, Copenhagen http://www.gbif.org Copyright © 2006 The Regents of the University of California. All rights reserved. The information in this book represents the professional opinion of the authors, and does not necessarily represent the views of the publisher or of the Regents of the University of California. While the authors and the publisher have attempted to make this book as accurate and as thorough as possible, the information contained herein is provided on an "As Is" basis, and without any warranties with respect to its accuracy or completeness. The authors, the publisher and the Regents of the University of California shall have no liability to any person or entity for any loss or damage caused by using the information provided in this book. Guide to Best Practices for Georeferencing Includes Index ISBN: 87-92020-00-3 Recommended Citation: Chapman, A.D. and J. Wieczorek (eds). 2006. Guide to Best Practices for Georeferencing. Copenhagen: Global Biodiversity Information Facility. Edited by: Arthur D. Chapman and John Wieczorek Contributors: J.Wieczorek, R.Guralnick, A.Chapman, C.Frazier, N.Rios, R.Beaman, Q.Guo. Contents CONTENTS ..............................................................................................................................................I GLOSSARY ...........................................................................................................................................III
    [Show full text]
  • Using GIS with GPS
    GIS Best Practices Using GIS with GPS March 2009 Table of Contents What Is GIS? 1 GPS-GAP Changes the Way We View the Earth 3 GIS and GPS Integration Eases Public Road Inventory 9 Dominion and Verizon Use Mobile GIS and GPS to Conduct Joint-Use Pole Survey 13 A Cost-Effective Approach to GPS/GIS Integration for Archaeological Surveying 17 Facilities Survey Feasible With GIS and GPS 23 i What Is GIS? Making decisions based on geography is basic to human thinking. Where shall we go, what will it be like, and what shall we do when we get there are applied to the simple event of going to the store or to the major event of launching a bathysphere into the ocean's depths. By understanding geography and people's relationship to location, we can make informed decisions about the way we live on our planet. A geographic information system (GIS) is a technological tool for comprehending geography and making intelligent decisions. GIS organizes geographic data so that a person reading a map can select data necessary for a specifi c project or task. A thematic map has a table of contents that allows the reader to add layers of information to a basemap of real-world locations. For example, a social analyst might use the basemap of Eugene, Oregon, and select datasets from the U.S. Census Bureau to add data layers to a map that shows residents' education levels, ages, and employment status. With an ability to combine a variety of datasets in an infi nite number of ways, GIS is a useful tool for nearly every fi eld of knowledge from archaeology to zoology.
    [Show full text]