Conflicts: cave/com.raytheon.uf.viz.core/src/com/raytheon/uf/viz/core/procedures/IAlterBundleContributor.java cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/dialogs/procedures/AlterBundleDlg.java cave/com.raytheon.uf.viz.points/src/com/raytheon/uf/viz/points/ui/dialog/CoordinateInputPanel.java cave/com.raytheon.uf.viz.points/src/com/raytheon/uf/viz/points/ui/dialog/PointEditDialog.java cave/com.raytheon.uf.viz.points/src/com/raytheon/uf/viz/points/ui/dialog/PointsMgrDialog.java cave/com.raytheon.uf.viz.points/src/com/raytheon/uf/viz/points/ui/layer/PointsToolLayer.java cave/com.raytheon.uf.viz.radarapps.core/src/com/raytheon/uf/viz/radarapps/products/ui/BaseRadarProductUI.java cave/com.raytheon.viz.awipstools/src/com/raytheon/viz/awipstools/ToolsAlterBundleContributor.java cave/com.raytheon.viz.gfe/help/EXAMPLElocalMaps.py cave/com.raytheon.viz.gfe/help/EXAMPLElocalMapsAdd.py cave/com.raytheon.viz.gfe/help/localMapsConfig.html cave/com.raytheon.viz.gfe/help/mapConfig.html cave/com.raytheon.viz.texteditor/src/com/raytheon/viz/texteditor/dialogs/TextEditorDialog.java cave/com.raytheon.viz.textworkstation/src/com/raytheon/viz/textworkstation/TextWorkstationDlg.java edexOsgi/build.edex/esb/data/utility/edex_static/base/config/gfe/Maps.py edexOsgi/com.raytheon.edex.plugin.gfe/src/com/raytheon/edex/plugin/gfe/reference/DbShapeSource.java edexOsgi/com.raytheon.edex.plugin.gfe/src/com/raytheon/edex/plugin/gfe/reference/MapManager.java edexOsgi/com.raytheon.edex.plugin.gfe/utility/edex_static/base/gfe/ShapeTable.py edexOsgi/com.raytheon.uf.common.geospatial/src/com/raytheon/uf/common/geospatial/util/WorldWrapCorrector.java ncep/gov.noaa.nws.ncep.ui.nsharp/src/gov/noaa/nws/ncep/ui/nsharp/display/rsc/NsharpResourceHandler.java rpms/common/yum/arch.x86/comps.xml Former-commit-id: 07beab271f793ae79fcf9233f9d384702ead22a9
44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
##
|
|
# This software was developed and / or modified by Raytheon Company,
|
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
#
|
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
# This software product contains export-restricted data whose
|
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
# to non-U.S. persons whether in the United States or abroad requires
|
|
# an export license or other authorization.
|
|
#
|
|
# Contractor Name: Raytheon Company
|
|
# Contractor Address: 6825 Pine Street, Suite 340
|
|
# Mail Stop B8
|
|
# Omaha, NE 68106
|
|
# 402.291.0100
|
|
#
|
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
# further licensing information.
|
|
##
|
|
# Example localMaps.py configuration file
|
|
|
|
# You must include the following line
|
|
from Maps import *
|
|
|
|
# Example of adding a group of edit areas. This one is called "WYCounties"
|
|
# on the GFE Edit Areas menu, uses the County table, is filtered to include
|
|
# just the Wyoming counties. Edit areas are automatically generated"
|
|
# and named WY_countyName.
|
|
WYcounties = ShapeTable('County')
|
|
WYcounties.filter(lambda x : x['state'] == "WY")
|
|
WYcounties.name = 'WYCounties'
|
|
WYcounties.editAreaName = ['state','countyname']
|
|
WYcounties.groupName = 'WYCounties'
|
|
maps.append(WYcounties)
|
|
|
|
|
|
# The following few lines removes the maps that are not wanted.
|
|
maps.remove(CWAmzones)
|
|
maps.remove(Mzones)
|
|
maps.remove(rfc)
|
|
|
|
# The following renames the CWAzones map to "MyCWAZones".
|
|
CWAzones.name = "MyCWAZones"
|
|
|