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!



New ENVI Agent, IDL Agent, and GeoAgent Quick Guides

New ENVI Agent, IDL Agent, and GeoAgent Quick Guides

6/9/2026

The recent release of ENVI® Agent, IDL® Agent, and GeoAgent™ revolutionize how users interact with geospatial software. These agentic AI applications act as partners to plan, simplify, and execute complex workflows. Knowing where to start can be challenging for new users. To this end, we developed three new quick guides to... Read More >

Introducing NISAR Data Support

Introducing NISAR Data Support

6/5/2026

The release of ENVI® SARscape 6.3 in April 2026 includes preliminary support for NASA-ISRO SAR (NISAR) data. The NISAR mission is a joint Earth-observing satellite project between NASA and the Indian Space Research Organization designed to monitor changes in the planet’s land and ice surfaces using advanced radar imaging. It... Read More >

Monitoring Illegal Mining in the Amazon: Turning Persistent Data Into Actionable Insight

Monitoring Illegal Mining in the Amazon: Turning Persistent Data Into Actionable Insight

5/28/2026

Illegal mining over decades has constituted one of the most persistent and complex socio-environmental problems in the Brazilian Amazon. In recent years, with the increasingly intensive use of mechanized extraction, the associated environmental impacts—such as deforestation, intense soil disturbance, river siltation, and mercury... Read More >

From Answers to Action: Why ENVI and IDL Agents Go Beyond General AI

From Answers to Action: Why ENVI and IDL Agents Go Beyond General AI

4/20/2026

As generative AI tools like Claude and Gemini continue to gain traction, many organizations are asking the same question: Can general purpose AI actually support real geospatial workflows, or does it stop at surface-level answers? That question was front and center in our recent webinar, Meet Your New Partners in Science: ENVI... Read More >

Mapping Earthquake Deformation in Taiwan With ENVI

Mapping Earthquake Deformation in Taiwan With ENVI

12/15/2025

Unlocking Critical Insights With ENVI® Tools Taiwan sits at the junction of major tectonic plates and regularly experiences powerful earthquakes. Understanding how the ground moves during these events is essential for disaster preparedness, public safety, and building community resilience. But traditional approaches like field... Read More >

1345678910Last
«June 2026»
SunMonTueWedThuFriSat
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011
21373 Rate this article:
No rating

The Top 5 Ways to Retrieve Remote Data in ENVI

Anonym

1. The Remote Connection Manager

ENVI's Remote Connection Manager allows you to connect to a specified host server, and browse all of its contents. This is an excellent tool for exploring data and finding the dataset that will work best for your situation. The Remote Connection Manager can be accessed in the ENVI interface though the ENVI main menu bar via File > Remote Connection Manager, or by hitting <Ctrl> + W.

2. IDLNetURL

The IDL routine IDLNetURL is a powerful command that creates an IDL object that is able to communicate with HTTP and FTP sites. Once created, the object can be set to communicate with a certain host and path, or make a call to a specific URL with the Get() method. The Get() method returns any information from the server, and has a FILENAME keyword, which can be set to a local location on your hard drive. This will download any returned file from the website, and save it to disk.

3. An Extension that invokes the e.OpenRaster() method

Writing an ENVI extension is a great way to incorporate new workflows or custom algorithms to run on your imagery. If you are writing a new extension, or have custom extension you've already written in ENVI, you can use the OpenRaster method on the ENVI object to open any supported remote dataset. The only required argument for OpenRaster() is a file location, and this includes images that are located on servers or websites.

To create a new template to write your own ENVI extension, click on File > New ENVI Extension... in the IDL main menu bar. Here is an example of a short ENVI extension that opens a dataset specified by a user, then displays it to the screen:

In this example, the file chosen with DIALOG_PICKFILE on line 23 can be a local dataset, or the path to a remote dataset on a server.

4. The ENVI Services Engine

The ENVI Services Engine allows for another degree of control - being able to manipulate your own server. Much like a geodatabase, you can store large amount of data on the server. Unlike a geodatabase however, you can place custom or pre-written ENVI algorithms with the data. This allows for processing of imagery on the server, possibly on multiple machines with multiple cores, to generate an intermediate or final product that can then be added to the collection on the server, or downloaded for use with ENVI. (Among other options like importing the image to your own webpage or interface!)

5. The tried and true - Direct Download

With all of the new tools to access remote data, it almost seems too trivial to simply copy the data down locally. However, if you are feeling old school, copying the data down directly from an FTP or other website is a completely reasonable and viable option. This does increase the time spent retrieving the data, but once you have it on your local drive, it's there until you delete it.

Please login or register to post comments.