Book Image

Learning Geospatial Analysis with Python - Third Edition

By : Joel Lawhead
Book Image

Learning Geospatial Analysis with Python - Third Edition

By: Joel Lawhead

Overview of this book

Geospatial analysis is used in almost every domain you can think of, including defense, farming, and even medicine. With this systematic guide, you'll get started with geographic information system (GIS) and remote sensing analysis using the latest features in Python. This book will take you through GIS techniques, geodatabases, geospatial raster data, and much more using the latest built-in tools and libraries in Python 3.7. You'll learn everything you need to know about using software packages or APIs and generic algorithms that can be used for different situations. Furthermore, you'll learn how to apply simple Python GIS geospatial processes to a variety of problems, and work with remote sensing data. By the end of the book, you'll be able to build a generic corporate system, which can be implemented in any organization to manage customer support requests and field support personnel.
Table of Contents (15 chapters)
Free Chapter
1
Section 1: The History and the Present of the Industry
5
Section 2: Geospatial Analysis Concepts
10
Section 3: Practical Geospatial Processing Techniques

Measuring distance

The essence of geospatial analysis is discovering the relationships of objects on Earth. Items that are closer together tend to have a stronger relationship than those that are farther apart. This concept is known as Tobler's First Law of Geography. Therefore, measuring distance is a critical function of geospatial analysis.

As we have learned, every map is a model of the Earth and they are all wrong to some degree. For this reason, measuring the accurate distance between two points on the Earth while sitting in front of a computer is impossible. Even professional land surveyors (who go out in the field with both traditional sighting equipment and very precise GPS equipment) fail to account for every anomaly in the Earth's surface between point A and point B. So, to measure distance, we must look at the following questions:

  • What are we measuring...