X

NV5 Geospatial Blog

Each month, NV5 Geospatial posts new blog content across a variety of categories. Browse our latest posts below to learn about important geospatial information or use the search bar to find a specific topic or author. Stay informed of the latest blog posts, events, and technologies by joining our email list!



Easily Share Workflows With the Analytics Repository

Easily Share Workflows With the Analytics Repository

10/27/2025

With the recent release of ENVI® 6.2 and the Analytics Repository, it’s now easier than ever to create and share image processing workflows across your organization. With that in mind, we wrote this blog to: Introduce the Analytics Repository Describe how you can use ENVI’s interactive workflows to... Read More >

Deploy, Share, Repeat: AI Meets the Analytics Repository

Deploy, Share, Repeat: AI Meets the Analytics Repository

10/13/2025

The upcoming release of ENVI® Deep Learning 4.0 makes it easier than ever to import, deploy, and share AI models, including industry-standard ONNX models, using the integrated Analytics Repository. Whether you're building deep learning models in PyTorch, TensorFlow, or using ENVI’s native model creation tools, ENVI... Read More >

Blazing a trail: SaraniaSat-led Team Shapes the Future of Space-Based Analytics

Blazing a trail: SaraniaSat-led Team Shapes the Future of Space-Based Analytics

10/13/2025

On July 24, 2025, a unique international partnership of SaraniaSat, NV5 Geospatial Software, BruhnBruhn Innovation (BBI), Netnod, and Hewlett Packard Enterprise (HPE) achieved something unprecedented: a true demonstration of cloud-native computing onboard the International Space Station (ISS) (Fig. 1). Figure 1. Hewlett... Read More >

NV5 at ESA’s Living Planet Symposium 2025

NV5 at ESA’s Living Planet Symposium 2025

9/16/2025

We recently presented three cutting-edge research posters at the ESA Living Planet Symposium 2025 in Vienna, showcasing how NV5 technology and the ENVI® Ecosystem support innovation across ocean monitoring, mineral exploration, and disaster management. Explore each topic below and access the full posters to learn... Read More >

Monitor, Measure & Mitigate: Integrated Solutions for Geohazard Risk

Monitor, Measure & Mitigate: Integrated Solutions for Geohazard Risk

9/8/2025

Geohazards such as slope instability, erosion, settlement, or seepage pose ongoing risks to critical infrastructure. Roads, railways, pipelines, and utility corridors are especially vulnerable to these natural and human-influenced processes, which can evolve silently until sudden failure occurs. Traditional ground surveys provide only periodic... Read More >

1345678910Last
«November 2025»
SunMonTueWedThuFriSat
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456
13241 Rate this article:
5.0

Some Fun with HDF5

Celebrating the Launch of the Global Precipitation Measurement Satellite

Anonym

It is no secret that California is experiencing the worst drought it has seen in decades, and researchers have already begun to dig into the underlying cause; hats off to those folks. It is true though, that the more information available on a situation, the better equipped we will be to solve the problem at hand. It is an exciting day for the remote sensing community, as well as those researching the drought in California, as they are about to get another (more distant) perspective.

Today marks the launch of the Global Precipitation Measurement (GPM) Core Observatory satellite, which if things go well, will begin its journey into Earth's outer atmosphere and beyond to inhabit its new home. It will be the inaugural launch for an international satellite constellation with partners in the United States, Japan, India, and Europe. The sensor on board will be responsible for taking measurements of where, when, and how much precipitation falls around the globe. It will become an invaluable asset in understanding our climate, weather systems, as well as our most precious resource: water.

The thing that I'm most excited about though? The datasets, once they make it down here, are going to be distributed in HDF5. This format has been one of my favorites ever since working with them in the remote sensing department at CU Boulder. It not only organizes the data, it opens up options for direct access to the datasets that you are interested in. I can't wait to tear in to the new data with some code I put together:

 

I'd like to give Dave Huslander credit for helping me out with an initial code example created for opening SMAP files, which have a similar format that will be used by a satellite of the same constellation scheduled for launch in November.

IDL has robust commands to access HDF5 files, and has added a few new routines with the release of IDL 8.3. These are H5_GETDATA, H5_LIST,and H5_PUTDATA, which do exactly what you would expect from the name. I like them a lot better than the old routines used to access HDF4 files, and they area lot easier to use.

If GUIs are more your style, opening image data from these puppies in ENVI 5.1 is now supported with the HDF5 Browser. I got to do some work on the browser with Ben Foreback when I started at Exelis in engineering, so I might be biased, but I think it's the cat's meow. It opens any HDF5 file, and can display any two or three dimensional dataset in the interleave of your choice.

In the browser, as long as 2-dimensional datasets are the same size, you can merge them in to a multi-spectral raster. It's actually kind of fun messing with it - you can make all sorts of fun pictures (though some might question the practicality). Here's an image with longitude as the red band, latitude as the green band, and height as the blue band for an HDF5 format image over the United States: 

 

From a quick inspection, you can see that this image was taken with South at the top. The high green values in the North are at the bottom of the screen, and the high red values in the East are to the left on the screen. The blue in the upper right corner is land near the California coast, and black is the ocean.

If you've never used HDF5 before I encourage you to give it a shot! It takes a bit to learn the format, but I know I wouldn't choose any other format for data ingest and export given the option.

Please login or register to post comments.