1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
|
;
; A visual way to check some projections and Earth cartography.
;
; Also a way to check whether GDL was compiled with GSHHG support,
; with GSHHG somewhere in GSHHG_DATA_DIR,
; and if GDL is compiled or not with LibProj4 or LibProj4New
;
; --------------------------------------------
; This code is under GNU GPL v2 or later.
;
; Creation by AC, 27-Feb-2007. updated 17-avr-2007
; 25-May2007 : 2 messages were removed since all the cases are now
; working for x86 and x86_64
;
; History
; AC 28-Jul-2008: 2 new projections provided by Joel.
;
; Spring 2014: large rewritting by Gilles D., adding a lot
; of examples linked to newly available projections in GDL
;
; 2014 July 30: some help to run this test !
;
; Purpose: A very simple test for MAP library
; (a way not to forgot how to call the mapping procedures !!)
;
;
function INTERNAL_GDL_MAP_LIBS
;
FORWARD_FUNCTION GSHHG_EXISTS, PROJ4_EXISTS, PROJ4NEW_EXISTS
;
print, 'Stating INTERNAL_GDL_MAP_LIBS'
;
status=0
;
if GSHHG_EXISTS() then begin
print, 'GDL was compiled with GSHHG support !'
status=1
endif else begin
print, 'Unfortunalty, GDL was compiled without GSHHG support !'
print, 'This is mandatory for Earth Cartography'
status=-100
endelse
;
if PROJ4_EXISTS() then begin
print, 'GDL was compiled with LibProj4 support !'
status=status+10
endif else begin
print, 'Unfortunalty, GDL was compiled without LibProj4 support !'
endelse
;
if PROJ4NEW_EXISTS() then begin
print, 'GDL was compiled with LibProj4New support !'
status=status+10
endif else begin
print, 'Unfortunalty, GDL was compiled without LibProj4New support !'
endelse
;
return, status
;
end
;
; -------------------------------------------------
;
pro GET_MAP_PROCEDURES, path2file, quiet=quiet, verbose=verbose, $
help=help, debug=debug, test=test
;
if KEYWORD_SET(help) then begin
print, 'pro GET_MAP_PROCEDURES, path2file, quiet=quiet, verbose=verbose, $'
print, ' help=help, debug=debug, test=test'
return
endif
;
print, 'Starting GET_MAP_PROCEDURES'
;
filename='MAP_INSTALL'
;
if (N_PARAMS() EQ 0) then path2file=''
;
full_name=''
;
; we just try 3 basic locations
;
if FILE_TEST(path2file+filename) then full_name=path2file+filename
if (STRLEN(full_name) EQ 0) then begin
if FILE_TEST(path2file+PATH_SEP()+filename) then full_name=path2file+filename
endif
if (STRLEN(full_name) EQ 0) then begin
if FILE_TEST(path2file+PATH_SEP()+filename) then full_name=path2file+filename
endif
;
if (STRLEN(full_name) EQ 0) then begin
MESSAGE, /continue, "the file MAP_INSTALL was not found"
MESSAGE, /continue, "please provide path two this file"
return
endif
;
; recovering the list of missing map routines
;
get_lun, lun
openr, lun, full_name
cur_line=''
lines=''
while ~EOF(lun) do begin
readf, lun, cur_line
lines=[lines,cur_line]
endwhile
close, lun
free_lun, lun
;
filtre='http://idlastro'
OK=WHERE(STRPOS(lines, filtre) GE 0, nb_ok)
if nb_ok EQ 0 then MESSAGE, 'something wrong in MAP_INSTALL file !'
;
if KEYWORD_SET(debug) OR KEYWORD_SET(verbose) then begin
print, 'OK indexes values : ', OK
for ii=0, nb_ok-1 do begin
print, lines[OK[ii]]
endfor
if KEYWORD_SET(debug) then STOP
endif
;
; do we need to had this path to the whole !path
;
dir_name='map_routines'
CD, current=old_current
new_current=old_current+PATH_SEP()+dir_name
;
; we check whether we already have the mandatory files around
;
list_of_dir=STRSPLIT(!PATH, PATH_SEP(/SEARCH_PATH),/EXTRACT)
;
; do we already have a "map_routines" dir. here ??
exist=STRPOS(list_of_dir,'map_routine')
exist_ok=WHERE(exist GE 0, nb_exist_ok)
if nb_exist_ok EQ 0 then begin
!path=!path+':'+new_current
list_of_dir=STRSPLIT(!PATH, PATH_SEP(/SEARCH_PATH),/EXTRACT)
endif
;
for ii=0, nb_ok-1 do begin
fullfile=lines[OK[ii]]
file=STRMID(fullfile,1+STRPOS(lines[ok[ii]],'/',/reverse_search))
Result = FILE_SEARCH(list_of_dir+PATH_SEP()+file)
if STRLEN(result) GT 0 then OK[ii]=-1
endfor
OK_tmp=WHERE(OK GE 0, nb_ok_tmp)
if (nb_ok_tmp EQ 0) then begin
print, 'all mandatory routines already available'
return
endif
;
; creating a sub-dir for Map routines
; updating the !path
;
CD, current=old_current
;
FILE_MKDIR, dir_name
;
CD, dir_name
CD, current=new_current
;
if KEYWORD_SET(debug) then STOP
;
;
old_html='http://idlastro.gsfc.nasa.gov/ftp/exelislib/'
new_html='http://www.lancesimms.com/programs/IDL/lib/'
list_todo=lines[OK]
list_todo=new_html+STRMID(list_todo,STRLEN(new_html))
;
; downloading the files
for ii=0, N_ELEMENTS(list_todo)-1 do begin
spawn, "curl -O "+list_todo[ii]
endfor
;
CD, old_current
;
if KEYWORD_SET(test) then STOP
;
end
;
; -------------------------------------------------
;
function CHECK_GSHHG_DATA, test=test
;
print, 'Starting CHECK_GSHHG_DATA'
;
files=['gshhs_c.b','wdb_borders_c.b','wdb_rivers_c.b']
nb_files=N_ELEMENTS(files)
;
final_path_sep=STRPOS(!GSHHS_DATA_DIR,PATH_SEP(),/reverse_search)
if (STRLEN(!GSHHS_DATA_DIR) GT 0) then begin
if (final_path_sep EQ -1) then begin
!GSHHS_DATA_DIR=!GSHHS_DATA_DIR+PATH_SEP()
endif else begin
if (STRLEN(!GSHHS_DATA_DIR) GT final_path_sep+1) then begin
!GSHHS_DATA_DIR=!GSHHS_DATA_DIR+PATH_SEP()
endif
endelse
if ~FILE_TEST(!GSHHS_DATA_DIR) then begin
print, 'the !GSHHS_DATA_DIR does not exist !'
return, -1
endif
endif else begin
print, 'You must provide a valid !GSHHS_DATA_DIR path'
return, -1
endelse
;
files_ok=nb_files
;
for ii=0, nb_files-1 do begin
Result=FILE_SEARCH(!GSHHS_DATA_DIR+files[ii])
if (STRLEN(Result) EQ 0) then begin
print, 'GSHHG data file <<'+files[ii]+'>> not found'
files_ok--
endif
endfor
;
if (files_ok NE nb_files) then begin
MESSAGE, /continue, 'Some GSHHG data files are missing ... please check !GSHHS_DATA_DIR'
return, -2
endif else begin
MESSAGE, /continue, 'GSHHG data files found'
return, 1
endelse
;
if KEYWORD_SET(test) then STOP
;
end
;
; ------------------------------------
;
function TEST_MAP_PROCEDURES
;
; do we have this procedure in GDL syntax in the PATH ?
;
test=EXECUTE("map_set")
;
if test EQ 0 then return, 0 else return, 1
;
end
;
; ------------------------------------
;
pro INTERNAL_GDL_MAP_CHECK, test=test
;
status=INTERNAL_GDL_MAP_LIBS()
; Checking if GDL is compiled with mandatory libraries:
; GSHHG and one in the 2 projections libraries
;
if (status LT 0) then begin
MESSAGE, 'GSHHG missing, no Earth maps in GDL !'
endif
if (status LE 10) then begin
MESSAGE, 'GDL without Projection support !'
status=-1
endif
;
if (status LT 0) then begin
MESSAGE, 'please read the MAP_INSTALL document in the root of the GDL dir.'
endif
;
status_map_pro=TEST_MAP_PROCEDURES()
;
; getting the missing routines if needed.
; (based on MAP_INSTALL informations --> test of presence of this file
; not done now, ToDo)
;
if status_map_pro EQ 0 then GET_MAP_PROCEDURES
;
; Checking we have data file around
;
status_gshhg_data=CHECK_GSHHG_DATA()
if (status_gshhg_data LT 0) then begin
reponse=''
print, 'GSHHG/S data are missing on local computer,'
read, 'Are you OK to download the three missing data files (y/n) ?', reponse
reponse=STRMID(STRupCASE(reponse),0,1)
if (reponse EQ 'Y' or reponse EQ 'O') then begin
GET_GSHHG_DATA
endif else begin
MESSAGE, "GSHHS data are missing, you can set up !GSHHS_DATA_DIR if you have a local copy"
endelse
;;
;; now we can check again
status_gshhg_data=CHECK_GSHHG_DATA()
if (status_gshhg_data LT 0) then begin
MESSAGE, "GSHHS data still missing"
endif
endif
;
if KEYWORD_SET(test) then STOP
;
end
;
; ------------------------------------
;
pro GET_GSHHG_DATA, test=test
;
tmp_gshhg_data_dir='tmp_gshhg_data_dir'
;
!GSHHS_DATA_DIR=tmp_gshhg_data_dir
;
CD, current=old_current
;
if ~FILE_TEST(tmp_gshhg_data_dir) then FILE_MKDIR, tmp_gshhg_data_dir
;
CD, tmp_gshhg_data_dir
;
files=['gshhs_c.b','wdb_borders_c.b','wdb_rivers_c.b']
md5sum=['b87b875e8b8c89c1314be5ff6da3a300', $
'2df949e98ef93455bfa9fabba53f6e5e', $
'b4c834981036e4c740d980bd91258844']
;
; the three files we need are store here:
http="http://aramis.obspm.fr/~coulais/IDL_et_GDL/GSHHS_2.3.1/"
;
; downloading the files
for ii=0, N_ELEMENTS(files)-1 do begin
if ~FILE_TEST(files[ii]) then SPAWN, "curl -O "+http+files[ii]
endfor
;
; check the files integrity
;
for ii=0, N_ELEMENTS(files)-1 do begin
SPAWN, "md5sum "+files[ii], result
extract_result=STRMID(result,0,32)
if (extract_result NE md5sum[ii]) then begin
MESSAGE,/cont, "Warning : md5sum NOT OK for file : "+files[ii]
endif else begin
MESSAGE,/cont, "md5sum OK for file : "+files[ii]
endelse
endfor
;
CD, old_current
;
if KEYWORD_SET(test) then STOP
;
end
;
; ------------------------------------
;
pro TEST_MAP, dir=dir
;
DEFSYSV, '!gdl', exists=is_it_gdl
;
if (is_it_gdl) then INTERNAL_GDL_MAP_CHECK
;
;suite='' & read, 'Accept by striking the Enter key', suite
;
print, 'Exemple 1: Should plot the whole world centered on the Japan time line'
MAP_SET, 0, 139, /continent, title='Continents'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 2: Should plot the whole world centered on the North America (with rotation)'
MAP_SET, 40,-105, /continent, title='Continents (rotated)'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 3: Should plot the whole "classical view" of the world with a grid'
MAP_SET, 0, 0, /continent, /grid, title='Continents, centered on Greenwitch Meridian'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 4: Should plot Europa centered on Paris Observatory using Gnomic Projection'
MAP_SET,/cont, 48.83,2.33,/grid,/gnomic,/iso, scale=3.e7, title='Zoom on Europa, Gnomic Projection'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 4bis: Should plot Europa centered on Paris Observatory using Gnomic Projection (+ rivers and countries)'
MAP_SET, 48.83,2.33,/grid,/gnomic,/iso, scale=3.e7, $
title='Zoom on Europa, Gnomic Projection'
MAP_CONTINENTS, color='ffff00'x,/river
MAP_CONTINENTS, color='00ff00'x,/countrie
MAP_CONTINENTS, colo='ffffff'x,/continents
;
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 5: Should plot North America using Gnomic Projection'
MAP_SET,/gnomic,/iso,40,-105,/cont, limit=[20,-130,70,-70], title='Gnomic, North America'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 6: Should plot North America using Satellite Projection'
MAP_SET, 40,-105,/satellite,/grid,/cont,limit=[20,-130,70,-70], sat_p=[2.22, 0, 0], title='Satellite Projection, North America'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
print, 'Exemple 7: Should plot World using Robinson projection'
MAP_SET,0,180,/robinson,/grid,/cont,/iso,titl='Robinson Projection, Centered on Greenwich Meridian'
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;
!P.MULTI=[0,2,2]
MAP_SET,/ADVANCE, /AITOFF, /ISOTROPIC, TITLE='AITOFF'
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /AITOFF, 60, 180, 30, /ISOTROPIC, TITLE='AITOFF OFFSET ROTATION'
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /ALBERS, /ISOTROPIC, TITLE='ALBERS',STANDARD_PARALLELS=[-20,10]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /ALBERS, 30, 180, 45,/ISOTROPIC, TITLE='ALBERS OFFSET ROTATED',STANDARD_PARALLELS=[-20,10]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /AZIM, /ISOTROPIC, TITLE='AZIM',STANDARD_PARALLELS=[-20,10]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /AZIM, 30, 180, 45,/ISOTROPIC, TITLE='AZIM OFFSET ROTATED',STANDARD_PARALLELS=[-20,10]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /CONIC, /ISOTROPIC, TITLE='CONIC',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /CONIC, 30, 180, 45,/ISOTROPIC, TITLE='CONIC OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /CYLIN, /ISOTROPIC, TITLE='CYLIN',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /CYLIN, 30, 180, 45,/ISOTROPIC, TITLE='CYLIN OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /GNOM, /ISOTROPIC, TITLE='GNOM',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /GNOM, 30, 180, 45,/ISOTROPIC, TITLE='GNOM OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /GOODES, /ISOTROPIC, TITLE='GOODES',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /GOODES, 30, 180, 45,/ISOTROPIC, TITLE='GOODES OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /HAMMER, /ISOTROPIC, TITLE='HAMMER',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /HAMMER, 30, 180, 45,/ISOTROPIC, TITLE='HAMMER OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /LAMBERT, /ISOTROPIC, TITLE='LAMBERT',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /LAMBERT, 0, 180, 45,/ISOTROPIC, TITLE='LAMBERT OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /MERCATOR, /ISOTROPIC, TITLE='MERCATOR',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /MERCATOR, 30, 180, 45,/ISOTROPIC, TITLE='MERCATOR OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /MILLER, /ISOTROPIC, TITLE='MILLER',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /MILLER, 30, 180, 45,/ISOTROPIC, TITLE='MILLER OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /MOLL, /ISOTROPIC, TITLE='MOLL',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /MOLL, 30, 180, 45,/ISOTROPIC, TITLE='MOLL OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /ORTHO, /ISOTROPIC, TITLE='ORTHO',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /ORTHO, 30, 180, 45,/ISOTROPIC, TITLE='ORTHO OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /ROBIN,/ISOTROPIC, TITLE='ROBIN',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /ROBIN, 30, 180, 45,/ISOTROPIC, TITLE='ROBIN OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /SATELL, SAT_P=[1.0251, 55, 150], 41.5, -74.,LIMIT=[39, -74, 33, -80, 40, -77, 41,-74], /ISOTROPIC, TITLE='Satellite, Tilted Perspective'
MAP_CONTINENTS,/HIRES
MAP_GRID, /LABEL, LATLAB=-75, LONLAB=39, LATDEL=1, LONDEL=1
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /SINUS,/ISOTROPIC, TITLE='SINUS',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /SINUS, 30, 180, 45,/ISOTROPIC, TITLE='SINUS OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /STEREO, /ISOTROPIC, TITLE='STEREO',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /STEREO, 30, 180, 45,/ISOTROPIC, TITLE='STEREO OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /TRANSVER, /ISOTROPIC, TITLE='TRANSVER',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID ; hyper long?
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
MAP_SET,/ADVANCE, /TRANSVER, 30, 180, 45,/ISOTROPIC, TITLE='TRANSVER OFFSET ROTATED',STANDARD_PARALLELS=[20,60]
MAP_CONTINENTS
MAP_HORIZON
MAP_GRID
!P.MULTI=0
;a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
;mapStruct = MAP_PROJ_INIT(129, LIMIT=[0,-180,90,180],SPHERE_RADIUS=1, CENTER_LONGITUDE=180)
a='' & read, 'Press F for filling continents else press Enter', a & if (a eq 'f') then begin map_continents,/fill & read,a &end
image = BYTSCL(SIN(DIST(400)/10))
;note there is a problem for the GRID if lat=0 exactly. To be investigated!
MAP_SET, 0, -0.001, /GOODE, /ISOTROPIC,TITLE='GOODE + REPROJECTED IMAGE'
result = MAP_IMAGE(image,Startx,Starty)
TV, result, Startx, Starty
MAP_CONTINENTS, color='ff0000'x
MAP_GRID, latdel=10, londel=10, /LABEL, /HORIZON
print, 'last demo done'
;
if KEYWORD_SET(test) then STOP
;
end
|