ACON
Home/Topics |
Commands |
More Examples
Interval Symbols

/* This script demonstrates interval scaled symbols */
/*------------------------------------------------*/
/* Read the data from a file */
Matrix_Read(cat(HostPath(),"Test Data/TestData.txt"),"xyz",1,1 2 3);
/* The data has now been read into memory */
/* longitude latitude limits of plot */
/* left, right, bottom, top */
Data_Window(-67,-62,41,44.0);
/* position on page of the axis border rectangle */
/* left, right, bottom, top */
Data_Viewport(mm(20),mm(90),mm(190),mm(260));
/* use mercator projection */
Data_Projection("MERCATOR");
/* draw axis, 1 deg labels, 0.5 deg tics, left and bottom edges */
Axis(1,1,0.5,0.5,1,0,1,0,0);
/*------------------------------------------------*/
/* Now plot interval scaled symbols */
/*------------------------------------------------*/
Draw_Text(mm(32),mm(192),"Interval Scaled Symbols");
Interval_Scaling(2,0,1.,mm(1.),15.,mm(2.5),30.,mm(5.));
Scaled_Symbols(xyz);
Symbol_Legend(mm(95),mm(255));
/* draw a section of the Nova Scotia coastline */
Line_Colour("BLACK");
Overlay_file(mappath("COAST1"));
Overlay_file(mappath("Depthm200"));
ACON
Home/Topics |
Commands |
More Examples
|