Is there any way to plot 3D data on a map projection with continents. If I set up a map and use the PLOT() function to plot a line, the line appears: m = MAP( 'Equirectangular' ) c = MAPCONTINENTS() p = PLOT( [-180, 180], [-90, 90], /OVERPLOT ) However, if I try to plot a 3D line over the map, the line does not appear m = MAP( 'Equirectangular' ) c = MAPCONTINENTS() p = PLOT3D( [-180, 180], [-90, 90], [0, 10], /OVERPLOT ) If I don't call MAPCONTINENTS() before PLOT3D(), then the line appears. However, the line disappears after MAPCONTINENTS() is called.
|