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!



Thermal Infrared Echoes: Illuminating the Last Gasp of a Dying Star

Thermal Infrared Echoes: Illuminating the Last Gasp of a Dying Star

4/24/2025

This blog was written by Eli Dwek, Emeritus, NASA Goddard Space flight Center, Greenbelt, MD and Research Fellow, Center for Astrophysics, Harvard & Smithsonian, Cambridge, MA. It is the fifth blog in a series showcasing our IDL® Fellows program which supports passionate retired IDL users who may need support to continue their work... Read More >

A New Era of Hyperspectral Imaging with ENVI® and Wyvern’s Open Data Program

A New Era of Hyperspectral Imaging with ENVI® and Wyvern’s Open Data Program

2/25/2025

This blog was written in collaboration with Adam O’Connor from Wyvern.   As hyperspectral imaging (HSI) continues to grow in importance, access to high-quality satellite data is key to unlocking new insights in environmental monitoring, agriculture, forestry, mining, security, energy infrastructure management, and more.... Read More >

Ensure Mission Success With the Deployable Tactical Analytics Kit (DTAK)

Ensure Mission Success With the Deployable Tactical Analytics Kit (DTAK)

2/11/2025

In today’s fast-evolving world, operational success hinges on real-time geospatial intelligence and data-driven decisions. Whether it’s responding to natural disasters, securing borders, or executing military operations, having the right tools to integrate and analyze data can mean the difference between success and failure.... Read More >

How the COVID-19 Lockdown Improved Air Quality in Ecuador: A Deep Dive Using Satellite Data and ENVI® Software

How the COVID-19 Lockdown Improved Air Quality in Ecuador: A Deep Dive Using Satellite Data and ENVI® Software

1/21/2025

The COVID-19 pandemic drastically altered daily life, leading to unexpected environmental changes, particularly in air quality. Ecuador, like many other countries, experienced significant shifts in pollutant concentrations due to lockdown measures. In collaboration with Geospace Solutions and Universidad de las Fuerzas Armadas ESPE,... Read More >

Rapid Wildfire Mapping in Los Angeles County

Rapid Wildfire Mapping in Los Angeles County

1/14/2025

On January 8, WorldView-3 shortwave infrared (SWIR) imagery captured the ongoing devastation of the wildfires in Los Angeles County. The data revealed the extent of the burned areas at the time of the capture, offering critical insights for rapid response and recovery. To analyze the affected region, we utilized a random forest... Read More >

1345678910Last
«April 2025»
SunMonTueWedThuFriSat
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910
12971 Rate this article:
No rating

Hash syntax for accessing children in (New) Graphics

Anonym
A useful feature of (New) Graphics (NG) is the ability to access a component of a visualization by name using hash syntax. This behavior is derived from the GetByName method implemented by most container classes in Object Graphics. For example, here I have a window that holds a plot of a Bessel J function:
x = findgen(100)/5
y = beselj(x)
w = window()
p = plot(x, y, color='red', name='bessel_j0', /current)
Note that I gave the plot a name. (The default name of a plot is ‘Plot’, or if more than one plot is present in a window, ‘Plot n’, where n = 1,2,3,…; likewise, ‘Surface’ for a surface, ‘Image’ for an image, etc.) Now discard the reference to the plot (maybe, e.g., it fell out of scope):
p = !null
So I now can’t access the properties of the plot. Or can I?! Retrieve the reference to the plot, by its name, from the window using hash syntax:
q = w['bessel_j0']
and use the recovered reference to change the color of the plot:
q.color = 'green'
Neat! I use this feature of NG frequently, especially to get access to the axes of a plot, post-creation. For example, to hide the top and right axes of the plot above, try:
q['axis2'].hide = 1
q['axis3'].hide = 1
In NG, axes are numbered starting at zero with the bottom axis and increasing clockwise (the left axis is index 1, etc.). In a subsequent post, I’ll talk about the very handy GETWINDOWS function for when you don’t have a reference to the window object holding a visualization.
Please login or register to post comments.