You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many instances in the JP2Gen code where the Unix-like commands are spawned to the command line. Many examples can be found simply by looking through the code for spawn. Many of these commands are to do with file manipulation and movement. The use of Unix-like commands means that the code will not run on Windows systems.
Locations in the code that us Unix-like commands should be edited and replaced with IDL tools that handle different OSs, for example FILE_MKDIR is like mkdir -p. This will enable JP2Gen to be independent of the underlying OS.
Starting with the gen tree is the most important. Other, instruments-specific processing pipelines can be updates as needed.
The text was updated successfully, but these errors were encountered:
There are many instances in the JP2Gen code where the Unix-like commands are spawned to the command line. Many examples can be found simply by looking through the code for
spawn
. Many of these commands are to do with file manipulation and movement. The use of Unix-like commands means that the code will not run on Windows systems.Locations in the code that us Unix-like commands should be edited and replaced with IDL tools that handle different OSs, for example
FILE_MKDIR
is likemkdir -p
. This will enable JP2Gen to be independent of the underlying OS.Starting with the
gen
tree is the most important. Other, instruments-specific processing pipelines can be updates as needed.The text was updated successfully, but these errors were encountered: