Global Mapper v25.0

Program hangs/crashes creating coverage area from script

RGEarley
RGEarley Global Mapper UserTrusted User
edited August 2013 in Bug Report
I have script which continually would cause Global Mapper to hang/crash, give an error message, then the only way to get it to go away is to bring up the task manager, kill it, and restart it. The error it gives is:

Unhandled exception processing command message 32829 with code 0.
Read access violation at data address 0x000000000000000C,
program address 0x000000014001FB70.


Version: v14.2.3
Build Time: Jul 17 2013 12:11:59

I was able to narrow the problem down to the following simple script. If I comment out the line
EDIT_VECTOR CREATE_COVERAGE_AREAS=YES
and the
UNLOAD ALL

I am able to create a coverage area interactively.
The data in the shapefile is a set of points, they fall into two groups, but interactively it creates the coverage area reasonably well.

GLOBAL_MAPPER_SCRIPT VERSION="1.00"
UNLOAD_ALL
DEFINE_PROJ PROJ_NAME="SPCS_ZONE4202_NAD27"
Projection STATE_PLANE
Datum D_NORTH_AMERICAN_1927
Zunits NO
Units FEET
Zone 4202
Xshift 0.000000
Yshift 0.000000
Parameters
END_DEFINE_PROJ




UNLOAD_ALL


IMPORT FILENAME="C:\Users\ray\Documents\GlobalMapper\src-rcv.shp" TYPE="SHAPEFILE" \
ELEV_UNITS="FEET" LABEL_FIELD_FORCE_OVERWRITE="NO"
EDIT_VECTOR CREATE_COVERAGE_AREAS=YES

UNLOAD_ALL

Comments