program main c*********************************************************************72 c cc DISLIN_EX13 demonstrates a map plot. c c Modified: c c 05 September 2005 c implicit none write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'DISLIN_EX13:' write ( *, '(a)' ) ' FORTRAN77 version' write ( *, '(a)' ) ' Demonstrate the creation of a map plot.' c c Specify the format of the output file. c call metafl ( 'PNG' ) c c Specify the name of the output graphics file. c call setfil ( 'dislin_ex13.png' ) call disini call pagera call complx call frame ( 3 ) call axspos ( 400, 1850 ) call axslen ( 2400, 1400 ) call name ( 'Longitude', 'X' ) call name ( 'Latitude', 'Y' ) call titlin( 'World Coastlines and Lakes', 3 ) call labels ( 'MAP', 'XY' ) call grafmp ( -180.0, 180.0, -180.0, 90.0, -90.0, 90.0, & -90.0, 30.0 ) call gridmp ( 1, 1 ) call color ( 'GREEN' ) call world call color ( 'FORE' ) call height ( 50 ) call title call disfin write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'DISLIN_EX13:' write ( *, '(a)' ) ' Normal end of execution.' stop end