X

19

Feb

2025

How to plot two graphics with different data extents in the same view using IDL Object Graphics

 

With IDL Object Graphics, plotting two graphics with different data extents in the same graphic window requires normalizing the range of the second graphic to fit the extension of the first one. If not, the two graphics will not fit within the same view.

Comments (0)
Number of views (294)
Article rating: No rating
Read more

Categories: IDL

Tags:

19

Feb

2025

How to build a vertical filled plot in IDL

IDL includes a routine called FILLPLOT which allows to create horizontal filled plots. However it does not support vertical filled plots:

https://www.nv5geospatialsoftware.com/docs/FILLPLOT.html

The easiest way to build vertical filled plots is then to use the POLYGON routine instead:

https://www.nv5geospatialsoftware.com/docs/POLYGON.html

Comments (0)
Number of views (302)
Article rating: No rating
Read more

Categories: IDL

Tags:

19

Feb

2025

Using QHULL routine in IDL to build the largest convex polygon around a set of random points

QHULL is an IDL routine to apply Quick Hull algorithm for various applications.

Bibliography: “The Quickhull Algorithm for Convex Hulls,” ACM Transactions on Mathematical Software, Vol. 22, No 4, December 1996, Pages 469-483, Barber, Dobkin and Huhdanpaa

One application consists in building the largest convex polygon around a set of random points. The example below is showing how to use QHULL in such context.

 

Comments (0)
Number of views (344)
Article rating: No rating
Read more

Categories: IDL

Tags:

19

Feb

2025

Configuring IDL Python Bridge with venv Virtual Python environment on Windows

If you have difficulties to configure IDL Pyhton bridge with a virtual venv Python environment, it may be due to the fact that such virtual environments are missing almost all of the required Libs, site-packages, and DLLs. They all come from the parent environment. The IDL Python bridge does not know that it is a virtual environment and assumes that everything is located within the Python venv directory.

Comments (0)
Number of views (382)
Article rating: No rating
Read more

Categories: IDL

Tags:

9

Jan

2025

How to pass an IDL structure into (or out of) an IDL-IDL bridge child process

This article describes how to pass an IDL structure into an IDL-IDL bridge child process using a work-around via IDLDehydrate and JSON_SERIALIZE. 

Comments (0)
Number of views (263)
Article rating: No rating
Read more

Categories: IDL

Tags:

1345678910Last