Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Learning Geospatial Analysis with Python
Learning Geospatial Analysis with Python

Learning Geospatial Analysis with Python: If you know Python and would like to use it for Geospatial Analysis this book is exactly what you've been looking for. With an organized, user-friendly approach it covers all the bases to give you the necessary skills and know-how.

Arrow left icon
Profile Icon Joel Lawhead
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1 (8 Ratings)
Paperback Oct 2013 364 pages 1st Edition
eBook
$22.99 $32.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Joel Lawhead
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1 (8 Ratings)
Paperback Oct 2013 364 pages 1st Edition
eBook
$22.99 $32.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$22.99 $32.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Learning Geospatial Analysis with Python

Chapter 2. Geospatial Data

The most challenging aspect of geospatial analysis is the data. Geospatial data includes dozens of file formats and database structures already and continues to evolve and grow to include new types of data and standards. Additionally almost any file format can technically contain geospatial information simply by adding a location. As a geospatial analyst you may frequently encounter the following general data types:

  • Spreadsheets and comma or tab-delimited files (CSV files)
  • Geo-tagged photos
  • Lightweight binary points, lines, and polygons
  • Multigigabyte satellite or aerial images
  • Elevation data such as grids, point clouds, or integer-based images
  • XML files
  • JSON files
  • Databases (both servers and file databases)

Each format contains its own challenges for access and processing. When you perform analysis on data, usually you have to do some form of preprocessing first. You might clip a satellite image of a large area down to just your area of interest. Or you might...

Data structures

Despite dozens of formats, geospatial data have common traits. Understanding these traits can help you approach and understand unfamiliar data formats by identifying the ingredients common to nearly all spatial data. The structure of a given data format is usually driven by its intended use. Some data is optimized for efficient storage or compression; some is optimized for efficient access, some is designed to be lightweight and readable (web formats), while other data formats seek to contain as many different data types as possible.

Interestingly, some of the most popular formats today are also some of the simplest and even lack features found in more capable and sophisticated formats. Ease of use is extremely important to geospatial analysts, because so much time is spent integrating data into geographic information systems as well as exchanging data among analysts. Simple data formats facilitate these activities the best.

Common traits

Geospatial analysis is an approach...

Vector data

Vector data is by far the most common geospatial format because it is the most efficient way to store spatial information, and in general requires less computer resources to store and process than raster data. The Open Geospatial Consortium (OGC) has over 16 formats directly related to vector data. Vector data stores only geometric primitives including points, lines, and polygons. But only the points are stored for each type of shape. For example, in the case of a simple straight vector line shape, only the end points would be necessarily stored and defined as a line. Software displaying that data would read the shape type, and then connect the end points with a line dynamically.

Geospatial vector data is similar to the concept of vector computer graphics with some notable exceptions. Geospatial vector data contains positive and negative Earth-based coordinates, while vector graphics typically store computer screen coordinates. Geospatial vector data is also usually linked to...

Raster data

Raster data consists of rows and columns of cells or pixels, with each cell representing a single value. The easiest way to think of raster data is as images, which is how they are typically represented by software. But raster data sets are not necessarily stored as images. They can also be ASCII text files or Binary Large Objects (BLOBs) in databases.

Another difference between geospatial raster data and regular digital images is resolution. Digital images express resolution as dots-per-inch if printed at full size. Resolution can also be expressed or the total number of pixels in the image defined as megapixels. However, geospatial raster data uses the ground distance each cell represents. For example, a raster data set with two-foot resolution means that a single cell represents two feet on the ground, which also means only objects larger than two feet can be identified visually in the data set.

Raster data sets may contain multiple bands, meaning that different wavelengths...

Point cloud data

Point cloud data is any data collected as the (x,y,z) location of a surface point based on some sort of focused energy return. Point cloud data can be created using lasers, radar waves, acoustic soundings, or other waveform generation devices. The spacing between points is arbitrary and is dependent on the type and position of the sensor collecting the data. In this book we will primarily be concerned with LIDAR data and radar data. Radar point cloud data is typically collected on space missions while LIDAR is typically collected by terrestrial or airborne vehicles. But conceptually both types of data are similar.

LIDAR uses powerful laser range-finding systems to model the world with very high precision. The term LIDAR or LiDAR is a combination of the words light and radar. Some people claim it also stands for Light Detection and Ranging. LIDAR sensors can be mounted on aerial platforms including satellites, airplanes, or helicopters. They can also be mounted on vehicles...

Summary

You now have the background needed to work with common types of geospatial data. You also know the common traits of geospatial data sets which will allow you to evaluate unfamiliar types of data and identify key elements as follows:

  • Geo-location information
  • Subject information
  • Spatial indexing
  • Metadata
  • Basic file structure

In Chapter 3, The Geospatial Technology Landscape, we'll examine the modules and libraries available to work with these data sets. And as with all code in this book, whenever possible, pure Python and standard libraries will be used.

Left arrow icon Right arrow icon

Key benefits

  • Construct applications for GIS development by exploiting Python
  • Focuses on built-in Python modules and libraries compatible with the Python Packaging Index distribution system ‚Äì no compiling of C libraries necessary
  • This is a practical, hands-on tutorial that teaches you all about Geospatial analysis in Python

Description

Geospatial analysis is used in almost every field you can think of from medicine, to defense, to farming. It is an approach to use statistical analysis and other informational engineering to data which has a geographical or geospatial aspect. And this typically involves applications capable of geospatial display and processing to get a compiled and useful data. "Learning Geospatial Analysis with Python" uses the expressive and powerful Python programming language to guide you through geographic information systems, remote sensing, topography, and more. It explains how to use a framework in order to approach Geospatial analysis effectively, but on your own terms. "Learning Geospatial Analysis with Python" starts with a background of the field, a survey of the techniques and technology used, and then splits the field into its component speciality areas: GIS, remote sensing, elevation data, advanced modelling, and real-time data. This book will teach you everything there is to know, from using a particular software package or API to using generic algorithms that can be applied to Geospatial analysis. This book focuses on pure Python whenever possible to minimize compiling platform-dependent binaries, so that you don't become bogged down in just getting ready to do analysis. "Learning Geospatial Analysis with Python" will round out your technical library with handy recipes and a good understanding of a field that supplements many a modern day human endeavors.

Who is this book for?

This book is for anyone who wants to understand digital mapping and analysis and who uses Python or another scripting language for automation or crunching data manually.This book primarily targets Python developers, researchers, and analysts who want to perform Geospatial, modeling, and GIS analysis with Python.

What you will learn

  • Automate Geospatial analysis workflows using Python
  • Code the simplest possible GIS in 60 lines of Python
  • Mold thematic maps with Python tools
  • Get a hold of the various forms the geospatial data comes in
  • Produce elevation contours using Python tools
  • Create flood inundation models
  • Learn Real-Time Data tracking and apply it in storm chasing

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 25, 2013
Length: 364 pages
Edition : 1st
Language : English
ISBN-13 : 9781783281138
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Oct 25, 2013
Length: 364 pages
Edition : 1st
Language : English
ISBN-13 : 9781783281138
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 164.97
Python Geospatial Development - Second Edition
$54.99
PostGIS Cookbook
$54.99
Learning Geospatial Analysis with Python
$54.99
Total $ 164.97 Stars icon

Table of Contents

11 Chapters
1. Learning Geospatial Analysis with Python Chevron down icon Chevron up icon
2. Geospatial Data Chevron down icon Chevron up icon
3. The Geospatial Technology Landscape Chevron down icon Chevron up icon
4. Geospatial Python Toolbox Chevron down icon Chevron up icon
5. Python and Geographic Information Systems Chevron down icon Chevron up icon
6. Python and Remote Sensing Chevron down icon Chevron up icon
7. Python and Elevation Data Chevron down icon Chevron up icon
8. Advanced Geospatial Python Modelling Chevron down icon Chevron up icon
9. Real-Time Data Chevron down icon Chevron up icon
10. Putting It All Together Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1
(8 Ratings)
5 star 50%
4 star 37.5%
3 star 0%
2 star 0%
1 star 12.5%
Filter icon Filter
Top Reviews

Filter reviews by




David Ferguson Oct 26, 2013
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The author draws from his experience in the geospatial industry to apply practical solutions using the Python programming language, A great resource for applying Python to perform GIS/Remote Sensing analysis.
Amazon Verified review Amazon
Jacob C. Ting Feb 10, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I'd like to start this review by addressing a few quick questions before I add my own thoughts.First, who would be interested in this book?Really, anyone who has ever had an interest in simply learning what Geospatial Analysis is will benefit from this book, the first chapters go through an excellent introduction into what the field of Geospatial Analysis even is and the topics that cover its range, such as Geographic Information Systems and Remote Sensing. That being said, once you get into the specific topics the focus really shifts to using Python to implement examples of these topics, and an individual who is completely unfamiliar with Python wouldn't benefit as much as someone who has a fairly good Python or programming background. Nevertheless eve if you never ran a single line of code, simply reading the book from front to back should give the reader a good foundation on what Geospatial Analysis is and how it is performed.Second, I'd like to discuss if the book covers what it says it does in its description:The description states it will offer a background in Geosptial Analysis, which it does a great job of in the beginning chapters. Before even jumping into the many Python modules you'll use, readers will gain an understanding of the topic they'll be learning.The second big statement is that the book will teach you how do use Python to implement Geospatial Analysis, and I was pleasantly surprised that the author really strives to keep everything running in pure Python modules whenever possible. The most you'll stray from running pure Python modules is in the use of some file viewers. Another great addition is that the author really pushes the use of open source libraries, throughout the book I never felt like I needed to purchase any of the more intense Geographic Information System software packages that are on the market. I really felt like all I needed was my Python interpreter and an internet connection.The next aspect that I found most enjoyable was that I simply liked reading the book. I initially sat down and just read the book from front to back, without following the code tutorials. I really enjoyed this approach because after I had read through, I simply went back and followed the tutorials that I found to be the most interesting to get a better understanding of how they were used. Another thing I highly enjoyed was seeing the use of some Python packages I have seen used in so many other scientific realms, most notably NumPy, as well as some modules that I'd never seen before, most of which are directly related to Geospatial Analysis.The thing I learned the most from reading this book is that Geospatial Analysis is all about the data, and there is an extremely broad amount of data and data formats that can be used. A large portion of the text will cover what this data is, how it is used, and ways you can use Python to extract, alter, and use this data in creating some pretty cool Geospatial models. Even the very first map you draw depends on using this data. Thankfully you won't have to go searching for this, as the book provides plenty of data files for download.Overall I would highly recommend this book to anyone that has a love of Python and has a real interest in getting a starting background in understanding Geospatial Analysis. I would offer a slight recommendation for those users that are simply looking for a text book about Geospatial Analysis, as the real fun of the book comes from seeing the models and images being manipulated from the solid set of functions that the author gives you in Python. It is obvious that the author cares a great deal about the topic, and the enthusiasm is a definite benefit to the flow of the book. A fun, good read in my opinion as someone who initially knew very little about the topic.
Amazon Verified review Amazon
Anastasia Apr 05, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is sooooo useful for anybody who works with GIS! I used ideas from this book and was able to do projects with PURE Python, and not a single line of ArcPy !!!!
Amazon Verified review Amazon
moria2 Jan 03, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
great book for those who know GIS and are interested in Python
Amazon Verified review Amazon
Mohammed Dec 26, 2023
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Great Book overall. the only problem I have is the data sources. all dataset links are not working. I will diffidently recommend it to my friends.
Subscriber review Packt
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.