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!



Not All Supernovae Are Created Equal: Rethinking the Universe’s Measuring Tools

Not All Supernovae Are Created Equal: Rethinking the Universe’s Measuring Tools

6/3/2025

Rethinking the Reliability of Type 1a Supernovae   How do astronomers measure the universe? It all starts with distance. From gauging the size of a galaxy to calculating how fast the universe is expanding, measuring cosmic distances is essential to understanding everything in the sky. For nearby stars, astronomers use... Read More >

Using LLMs To Research Remote Sensing Software: Helpful, but Incomplete

Using LLMs To Research Remote Sensing Software: Helpful, but Incomplete

5/26/2025

Whether you’re new to remote sensing or a seasoned expert, there is no doubt that large language models (LLMs) like OpenAI’s ChatGPT or Google’s Gemini can be incredibly useful in many aspects of research. From exploring the electromagnetic spectrum to creating object detection models using the latest deep learning... Read More >

From Image to Insight: How GEOINT Automation Is Changing the Speed of Decision-Making

From Image to Insight: How GEOINT Automation Is Changing the Speed of Decision-Making

4/28/2025

When every second counts, the ability to process geospatial data rapidly and accurately isn’t just helpful, it’s critical. Geospatial Intelligence (GEOINT) has always played a pivotal role in defense, security, and disaster response. But in high-tempo operations, traditional workflows are no longer fast enough. Analysts are... Read More >

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 >

1345678910Last
18611 Rate this article:
5.0

Implied Print: New Command Line Feature in IDL 8.3

Anonym
As is the case with our customers, those at Exelis use the right tools for the job. When IDL and its Workbench don't yet have some functionality that would make our development efforts most efficient and cost-effective, we'll use a different tool. Not often, but it happens.

Our Professional Services Group, in particular, thrives in mixed-mode environments like this. 

Sometimes we and our customers encounter productivity features in other environments that lead us to ask ourselves, "Wouldn't it be cool if IDL could do this, too?" And sometimes, if the business case can be made for it, the question isn't rhetorical and the reply is a resounding "Yes!"

The "implied print" behavior at the IDL command line is just such a feature that's new to version 8.3.  It incorporates and expands upon some good ideas we've seen. It has been a frequently-requested item from our customers, as well.

Like atmospheric oxygen, once you start using it, you'll wonder how you ever functioned without it. No kidding.

Remember this old saw?

IDL> PRINT, 2 + 2

       4

Well, forget everything you've learned about using PRINT.  Behold implied print:

IDL> 2+2

       4

Not to exaggerate at all, but it's like a lightning bolt overloading all your neurons right now, isn't it? Think of all the years of accumulated effort you've expended typing "PRINT," or worse yet "PRITN" or forgetting the required comma. No more.

Again, not to overstate this at all, but the tyranny of PRINT has been relegated to the dustbin of history.

Here are other examples:

IDL> a = BINDGEN(5)

IDL> a

  0   1   2  3   4

IDL> a[2:4]

  2   3   4

IDL> SIN(a)

      0.00000000      0.84147096      0.90929741      0.14112000     -0.75680250

But wait, there's more! Implied print will automatically display the maximum number of digits of precision for floating-point and double-precision data. Here are some comparisons between the default PRINT behavior (which will not change, to support backward compatibility) and the new implied print behavior:

IDL> print, 1.2345678

      1.23457

IDL> 1.2345678

       1.2345678

IDL> print, !dpi

       3.1415927

IDL> !dpi

      3.1415926535897931

There are new behaviors for string arrays, LISTs, HASHes, and structures, too.

If you write object-oriented code using the IDL_Object superclass, overriding the new _overloadImpliedPrint method will allow you to automatically extend this functionality to your own classes, similar to _overloadPrint . You may choose to have one simply call the other, or differentiate their behaviors. It keeps getting better and better, doesn't it?

This is all well and good at the command line, but what if you prefer this new style of output within an executing application or utility? The FIX, PRINT, and STRING functions all now accept a new IMPLIED_PRINT keyword that will use the same rules for output as implied print.

Yes, it's a revolution and you may have your cake and eat it, too.

Please login or register to post comments.