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
21854 Rate this article:
5.0

Using IDL_IDLBridge to run multiple processes in parallel

Anonym

I noticed a question on the newsgroup about running multiple time consuming IDL commands in parallel processes. This is a topic that we in the Custom Solutions group come accross fairly frequently. Below is a simple example of how to manage a number of processes running at the same time.

Notice in the code, that it is often important to control the working directory as well as the search path for all of the bridge processes so that the bridge processes can find the necessary IDL code as well as any data needed.

pro multi_process
  compile_opt idl2, logical_predicate
 
  cd, current=dir
 
  n_proc = 10
 
  tlb = widget_base(title='Initializing',/column, xsize=500, ysize=500)
  t = widget_text(tlb, value='Initializing...')
  widget_control, tlb, /realize
 
 
  br = objarr(n_proc)
  for i=0, n_proc-1 do begin
    br[i] = IDL_IDLbridge()
    br[i]->SetVar,'dir',dir
    br[i]->Execute,'cd,dir'
    br[i]->SetVar,'!path',!path
    br[i]->Execute,'wait,50*randomu(seed)',/nowait
  endfor
 
  widget_control, tlb, /destroy
  tlb = widget_base(title='Processing progress',/column)
  t = widget_table(tlb, xsize=2, ysize=n_proc, value=strarr(2,n_proc), $
    column_labels=['Process #','Status'], column_width=[250,250])
  widget_control, tlb, /realize
 
  ; Monitor progress
  status = replicate(1, n_proc)
  table = strarr(2,n_proc)
  table[0,*] = strtrim(indgen(n_proc),2)
  codes = ['Idle','Executing','Completed','Error','Aborted']
  while max(status) gt 0 do begin
    wait, 1
    for i=0, n_proc-1 do begin
      status[i] = br[i]->Status()
    endfor
    table[1,*] = codes[status]
    widget_control, t, set_value=table
  endwhile
  widget_control, tlb, /destroy
end

This code example will display a simple GUI showing the status of the IDL processes.

This is a great approach if you want to speed up some time consuming IDL processes that can run individually on the same system. In more complex situations, you want to instead look into ENVI Services Engine as it provides much more functionality for configuring how "jobs" are being run, and also supports distributing jobs over multiple systems (nodes). Despite the word "ENVI" here, it also supports running pure IDL code.

Please login or register to post comments.