I’m trying to use DistanceMatrix on GeoPositions. Doing this on large arrays causes the kernel to crash. Here’s an example, that causes the kernel to crash in about 15 seconds (version 11.2). largearray=RandomReal[{-180,180},{100000,2}]; largearray[[All,1]]=0.5*largearray[[All,1]]; (*random Lat-Long locations*) DistanceMatrix[GeoPosition[largearray]]; I can get it to succeed with 10,000 locations, but 100,000 causes an almost immediate crash. ItRead more