program main !*****************************************************************************80 ! !! DISLIN_EX13 demonstrates a map plot. ! ! Modified: ! ! 05 September 2005 ! use dislin implicit none write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'DISLIN_EX13:' write ( *, '(a)' ) ' FORTRAN90 version' write ( *, '(a)' ) ' Demonstrate the creation of a map plot.' ! ! Specify the format of the output file. ! call metafl ( 'PNG' ) ! ! Specify the name of the output graphics file. ! call setfil ( 'dislin_ex13.png' ) ! ! Set up the plot. ! call setpag ( 'da4l' ) 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