- 积分
- 55945
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-6-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果希望专业内容的图形部分只出现在某个区域内,即屏蔽区域外的图形,可以用MeteoInfo中的Maskout功能。图形最终都是显示在MapView中,MapView类中有个变量是MaskOut类的对象,用MapView类的getMaskOut()方法获取。MaskOut类的setMask(Boolean isMask)方法设置了是否启用MaskOut功能,SetMaskLayer(String layerName)方法设置了作为Maskout使用的图层,图层的图元类型必须Polygon,最好不要太复杂(会影响图形绘制速度)。每一个图层都有一个setMaskout(Boolean isMask)方法来设置该图层是否被Maskout,这样可以实现只Maskout某些特定图层。
示例脚本如下:
- #-----------------------------------------------------
- # Author: Yaqiang Wang
- # Date: 2014-12-6
- # Purpose: Maskout layer
- # Note: Sample
- #-----------------------------------------------------
- #---- Import classes
- print 'Import classes...'
- from org.meteoinfo.layout import MapLayout
- from org.meteoinfo.data.mapdata import MapDataManage
- from org.meteoinfo.data.meteodata import MeteoDataInfo, DrawMeteoData
- from org.meteoinfo.legend import LegendManage, LegendType, GridLabelPosition
- from org.meteoinfo.layout import LegendStyles
- from org.meteoinfo.shape import ShapeTypes
- from org.meteoinfo.global import Extent
- import os.path
- from java.awt import Color
- from javax.swing import JFrame
- #---- Set directories
- print 'Set directories...'
- baseDir = 'D:/MyProgram/Distribution/java/MeteoInfo/MeteoInfo'
- dataDir = os.path.join(baseDir, 'sample/GrADS')
- mapDir = os.path.join(baseDir, 'map')
- figDir = 'D:/Temp/test'
- #---- Create MapLayout object
- mapLayout = MapLayout()
- mapFrame = mapLayout.getActiveMapFrame()
- mapView = mapFrame.getMapView()
- #---- Load country layer
- print 'Load country layer...'
- bou2Layer = MapDataManage.loadLayer(os.path.join(mapDir, 'bou2_4p.shp'))
- lb = bou2Layer.getLegendScheme().getLegendBreaks().get(0)
- lb.setDrawFill(False)
- lb.setOutlineColor(Color.gray)
- mapFrame.addLayer(bou2Layer)
- countryLayer = MapDataManage.loadLayer(os.path.join(mapDir, 'country1.shp'))
- lb = countryLayer.getLegendScheme().getLegendBreaks().get(0)
- lb.setDrawFill(False)
- lb.setOutlineColor(Color.blue)
- mapFrame.addLayer(countryLayer)
- chinaLayer = MapDataManage.loadLayer(os.path.join(mapDir, 'china.shp'))
- chinaLayer.setVisible(False)
- mapFrame.addLayer(chinaLayer)
- #---- Open GrADS data
- print 'Open GrADS data...'
- mdi = MeteoDataInfo()
- mdi.openGrADSData(os.path.join(dataDir, 'model.ctl'))
- #---- Set time index
- mdi.setTimeIndex(2)
- #---- Get pressure grid data
- gdata = mdi.getGridData('PS')
- gdata.extendToGlobal()
- #---- Create pressure shaded layer
- print 'Create pressure shaded layer...'
- pressLayer = DrawMeteoData.createShadedLayer(gdata, 'Pressure', 'PS', True)
- pressLayer.setMaskout(True)
- #---- Add layer
- mapFrame.addLayer(pressLayer)
- #--- Move pressure layer to bottom
- mapFrame.moveLayer(pressLayer, 0)
- #---- Add title
- title = mapLayout.addText('MeteoInfo script demo', 350, 30, 'Arial', 16)
- #---- Zoom layout map
- print 'Zoom layout map...'
- mapLayout.getActiveLayoutMap().zoomToExtentLonLatEx(Extent(70, 140, 15, 55))
- #---- Set maskout
- mapView.getMaskOut().setMask(True)
- mapView.getMaskOut().setMaskLayer(chinaLayer.getLayerName())
- #---- Set mapframe
- mapFrame.setGridXDelt(10)
- mapFrame.setGridYDelt(10)
- #---- Add legend
- legend = mapLayout.addLegend(660, 120)
- legend.setLegendStyle(LegendStyles.Bar_Vertical)
- legend.setLegendLayer(pressLayer)
- #---- Output figure
- print 'Output figure...'
- mapLayout.paintGraphics()
- #mapLayout.exportToPicture(os.path.join(figDir, 'pressure_test.ps'))
- frame = JFrame('MeteoInfo Script Sample', size = (800, 600))
- frame.add(mapLayout)
- frame.visible = True
- print 'Finished!'
未启用Maskout:
启用Maskout:
|
|