Re: [Ironpython-users] How to free memory in ironpython

2016-11-27 Thread Djordje Spasic via Ironpython-users
Hi Pawel, Thank you for the suggestion. I am not familiar with subprocess.popen. How would command line utility look like for this code: import clr iteropMapWinGIS_dll_filePath = "C:\\ProgramFiles\\MapWindow GIS Lite\\Interop.MapWinGIS.dll"clr.AddReferenceToFileAndPath(iteropMapWinGIS_dll_filePa

Re: [Ironpython-users] How to free memory in ironpython

2016-11-27 Thread Pawel Jasinski
sorry, the other answer went without the list. For popen, here is not tested snipped to give you a jump start. The docs for subprocess.popen are your friend. import subprocess args = ["replace with full path to ogr2ogr.exe", osm_filePath, shps_filePa