- 积分
- 1083
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-7-12
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2018-8-27 18:01:29
|
显示全部楼层
PRO MAPCONTINENTS_test1
Map_Provinces = 'D:\resource\map\China_pro.shp'
Partmap = MAP('Lambert Conformal Conic',FILL_COLOR='Light Blue', $
STANDARD_PAR1=25,STANDARD_PAR2=47,MARGIN=[0.1,0.05,0.05,0.05],$
LIMIT = [30.0, 90.0, 55.0, 130.0])
mc = MAPCONTINENTS(/COUNTRIES, FILL_COLOR='beige')
Provinces = MAPCONTINENTS(Map_Provinces, COLOR='red',$
FILL_COLOR = "MOCCASIN")
rivers = MAPCONTINENTS(/RIVERS, COLOR='blue')
grid = Partmap.MAPGRID
grid.HIDE = 0
grid.GRID_LONGITUDE = 10
grid.GRID_LATITUDE = 5
grid.LINESTYLE = "dotted"
grid.LABEL_POSITION = 0
grid.FONT_SIZE=10
Partmap['Longitudes'].LABEL_ANGLE = 0
END |
|