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!



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 >

Geo Sessions 2025: Geospatial Vision Beyond the Map

Geo Sessions 2025: Geospatial Vision Beyond the Map

8/5/2025

Lidar, SAR, and Spectral: Geospatial Innovation on the Horizon Last year, Geo Sessions brought together over 5,300 registrants from 159 countries, with attendees representing education, government agencies, consulting, and top geospatial companies like Esri, NOAA, Airbus, Planet, and USGS. At this year's Geo Sessions, NV5 is... Read More >

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 >

1345678910Last
«October 2025»
SunMonTueWedThuFriSat
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678
17835 Rate this article:
3.0

Queuing ESE Tasks in a Loop

Anonym

When using desktop ENVI and IDL, it is useful to setup processing that you have to do many times in a batch script. The easiest way to do this is with an IDL for loop that does processing on one file at a time. However, for an instance running ENVI Services Engine (ESE), it is best to call each task on an individual file. This makes the processing more robust, as an error in processing on a single file will not halt processing for every file. This leaves the question though - how would one loop over every file that needs processing?

One solution is to use IDL to create a loop that goes over each file, then launch every task that needs to be preformed. This builds up a list of tasks queued for execution. To do this, create a list of input files and output files much like you would in a batch process, then call the HTTP address required to submit the processing request to ESE one file at a time.

This can be done using IDL's built in HTTP client, IDLNetURL. As an example, if the ESE process to be called is an asynchronous task named "apply_color_table", the full HTTP call to start the task will be:

http://(host):8181/ese/services/AsyncService/apply_color_table/submitJob?inFile=file&outputFile=file

where (host) is the name or IP address of the server, and the keywords "file" are the actual input and output file names. One way to set up this call so that it occurs on multiple files is as follows, where inFiles is a variable containing all of the files to be processed.

 oURL = Obj_New('IDLnetUrl')

 oUrl.SetProperty, URL_SCHEME='http'

 oUrl.SetProperty, URL_HOST = !SERVER.HOSTNAME

 oUrl.SetProperty, URL_PORT='8181'

 oUrl.SetProperty, $

   URL_PATH='ese/services/AsyncService/apply_color_table/submitJob'

 foreach inFile, inFiles do begin

   oUrl.SetProperty, URL_QUERY='inputFile=' + inFile + $

     '&outputFile=' + 'ct_' + inFile

   result = oURL.Get()

   json = JSON_Parse(result)

   print, 'status file: ' + json['jobStatusURL']

 endforeach

The task that is called will contain the processing, in this case the call that would be made using IDL would be:

apply_color_table, inputFile=inputFile, outputFile=outputFile

This procedure will take in the input file and output file names as arguments, which are passed in through the queuing script.

Once the queuing script completes, ESE will begin running through the tasks one at a time, distributing the workload across CPUs and across any workers that are set up.

Please login or register to post comments.