# Property names are scoped to focus the value to a specific # instance of a components. If there are more that one layer of a # specific type (say, two ShapeLayers, one for roads and one for # rivers), the names of the keys will have a different prefix for the # key. For instance, ShapeLayers have a lineColor attribute you can # set in this file, and the value used is a hexadecimal value for an # ARGB color (transparency (A), red (R), green (G), blue (B)): # # For a red, non-transparent color for the line. # lineColor=FFFF0000 # # But there are two layers - to scope the property for different # layers, a prefix must be added to the property, separated by a '.': # # roads.lineColor=FFFF0000 # rivers.lineColor=FF0000FF # # In this case, the roads layer has a red line color and the rivers # layer has a blue line color. The prefix 'roads' and 'rivers' is # something picked to your liking and used only within this property # file, and is referred to in OpenMap documentation as a marker name. # Marker names are first used in a list - the openmap.layers property # is a perfect example: # # openmap.layers=first second third # # In this example, I've chosen first, second and third to be marker # names of three different layers. Later in the properties file, I # would use these marker names to define the layers and each layer's # attributes. For the 'first' layer, I'll define a ShapeLayer: # # # All layers require a class name that defines which one to use # first.class=com.bbn.openmap.layer.shape.ShapeLayer # # # And a pretty name to use in the GUI # first.prettyName=Roads # # # Now come properties that are particular to ShapeLayers: # # # These first two are mandatory for the ShapeLayer: # first.shapeFile= # first.spatialIndex= # # # These are optional, and override the defaults set in the ShapeLayer: # first.lineColor=FFFF0000 # first.lineWidth=2 # # You do this for each layer listed. To add a layer to the application, # you make up a marker name, add it to the list, and then define # a set of properties for it using the marker name as a prefix. # # MAP STARTUP PROPERTIES # Latitude and longitude in decimal degrees of the map CENTER # Example NC map center: #openmap.Latitude=37.55f #openmap.Longitude=-121.95f # Example CI map center: openmap.Latitude=35.5f openmap.Longitude=-117.5f # Map Scale: zoom level (1:scale) openmap.Scale=4000000.f # Projection type to start the map with. Use the class name of the # projection, such as com.bbn.openmap.proj.Mercator, # com.bbn.openmap.proj.CADRG, com.bbn.openmap.proj.Orthgraphic, # com.bbn.openmap.proj.LLXY or com.bbn.openmap.proj.Gnomonic # # Web mapserver image downloads require LLXY scale else map doesn't register correctly openmap.Projection=com.bbn.openmap.proj.LLXY # # APPLICATION WINDOW DIMENSIONS # Width and Height of map, in pixels openmap.Width=800 openmap.Height=640 #openmap.Width=1280 #openmap.Height=1024 # # APPLICATION WINDOW TITLE # Change this for a different title in the main window. openmap.Title=JiggleMap # # WINDOW STARTUP LOCATION # pixel X/Y window position (if values < 0, then center the window on the screen) openmap.x=-1 openmap.y=-1 # # MAP BACKGROUND # The background color of the map, in hex AARRGGBB values (AA is # transparency, RR, GG and BB are red, green and blue in hex values # between 00-FF (0-255)). openmap.BackgroundColor=FF89C5F9 # # Ironically, the "properties" property, which details where the # PropertyHandler is looking for its properties, won't work here. # # ################################################### # These are miscellaneous variables for the OpenMap application. # ################################################### # How to launch a browser to display additional information. # Windows example: openmap.WebBrowser=C\:/program files/internet explorer/iexplore.exe #openmap.WebBrowser=C\:\\Program Files\\Internet Explorer\\iexplore.exe # Used for creating web pages for the browser #openmap.TempDirectory=C\:\\Temp # Help web pages openmap.HelpURL=http://openmap.bbn.com/doc/user-guide.html # Use internal frames as an application - used to be gui.UseInternalFrames openmap.UseInternalFrames=false # # DEBUGGING # OpenMap has a Debug messaging mechanism that lets you set certain # keywords as environment variables (-Ddebug.keyword) to enable # printouts from different objects. The code contains these keywords, # and by looking at a class's code, you can figure out what the # keywords are (look for Debug.message("keyword", "message") and 'if # (Debug.debugging("keyword")' statements). You can enable these # messages by putting those keywords in a space-separated list in this # property. If you don't want extra messages, you can ignore this # property and leave it empty. #openmap.Debug= basic windows mappanel properties propertiesdetail env layer layerhandler catalog station mousemode mousemodedetail listenersupport maphandler #openmap.Debug= grp basic layer mousemode #openmap.Debug= location locationdetail csvlocation omgraphics omGraphic omgraphicdetail #openmap.Debug= componentfactory layerhandler location locationdetail csvlocation #openmap.Debug= station componentfactory componentfactorydetail mapbean layersupport layerspanel layersmenu layerhandler mappanel maphandler #openmap.Debug= mappanel wms #openmap.Debug= drawingtool dtl omdtl editortool # # INTERNATIONALIZATION # If you are interested in modifying OpenMap to display internationalized # strings (or to change the strings that are used in the application GIU), # These are the Debug flags that need to be set before the various components # start asking the BasicI18n class for the displayed strings. The 'i18n.create' # flag tells the BasicI8n class to track the strings in the locale set on the # machine (for I18N_language_COUNTRY.properties files), and the 'i18n.default' # flag tells the BasicI8n class to only track generic properties (for # I18N.properties files). To actually create the properties files, you have # to add the I18nFileCreateMenuItem to the application, look for that below. #openmap.Debug=i18n.create i18n.default # # OPENMAP COMPONENTS # ################################################### # These properties define the general components to use in the # application, OTHER than layers. Notice the marker name list. You # can add and remove parts of the application here, simply by # adjusting this marker name list and adding properties for that # marker name. Note the order in which menu objects are important, # except helpMenu which is always adjusted to be the last menu item. # # If you want to remove components from the application, simply remove # the marker name from the openmap.components list. You don't have to # delete the class definition property, too. If you want to add a # component to the list, add the marker name to the openmap.components # list when you want it to be created and added relative to the other # components, and then add a 'marker name'.class property for that # component to this file. # ################################################### # #openmap.components=informationDelegator projFactoryLoader layerHandler mouseDelegator projectionstack addlayer menulist toolBar navpanel zoompanel projectionstacktool mouseModePanel overviewMapHandler layersPanel selectMouseMode navMouseMode panMouseMode projkeys repaintPolicy dtedframecache openmap.components=informationDelegator projFactoryLoader mouseDelegator projectionstack addlayer menulist \ toolBar jiggleButton navpanel zoompanel scalepanel projectionstacktool mouseModePanel overviewMapHandler \ layersPanel layerHandler \ selectMouseMode navMouseMode panMouseMode projkeys repaintPolicy \ omdrawingtool deleteButton resetview \ omdtl simplecircleloader omrectloader closedpolyloader # # MENU CONFIGURATION, Defining the menu items listed in the openmap.components list. # menulist.class=com.bbn.openmap.gui.menu.MenuList menulist.menus=fileMenu controlMenu navigateMenu layersMenu gotoMenu helpMenu fileMenu.class=org.trinet.jiggle.map.FileMenu controlMenu.class=com.bbn.openmap.gui.ControlMenu ### # Adding a menu item to toggle on/off the OMControlPanel if it is added to the openmap.components list. controlMenu.items=controlPanelToggle controlPanelToggle.class=com.bbn.openmap.gui.menu.ControlPanelToggleMenuItem ### ### # INTERNATIONALIZATION # To get the BasicI18n class to create the internationalization property # files after you have set the Debug statements described above, you can add this # toolMenu to the menulist.menus list above: #toolMenu.class=com.bbn.openmap.gui.menu.OMBasicMenu #toolMenu.prettyName=Tools #toolMenu.mnemonic=T #toolMenu.items=i18ndump #i18ndump.class=com.bbn.openmap.gui.menu.I18nFileCreateMenuItem ## ## navigateMenu.class=com.bbn.openmap.gui.NavigateMenu layersMenu.class=com.bbn.openmap.gui.LayersMenu # #gotoMenu.class=com.bbn.openmap.gui.GoToMenu gotoMenu.class=org.trinet.jiggle.map.SelectedEventGoToMenu gotoMenu.addDefaults=true # Add your own views to the GoToMenu below gotoMenu.views=Baja Bakers Barstow BigBear Bishop Coso CrescentC \ Hector Imperial Landers Lompoc LongBeach Mammoth Northridge Owens \ PalmSprings Parkfield SantaBarbara SanDiego SanFernando SFB Tejon \ Ventura Whittier # Bakers.latitude=35.148 Bakers.longitude=-119.005 Bakers.name=Bakersfield Bakers.projection=LLXY Bakers.scale=500000 # Baja.latitude=31.25 Baja.longitude=-115.250 Baja.name=Baja Baja.projection=LLXY Baja.scale=2000000 # Barstow.latitude=34.900 Barstow.longitude=-117.000 Barstow.name=Barstow Barstow.projection=LLXY Barstow.scale=1000000 # BigBear.latitude=34.203 BigBear.longitude=-116.827 BigBear.name=Big Bear BigBear.projection=LLXY BigBear.scale=500000 # Bishop.latitude=37.363 Bishop.longitude=-118.393 Bishop.name=Bishop Bishop.projection=LLXY Bishop.scale=500000 # Coso.latitude=35.850 Coso.longitude=-117.750 Coso.name=Coso Coso.projection=LLXY Coso.scale=500000 # CrescentC.latitude=41.70 CrescentC.longitude=-124.200 CrescentC.name=Crescent City CrescentC.projection=LLXY CrescentC.scale=2000000 # Hector.latitude=34.593 Hector.longitude=-116.272 Hector.name=Hector Mine Hector.projection=LLXY Hector.scale=500000 # Imperial.latitude=32.900 Imperial.longitude=-115.600 Imperial.name=Imperial Imperial.projection=LLXY Imperial.scale=500000 # Landers.latitude=34.202 Landers.longitude=-116.437 Landers.name=Landers Landers.projection=LLXY Landers.scale=500000 # Lompoc.latitude=34.850 Lompoc.longitude=-120.630 Lompoc.name=Lompoc Lompoc.projection=LLXY Lompoc.scale=500000 # LongBeach.latitude=33.617 LongBeach.longitude=-117.967 LongBeach.name=Long Beach LongBeach.projection=LLXY LongBeach.scale=500000 # Mammoth.latitude=37.607 Mammoth.longitude=-118.822 Mammoth.name=Mammoth Mammoth.projection=LLXY Mammoth.scale=500000 # Northridge.latitude=34.217 Northridge.longitude=-118.538 Northridge.name=Northridge Northridge.projection=LLXY Northridge.scale=500000 # Owens.latitude=36.700 Owens.longitude=-118.000 Owens.name=Owens Valley Owens.projection=LLXY Owens.scale=500000 # PalmSprings.latitude=33.650 PalmSprings.longitude=-116.450 PalmSprings.name=Palm Springs PalmSprings.projection=LLXY PalmSprings.scale=500000 # Parkfield.latitude=35.915 Parkfield.longitude=-120.533 Parkfield.name=Parkfield Parkfield.projection=LLXY Parkfield.scale=500000 # SantaBarbara.latitude=34.350 SantaBarbara.longitude=-119.710 SantaBarbara.name=Santa Barbara SantaBarbara.projection=LLXY SantaBarbara.scale=500000 # SanDiego.latitude=32.900 SanDiego.longitude=-117.320 SanDiego.name=San Diego SanDiego.projection=LLXY SanDiego.scale=500000 # SanFernando.latitude=34.412 SanFernando.longitude=-118.400 SanFernando.name=San Fernando SanFernando.projection=LLXY SanFernando.scale=500000 # SFB.latitude=37.550 SFB.longitude=-121.950 SFB.name=SF Bay Area SFB.projection=LLXY SFB.scale=1000000 # Tejon.latitude=34.943 Tejon.longitude=-118.742 Tejon.name=Tejon Tejon.projection=LLXY Tejon.scale=500000 # Ventura.latitude=34.070 Ventura.longitude=-119.020 Ventura.name=Ventura Ventura.projection=LLXY Ventura.scale=500000 # Whittier.latitude=34.062 Whittier.longitude=-118.000 Whittier.name=Whittier Whittier.projection=LLXY Whittier.scale=500000 # helpMenu.class=com.bbn.openmap.gui.DefaultHelpMenu helpMenu.items=helpUserMenuItem helpUserMenuItem.class=com.bbn.openmap.gui.UserGuideMenuItems helpUserMenuItem.class=com.bbn.openmap.gui.menu.WebSiteHelpMenuItem # End menu item definitions # ################################################### # ################################################### # Defining the other components in the openmap.components list: jiggleButton.class=org.trinet.jiggle.map.JiggleButton deleteButton.class=com.bbn.openmap.gui.OMGraphicDeleteTool distanceMouseMode.class=com.bbn.openmap.event.DistanceMouseMode panMouseMode.class=com.bbn.openmap.event.PanMouseMode # Floating number between 0-1, with 1 being opaque, default .5 panMouseMode.opaqueness=1 # True/false, to leave old map up behind panned version. panMouseMode.leaveShadow=false dndCatcher.class=com.bbn.openmap.tools.dnd.DefaultDnDCatcher dropSupport.class=com.bbn.openmap.tools.dnd.DropListenerSupport glc.class=com.bbn.openmap.plugin.graphicLoader.GraphicLoaderConnector #informationDelegator.class=com.bbn.openmap.InformationDelegator informationDelegator.class=org.trinet.jiggle.map.JiggleInformationDelegator #layerHandler.class=com.bbn.openmap.LayerHandler layerHandler.class=org.trinet.jiggle.map.JiggleLayerHandler layersPanel.class=com.bbn.openmap.gui.LayersPanel menuPanel.class=com.bbn.openmap.gui.MenuPanel mouseDelegator.class=com.bbn.openmap.MouseDelegator mouseModePanel.class=com.bbn.openmap.gui.MouseModeButtonPanel navMouseMode.class=com.bbn.openmap.event.NavMouseMode2 #navMouseMode.class=com.bbn.openmap.event.NavMouseMode #navpanel.class=com.bbn.openmap.gui.NavigatePanel navpanel.class=org.trinet.jiggle.map.MapNavigatePanel nullMouseMode.class=com.bbn.openmap.event.NullMouseMode omcircleloader.class=com.bbn.openmap.tools.drawing.OMCircleLoader simplecircleloader.class=org.trinet.jiggle.map.SimpleCircleLoader omdecsplineloader.class=com.bbn.openmap.tools.drawing.OMDecoratedSplineLoader omdistloader.class=com.bbn.openmap.tools.drawing.OMDistanceLoader #omdrawingtool.class=com.bbn.openmap.tools.drawing.OMDrawingTool omdrawingtool.class=org.trinet.jiggle.map.CatalogFilterDrawingTool #omdrawingtool.isTool=true # #omdtl.class=com.bbn.openmap.tools.drawing.OMDrawingToolLauncher # omdtl.class=org.trinet.jiggle.map.CatalogFilterLauncher omdtl.lineColor=ffff0000 omdtl.lineWidth=3.0 #RENDERTYPE_LATLON=1 omdtl.renderType=1 #LINETYPE_GREATCIRCLE=3,LINETYPE_RHUMB=2,LINETYPE_STRAIGHT=1 omdtl.lineType=3 # omlineloader.class=com.bbn.openmap.tools.drawing.OMLineLoader ompointloader.class=com.bbn.openmap.tools.drawing.OMPointLoader ompolyloader.class=com.bbn.openmap.tools.drawing.OMPolyLoader closedpolyloader.class=org.trinet.jiggle.map.ClosedPolyLoader omrectloader.class=com.bbn.openmap.tools.drawing.OMRectLoader omscalingrasterloader.class=com.bbn.openmap.tools.drawing.OMScalingRasterLoader omsplineloader.class=com.bbn.openmap.tools.drawing.OMSplineLoader projectionstack.class=com.bbn.openmap.proj.ProjectionStack projectionstacktool.class=com.bbn.openmap.gui.ProjectionStackTool scalepanel.class=com.bbn.openmap.gui.ScaleTextPanel resetview.class=org.trinet.jiggle.map.ResetMapViewTool #selectMouseMode.class=com.bbn.openmap.event.SelectMouseMode selectMouseMode.class=org.trinet.jiggle.map.JiggleSelectMouseMode #selectMouseMode.icon= # layerHandler.showMapToolTip=true informationDelegator.showLights=false informationDelegator.showInfoLine=true ### # ToolPanel definitions for the first ToolPanel 'toolbar' toolBar.class=com.bbn.openmap.gui.ToolPanel # preferred order in the toolbar, uses the class tool "key name" = "prefix" in most cases toolBar.components=jiggleButton navpanel zoompanel scalepanel projectionstacktool mouseModePanel \ overviewMapHandler layersPanel omdtl omdrawingtool distlayer dtlayer deleteButton resetview # Tell the first ToolPanel to avoid putting the DrawingToolLayer GUI in it: #toolBar.avoid=dtlayer # # ToolPanel definitions for the second ToolPanel 'toolbar2' #toolBar2.class=com.bbn.openmap.gui.ToolPanel # Tell the second ToolPanel that you only want it to put the # DrawingToolLayer GUI in it: #toolBar2.components=dtlayer # You can set the location, but it interferes with the # InformationDelegator. Undefined, the ToolPanel goes North, but then # it interferes with the first ToolPanel. #toolBar2.preferredLocation=SOUTH # projFactoryLoader.class=com.bbn.openmap.proj.ProjectionFactoryLoader #projFactoryLoader.projectionLoaders=mercatorloader cadrgloader ortholoader llxyloader gnomonicloader # Don't by default enable other loaders, end user change of projection would invalidate WMS image! projFactoryLoader.projectionLoaders=llxyloader projFactoryLoader.mercatorloader.class=com.bbn.openmap.proj.MercatorLoader projFactoryLoader.cadrgloader.class=com.bbn.openmap.proj.CADRGLoader projFactoryLoader.ortholoader.class=com.bbn.openmap.proj.OrthographicLoader projFactoryLoader.llxyloader.class=com.bbn.openmap.proj.LLXYLoader projFactoryLoader.gnomonicloader.class=com.bbn.openmap.proj.GnomonicLoader # #zoompanel.class=com.bbn.openmap.gui.ZoomPanel zoompanel.class=org.trinet.jiggle.map.MapZoomPanel #make zoom value > 1., default is 2., for less zoom try 1.5 zoompanel.zoomScaleFactor=2. # # Below property is global for bean projection, i.e. minZoomScale applies to all layers, overrriding layer setting minZoomScale=1000. # # misc props below are from QWClientBean requiring implementation not in the jiggle map #zoomScaleFactor= #userCenterLat= #userCenterLon= #userMapScale= #resetMapScale= #resetCenterLat= #resetCenterLon= # #ProjMapBeanKeyListener changes the projection in response to certain keys. #The MapBean has to have focus for these to work: # Arrows pan the map, '+' or 'z' zooms in, and '-' or Shift-z zooms out. # '<' or ',' tells projection stack to go the last projection # '>' or '.' tells projection stack to go to the next projection. projkeys.class=com.bbn.openmap.event.ProjMapBeanKeyListener # repaintPolicy.class=com.bbn.openmap.HintsMapBeanRepaintPolicy repaintPolicy.renderingHints=KEY_ANTIALIASING repaintPolicy.KEY_ANTIALIASING=VALUE_ANTIALIAS_ON repaintPolicy.KEY_RENDERING=VALUE_RENDER_SPEED # # Alternative below if using a control panel in lieu of tool components #controlpanel.class=com.bbn.openmap.gui.OMControlPanel #controlpanel.class=org.trinet.jiggle.map.MapControlPanel #controlpanel.OverviewMapHandler.overviewLayers=overviewLayer #controlpanel.OverviewMapHandler.isTool=false #controlpanel.OverviewMapHandler.overviewScaleFactor=30f #controlpanel.OverviewMapHandler.overviewMinScale=50000000f #controlpanel.OverviewMapHandler.overviewStatusLayer=com.bbn.openmap.layer.OverviewMapAreaLayer #controlpanel.OverviewMapHandler.lineColor=FFFF0000 #controlpanel.OverviewMapHandler.fillColor=33FF0000 #controlpanel.LayersPanel.controls=com.bbn.openmap.gui.LayerControlButtonPanel #controlpanel.LayersPanel.controls.orientation=horizontal #controlpanel.LayersPanel.controls.configuration=NORTH # # ### # Properties defined for the overview map handler. # ### # overviewMapHandler.class=com.bbn.openmap.gui.OverviewMapHandler # marker name list defining background layers used on overview map. # The layers are defined as any other layer is below, look # for 'overviewLayer' properties. This is a space-separated list of # marker names. overviewMapHandler.overviewLayers=overviewLayer # # how zoomed out to keep the overview map versus the main map overviewMapHandler.overviewScaleFactor=10f # # when to stop zooming in overviewMapHandler.overviewMinScale=10000000f # # the layer to use to render on top, showing where the main map covers. overviewMapHandler.overviewStatusLayer=com.bbn.openmap.layer.OverviewMapAreaLayer overviewMapHandler.lineColor=ffff0000 overviewMapHandler.fillColor=66ff0000 # ### # # The AddLayerPanel allows certain layers/plugins to be added to the # application dynamically. Only certain layers/plugin have been # updated to be able to work with the Inspector to set their initial # parameters. The 'addlayer' marker name was added to the # openmap.components list, and this component looks for the # openmap.addableLayers property to figure out what layers to make # available for dynamic addition. To add a layer to this list, create # a unique marker name for a generic instance of the layer, and then # supply the .class field and .prettyName (see # below) for that object. The class name will be the type of # layer/plugin created by the LayerAddPanel, and this prettyName will # be the generic description of the layer presented to the user. The # user will have an opportunity to name the specific layer that gets # created. # # Define the class for the component listed in the openmap.components # list: addlayer.class=com.bbn.openmap.gui.LayerAddPanel # # Define a list of addable layers: openmap.addableLayers=shape grat utmgrid rpf shispi eipi epi wmsp iloc qpager # # Define the properties of the addable layers: shape.class=com.bbn.openmap.layer.shape.ShapeLayer shape.prettyName=Shape Layer grat.class=com.bbn.openmap.layer.GraticuleLayer grat.prettyName=Graticule Layer utmgrid.class=com.bbn.openmap.plugin.UTMGridPlugIn utmgrid.prettyName=UTM Grid Overlay rpf.class=com.bbn.openmap.layer.rpf.RpfLayer rpf.prettyName=RPF Layer shispi.class=com.bbn.openmap.plugin.shis.SHISPlugIn shispi.prettyName=Simple Http Image Server (SHIS) Plugin eipi.class=com.bbn.openmap.plugin.earthImage.EarthImagePlugIn eipi.prettyName=Earth Image Plugin epi.class=com.bbn.openmap.plugin.esri.EsriPlugIn epi.prettyName=Shape Layer with Attributes # The qpager and iloc layer properties below may not work, added here for a test -aww qpager.prettyName= QPager Map Layer qpager.class=com.isti.omutil.QPagerMapLayer iloc.prettyName=Jiggle Location Layer iloc.class=com.isti.omutil.IstiLocationLayer iloc.locationHandlers=ilocHandler #ilocHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler ilocHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler # #wmsp.class=com.bbn.openmap.plugin.wms.WMSPlugIn wmsp.class=org.trinet.jiggle.map.JiggleWMSPlugIn wmsp.prettyName=WMS Layer # #For the plugin layer, add wmsp to openmap.layers list #WMS server parameter name are not case-sensitive but values ARE case-sensitive # To use with Mercator map proj server must support request using SRS=AUTO:42001 # and for use with Orthographic proj server must support request using SRS=AUTO:42003 # "wmsp.wmsserver=http://gisdata.usgs.net:80/servlet19/com.esri.wms.Esrimap/USGS_WMS_REF?" # NOTE: terraservice interactive web map page is: http://terraservice.net/ogcwms.aspx wmsp.wmsserver=http://terraservice.net/ogcmap.ashx #wmsp.wmsserver=http://wms.jpl.nasa.gov/wms.cgi? wmsp.wmsversion=1.1.1 wmsp.srscrs=EPSG:4326 #wmsp.format=image/jpeg wmsp.format=image/png #wmsp.transparent=TRUE or FALSE, depends on imageformat #wmsp.backgroundcolor=RGB hex string (RRGGBB) wmsp.layers=doq wmsp.styles=geogrid_cyan #wmsp.vendorspecificnames=comma separated list of vendor specific parameter names in order (eg. SERVICENAME) #wmsp.vendorspecificvalues=comma separated list of vendor specific parameter values in order (eg. default) # # End component definitions # ################################################### # # IMAGE SERVER SETTINGS # ################################################### # These properties define the formatters the Simple Http # Image Server uses. The default formatter is the first one # in the list. # The layers property can be used to override the # openmap.startUpLayers property as the default layers. # ################################################### # formatters=gif jpeg png png8 png32 gif.class =com.bbn.openmap.image.AcmeGifFormatter jpeg.class=com.bbn.openmap.image.SunJPEGFormatter png.class=com.bbn.openmap.image.PNGImageIOFormatter png8.class=com.bbn.openmap.image.PNG8ImageFormatter png32.class=com.bbn.openmap.image.PNG32ImageFormatter # # ################################################### # You can refer to other properties files and have their properties # loaded as well. This is good for defining a set of layers that work # with a particular type of data, for instance, and then override some # of those properties defined in those files to localize them for your # setup. This works with a marker name list. By default, nothing defined. # ################################################### # #openmap.include=include1 include2 #include1.URL= #include2.URL= #openmap.include=include1 include2 include3 include4 #include1.URL=omap-views.properties #include2.URL=omap-layernames.properties #include3.URL=omap-bbnlayers.properties #include4.URL=omap-netlayers.properties # OPENMAP LAYERS # ################################################### # Here is the list of layers to add to the map. The properties for # each marker name are defined later. # # If you want to remove a layer from the application, remove its # marker name from the openmap.layers property list. You do not have # to delete all of its properties as well. # # If you want to add a layer to the application, add its marker name # to the openmap.layers property list, and then add its properties to # this file. As a minimum, Layers all need a 'marker name'.class # property, and a 'marker name'.prettyName property (for the GUI # components). Consult the JavaDocs for a layer to see what other # properties can be set for that layer. # ################################################### # # If you get more data, you can add other layers defined in this file. # You'll want to look at the properties for each layer and modify them # as needed. Check the javadocs for definitions of the available # properties for each layer. # # Layers listed here APPEAR ON THE MAP IN THE ORDER OF THEIR NAMES. openmap.layers=scale drawing master catalog station region_boundaries graticule \ Ca_Nv_Faults qfault w_us_faults \ ci_quarry nc_quarry ci_BigQuakes \ USGS_NED3 USGS_SRTM1 \ TerraTopo TerraUrban TerraDOQ \ LandSatPseudo LandSatVisual LandSatGray \ USGS_DRG USGSdoq USGSdoqbw USGSLandSat \ USGSLocal USGSUrban worldDemis worldUSGS qw_world_map #USGS_ATLASrr USGS_ATLASrd USGS_ATLAScn USGS_ATLASsh \ # # These layers are turned on when the map is first started. ORDER DOES NOT MATTER HERE... openmap.startUpLayers=drawing master catalog station graticule Ca_Nv_Faults qw_world_map # # ################################################### # These are the properties for individual layers. Consult the # javadocs (Java API pages) for the individual layers for options. # ################################################### # ### Drawing version of the EditorLayer. An EditorLayer, when active, ### places tools in the ToolPanel that creates/manipulates the ### OMGraphics on this particular layer. dtlayer.class=com.bbn.openmap.layer.editor.EditorLayer dtlayer.prettyName=Drawing EditorLayer dtlayer.editor=com.bbn.openmap.layer.editor.DrawingEditorTool #dtlayer.showAttributes=false dtlayer.loaders=polys rects circles points distance lines dtlayer.mouseModes=Gestures dtlayer.polys.class=com.bbn.openmap.tools.drawing.OMPolyLoader dtlayer.rects.class=com.bbn.openmap.tools.drawing.OMRectLoader dtlayer.circles.class=com.bbn.openmap.tools.drawing.OMCircleLoader dtlayer.points.class=com.bbn.openmap.tools.drawing.OMPointLoader dtlayer.distance.class=com.bbn.openmap.tools.drawing.OMDistanceLoader dtlayer.lines.class=com.bbn.openmap.tools.drawing.OMLineLoader # ### Another Drawing version of the EditorLayer, with the editor set up ### to only create OMDistance objects. distlayer.class=com.bbn.openmap.layer.editor.EditorLayer distlayer.prettyName=Distance Layer distlayer.showAttributes=false distlayer.editor=com.bbn.openmap.layer.editor.DrawingEditorTool distlayer.loaders=distance distlayer.distance.class=com.bbn.openmap.tools.drawing.OMDistanceLoader distlayer.distance.attributesClass=com.bbn.openmap.omGraphics.DrawingAttributes distlayer.distance.lineColor=FFAA0000 distlayer.distance.mattingColor=66333333 distlayer.distance.matted=true # ### Layer used by the overview handler overviewLayer.class=com.bbn.openmap.layer.shape.ShapeLayer overviewLayer.prettyName=Overview overviewLayer.shapeFile=mapdata/openmap/share/data/shape/dcwpo-browse.shp overviewLayer.spatialIndex=mapdata/openmap/share/data/shape/dcwpo-browse.ssx overviewLayer.lineColor=ff000000 overviewLayer.fillColor=ffbdde83 # ### # DrawingToolLayer - no palette, just a generic layer to catch # graphics from the OMDrawingToolLauncher, and to call the OMDrawingTool # to edit graphics already part of the layer. #drawing.class=com.bbn.openmap.layer.DrawingToolLayer drawing.class=org.trinet.jiggle.map.CatalogFilterLayer drawing.prettyName=Catalog Filter drawing.addToBeanContext=true drawing.lineColor=ffff0000 drawing.lineWidth=3.0 #RENDERTYPE_LATLON=1 drawing.renderType=1 #LINETYPE_GREATCIRCLE=3,LINETYPE_RHUMB=2,LINETYPE_STRAIGHT=1 drawing.lineType=3 # ### ShapeFile layers shapePolitical.class=com.bbn.openmap.layer.shape.ShapeLayer shapePolitical.prettyName=Political Boundaries # Specify shapefile and spatial-index file as a filename or pathname. # If the former, you must reference the directory where this file # lives in your CLASSPATH #shapePolitical.shapeFile=mapdata/openmap/share/data/shape/dcwpo-browse.shp #shapePolitical.spatialIndex=mapdata/openmap/share/data/shape/dcwpo-browse.ssx shapePolitical.shapeFile=mapdata/openmap/share/data/shape/cntry02/cntry02.shp shapePolitical.spatialIndex=mapdata/openmap/share/data/shape/cntry02/cntry02.ssx # Colors (32bit ARGB) shapePolitical.lineColor=ff000000 shapePolitical.fillColor=ffbdde83 # # ScaleFilterLayer switches between the layers at the transisition scales. ScaledPolitical.class=com.bbn.openmap.layer.ScaleFilterLayer ScaledPolitical.prettyName=Political Boundaries # List 2 or more layers ScaledPolitical.layers=ThinShapePolitical ShapePolitical # List the transition scales to switch between layers ScaledPolitical.transitionScales=5000000 # # ScaleFilterLayer switches between the layers at the transisition scales. ScaledFillPolitical.class=com.bbn.openmap.layer.ScaleFilterLayer ScaledFillPolitical.prettyName=Political Areas # List 2 or more layers ScaledFillPolitical.layers=ThinShapeFillPolitical ShapeFillPolitical # List the transition scales to switch between layers ScaledFillPolitical.transitionScales=5000000 # ### ShapeFile layer, full resolution converted vmap political boundaries ShapePolitical.class=com.bbn.openmap.layer.shape.ShapeLayer ShapePolitical.prettyName=Political Edge ShapePolitical.shapeFile=mapdata/openmap/share/data/shape/vmap_edge.shp ShapePolitical.spatialIndex=/mapdata/openmap/share/data/shape/vmap_edge.ssx # ### ShapeFile layer, thinned converted vmap political boundaries ThinShapePolitical.class=com.bbn.openmap.layer.shape.ShapeLayer ThinShapePolitical.prettyName=Political Edge ThinShapePolitical.shapeFile=mapdata/openmap/share/data/shape/vmap_edge_thin.shp ThinShapePolitical.spatialIndex=mapdata/openmap/share/data/shape/vmap_edge_thin.ssx # ### ShapeFile layer, full resolution converted vmap political areas ShapeFillPolitical.class=com.bbn.openmap.layer.shape.ShapeLayer ShapeFillPolitical.prettyName=Political Solid ShapeFillPolitical.shapeFile=mapdata/openmap/share/data/shape/vmap_area.shp ShapeFillPolitical.spatialIndex=mapdata/openmap/share/data/shape/vmap_area.ssx ShapeFillPolitical.lineColor=BDDE83 ShapeFillPolitical.fillColor=BDDE83 # ### ShapeFile layer, thinned converted vmap political areas ThinShapeFillPolitical.class=com.bbn.openmap.layer.shape.ShapeLayer ThinShapeFillPolitical.prettyName=Political Solid ThinShapeFillPolitical.shapeFile=mapdata/openmap/share/data/shape/vmap_area_thin.shp ThinShapeFillPolitical.spatialIndex=mapdata/openmap/share/data/shape/vmap_area_thin.ssx ThinShapeFillPolitical.lineColor=BDDE83 ThinShapeFillPolitical.fillColor=BDDE83 # ### ShapeFile layer, thinned converted vmap political boundaries, # muiltiple shape files on one layer... politicalCombo.class=com.bbn.openmap.layer.shape.MultiShapeLayer politicalCombo.prettyName=Political Boundaries 2 politicalCombo.shapeFileList=pol_edges pol_fill # politicalCombo.pol_edges.shapeFile=mapdata/openmap/share/data/shape/vmap_edge_thin.shp politicalCombo.pol_edges.prettyName=Borders politicalCombo.pol_edges.buffered=false # politicalCombo.pol_fill.shapeFile=mapdata/openmap/share/data/shape/vmap_area_thin.shp politicalCombo.pol_fill.prettyName=Areas politicalCombo.pol_fill.lineColor=FFAAAA66 politicalCombo.pol_fill.fillColor=FFAAAA66 politicalCombo.pol_fill.buffered=false # ### Graticule layer #graticule.10DegreeColor=ff00e000 #graticule.1DegreeColor=33003300 #graticule.5DegreeColor=33009900 #graticule.datelineColor=ff000099 #graticule.equatorColor=ff990000 #graticule.specialLineColor=ff000000 #graticule.textColor=ff000000 # graticule.class=com.bbn.openmap.layer.GraticuleLayer graticule.prettyName=Graticule # Show lat / lon spacing labels graticule.showRuler=true graticule.show1And5Lines=true # Controls when the five degree lines and one degree lines kick in #- when there is less than the threshold of ten degree lat or lon #lines, five degree lines are drawn. The same relationship is there #for one to five degree lines. graticule.threshold=2 # the color of 10 degree spacing lines (ARGB) graticule.10DegreeColor=99000000 # the color of 5 degree spacing lines (ARGB) graticule.5DegreeColor=99009900 # the color of 1 degree spacing lines (ARGB) graticule.1DegreeColor=99003300 # the color of the equator (ARGB) graticule.equatorColor=99FF0000 # the color of the international dateline (ARGB) graticule.dateLineColor=99000000 # the color of the special lines (ARGB) graticule.specialLineColor=99000000 # the color of the labels (ARGB) graticule.textColor=99000000 # ### Station layer station.class=org.trinet.jiggle.map.StationLayer station.prettyName=Network Stations station.stationSize= 3 # #line color for stn without waveforms light gray station.lineColor=ff909090 # #line color for stn with waveforms pale green station.wfLineColor=ffc0fac0 #aqua station.wfLineColor=ff00ffff # #line color for mouseover highlight or selected stn yellow station.selectLineColor=ffffff00 # #line color for selected WFV in Jiggle stn blue station.wfvSelectLineColor=ff0000ff #red station.wfvSelectLineColor=ffff0000 # station.mouseModes=Gestures station.consumeEvents=true station.viewNoneScale=10000000. station.viewNameScale=1000000. station.fontName=Arial Narrow station.fontStyle=PLAIN station.minFontSize=8 station.maxFontSize=12 station.rejectNet=NR RB LI station.rejectChannel=VH UM LL #default is show all stations ie. station.displayOnlyActive=false station.displayOnlyActive=true # #below prop should not be needed since MasterChannelList should have already been loaded #station.channelListCache= scedcChannelList.cache # ### MasterView layer master.class=org.trinet.jiggle.map.MasterViewLayer master.prettyName= MasterView Solutions # below property values should match those in Catalog Layer master.viewNoneScale=20000000. #Solution circle radius = scalar * magnitude master.radiusScalar= 2. # colorBy=uniform, =depth or =time or =type #master.colorBy=uniform master.colorBy=type master.defaultFillColor=FFFF01EE master.depthInterval=5. #time intervals before current datetime per color master.timeInterval=1 master.timeIntervalUnits=MONTH # below property deprecated #master.intervalColors=FFABFBFE FFDBC9FE FFFBBDFE FFADCBFE FFD46FFC FFCCFDFC FFA2ACFC FFDBBEFE FFFFFFB2 FFFD0106 FFF0F0F0 FFD0D0D0 # master.color.etype.local=ABFBFE master.color.etype.quarry=ADCBFE master.color.etype.regional=DBC9FE master.color.etype.trigger=FFFFB2 master.color.etype.teleseism=FBBDFE master.color.etype.v-tremor=F0E0D0 master.color.etype.longperiod=A2ACFC master.color.etype.sonic=CCFDFC master.color.etype.nuclear=FD0106 master.color.etype.explosion=D46FFC master.color.etype.unknown=F0F0F0 master.color.etype.other=F0F0F0 # master.color.interval.01=ffff0000 master.color.interval.02=ffff99ff master.color.interval.03=ffffcc00 master.color.interval.04=ffffff00 master.color.interval.05=ffcccc00 master.color.interval.06=ff66ff00 master.color.interval.07=ff00cc99 master.color.interval.08=ff99ffff master.color.interval.09=ff6666ff master.color.interval.10=ff0033ff master.color.interval.11=ff3300cc master.color.interval.12=ff000000 # master.mouseModes=Gestures #note should synch recenter property with catalog layer (i.e. both true or both false) master.recenterBounds=true # ### Catalog layer catalog.class=org.trinet.jiggle.map.CatalogLayer catalog.prettyName= Event Catalog # below property values should match those in MasterView Layer catalog.viewNoneScale=20000000. #Solution circle radius = scalar * magnitude catalog.radiusScalar= 2. # colorBy=uniform, =depth or =time or =type #catalog.colorBy=uniform catalog.colorBy=type catalog.defaultFillColor=FFFF01EE catalog.depthInterval=5. #time intervals before current datetime per color catalog.timeInterval=1 catalog.timeIntervalUnits=MONTH # below property deprecated #catalog.intervalColors=FFABFBFE FFDBC9FE FFFBBDFE FFADCBFE FFD46FFC FFCCFDFC FFA2ACFC FFDBBEFE FFFFFFB2 FFFD0106 FFF0F0F0 FFD0D0D0 # catalog.color.etype.local=ABFBFE catalog.color.etype.quarry=ADCBFE catalog.color.etype.regional=DBC9FE catalog.color.etype.trigger=FFFFB2 catalog.color.etype.teleseism=FBBDFE catalog.color.etype.v-tremor=F0E0D0 catalog.color.etype.longperiod=A2ACFC catalog.color.etype.sonic=CCFDFC catalog.color.etype.nuclear=FD0106 catalog.color.etype.explosion=D46FFC catalog.color.etype.unknown=F0F0F0 catalog.color.etype.other=F0F0F0 ## # catalog.color.interval.01=ffff0000 catalog.color.interval.02=ffff99ff catalog.color.interval.03=ffffcc00 catalog.color.interval.04=ffffff00 catalog.color.interval.05=ffcccc00 catalog.color.interval.06=ff66ff00 catalog.color.interval.07=ff00cc99 catalog.color.interval.08=ff99ffff catalog.color.interval.09=ff6666ff catalog.color.interval.10=ff0033ff catalog.color.interval.11=ff3300cc catalog.color.interval.12=ff000000 # catalog.mouseModes=Gestures catalog.recenterBounds=true ### # LocationLayer that holds cities. The palette for this layer lets # you turn on the names and declutter matrix, if you want. The # declutter matrix can get expensive at small scales. cities.class=com.bbn.openmap.layer.location.LocationLayer cities.prettyName=World Cities cities.locationHandlers=csvcities cities.useDeclutter=false cities.declutterMatrix=com.bbn.openmap.layer.DeclutterMatrix # csvcities.class=com.bbn.openmap.layer.location.csv.CSVLocationHandler csvcities.prettyName=World Cities csvcities.locationFile=mapdata/openmap/share/data/cities.csv csvcities.csvFileHasHeader=true csvcities.locationColor=FF0000 csvcities.nameColor=008C54 csvcities.showNames=false csvcities.showLocations=true csvcities.override=false csvcities.nameIndex=0 csvcities.latIndex=5 csvcities.lonIndex=4 csvcities.csvFileHasHeader=true # # # QWClient layer properties follow: # region_boundaries.autoPalette=false region_boundaries.class=com.isti.quakewatch.omutil.RegionBoundariesLayer region_boundaries.prettyName=Region Boundaries region_boundaries.regionsXmlFile=mapdata/QW/regions.xml # ca_counties.autoPalette=false #ca_counties.class=com.isti.quakewatch.omutil.QPagerMapLayer ca_counties.class=com.isti.omutil.QPagerMapLayer ca_counties.fillColor=0 ca_counties.lineColor=5F808080 ca_counties.linesFile=mapdata/QW/ca_counties.qpm ca_counties.prettyName=CA Counties # ca_highways.autoPalette=false #ca_highways.class=com.isti.quakewatch.omutil.QPagerMapLayer ca_highways.class=com.isti.omutil.QPagerMapLayer ca_highways.fillColor=0 ca_highways.lineColor=AAFF0000 ca_highways.linesFile=mapdata/QW/ca_highways.qpm ca_highways.prettyName=CA Highways # ca_lakes.autoPalette=false #ca_lakes.class=com.isti.quakewatch.omutil.QPagerMapLayer ca_lakes.class=com.isti.omutil.QPagerMapLayer ca_lakes.fillColor=7F9FCFC0 ca_lakes.lineColor=FF9FCFC0 ca_lakes.linesFile=mapdata/QW/ca_lakes.qpm ca_lakes.prettyName=CA Lakes # Ca_Nv_Faults.addToBeanContext=true Ca_Nv_Faults.autoPalette=false Ca_Nv_Faults.class=org.trinet.jiggle.map.CaNvFaultLayer #Ca_Nv_Faults.class=com.bbn.openmap.plugin.esri.EsriLayer #Ca_Nv_Faults.class=com.isti.omutil.EsriShapeLayer #Ca_Nv_Faults.class=com.isti.quakewatch.omutil.IstiShapeLayer #Ca_Nv_Faults.class=com.isti.omutil.IstiShapeLayer # Below 2 props used with bbn ShapeLayer or IstiShapeLayer only #Ca_Nv_Faults.shapeFile=mapdata/QW/ca_nv_faults.shp #Ca_Nv_Faults.spatialIndex=mapdata/QW/ca_nv_faults.ssx # Ca_Nv_Faults.shp=mapdata/QW/ca_nv_faults.shp Ca_Nv_Faults.shx=mapdata/QW/ca_nv_faults.shx Ca_Nv_Faults.dbf=mapdata/QW/ca_nv_faults.dbf Ca_Nv_Faults.dashPattern= Ca_Nv_Faults.dashPhase= Ca_Nv_Faults.fillColor=0 Ca_Nv_Faults.fillPattern= Ca_Nv_Faults.lineColor=ffe88800 Ca_Nv_Faults.lineWidth=1.0 Ca_Nv_Faults.pointImageURL= Ca_Nv_Faults.prettyName=Ca Nv Faults Ca_Nv_Faults.selectColor=ffffff00 Ca_Nv_Faults.shadowX=0 Ca_Nv_Faults.shadowY=0 Ca_Nv_Faults.textColor=ff000000 Ca_Nv_Faults.mouseModes=Gestures # Ca_Nv_Faults2.addToBeanContext=true Ca_Nv_Faults2.autoPalette=false # White tooltip label popup is active over larger graphic offset than CaNvFaultLayer, plus no info label text at bottom right Ca_Nv_Faults2.class=com.isti.omutil.ToolTipShapeLayer # Below 2 props used with bbn ShapeLayer or IstiShapeLayer only #Ca_Nv_Faults2.shapeFile=mapdata/QW/ca_nv_faults.shp #Ca_Nv_Faults2.spatialIndex=mapdata/QW/ca_nv_faults.ssx #Note diffence xxxURL property name, descendant of com.isti.omutil.EsriShapeLayer Ca_Nv_Faults2.shpURL=mapdata/QW/ca_nv_faults.shp Ca_Nv_Faults2.shxURL=mapdata/QW/ca_nv_faults.shx Ca_Nv_Faults2.dbfURL=mapdata/QW/ca_nv_faults.dbf Ca_Nv_Faults2.tooltipColumnName=FAULT Ca_Nv_Faults2.dashPattern= Ca_Nv_Faults2.dashPhase= Ca_Nv_Faults2.fillColor=0 Ca_Nv_Faults2.fillPattern= Ca_Nv_Faults2.lineColor=ffe88800 Ca_Nv_Faults2.lineWidth=1.0 Ca_Nv_Faults2.pointImageURL= Ca_Nv_Faults2.prettyName=Ca Nv Faults Ca_Nv_Faults2.selectColor=ffffff00 Ca_Nv_Faults2.shadowX=0 Ca_Nv_Faults2.shadowY=0 Ca_Nv_Faults2.textColor=ff000000 Ca_Nv_Faults2.mouseModes=Gestures # global_cities.autoPalette=false #global_cities.class=com.isti.quakewatch.omutil.IstiLocationLayer global_cities.class=com.isti.omutil.IstiLocationLayer global_cities.locationHandlers=global_citiesHandler global_cities.prettyName=Global Cities global_cities.useDeclutter=false # #global_citiesHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler global_citiesHandler.class=com.isti.omutil.SMBLocationHandler global_citiesHandler.latIndex=1 global_citiesHandler.locationColor=ffce4f3f global_citiesHandler.locationFile=mapdata/QW/places-globcit.smb global_citiesHandler.lonIndex=0 global_citiesHandler.markerSize=2 global_citiesHandler.markerType=Rectangle global_citiesHandler.nameColor=ff339159 global_citiesHandler.nameIndex=7 global_citiesHandler.prettyName= global_citiesHandler.showLocations=true global_citiesHandler.showNames=true global_citiesHandler.viewFilteredScale=15000000 global_citiesHandler.viewNoneScale=50000000 global_citiesHandler.viewUpperCaseFilter=true # us_towns.autoPalette=false #us_towns.class=com.isti.quakewatch.omutil.IstiLocationLayer us_towns.class=com.isti.omutil.IstiLocationLayer us_towns.locationHandlers=us_townsHandler us_towns.prettyName=US Towns us_towns.useDeclutter=false # #us_townsHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler us_townsHandler.class=com.isti.omutil.SMBLocationHandler us_townsHandler.latIndex=1 us_townsHandler.locationColor=ffce4f3f us_townsHandler.locationFile=mapdata/QW/US_10K_50KM.smb us_townsHandler.lonIndex=0 us_townsHandler.markerSize=2 us_townsHandler.markerType=Rectangle us_townsHandler.nameColor=ff339159 us_townsHandler.nameIndex=7 us_townsHandler.prettyName= us_townsHandler.showLocations=true us_townsHandler.showNames=true us_townsHandler.viewFilteredScale=15000000 us_townsHandler.viewNoneScale=50000000 us_townsHandler.viewUpperCaseFilter=true # ci_SmallTowns.autoPalette=false #ci_SmallTowns.class=com.isti.quakewatch.omutil.IstiLocationLayer ci_SmallTowns.class=com.isti.omutil.IstiLocationLayer ci_SmallTowns.locationHandlers=ci_SmallTownsHandler ci_SmallTowns.prettyName=Local Towns ci_SmallTowns.useDeclutter=false ci_SmallTowns.mouseModes=Gestures # #ci_SmallTownsHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler ci_SmallTownsHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler ci_SmallTownsHandler.latIndex=1 ci_SmallTownsHandler.locationColor=ffce4f3f ci_SmallTownsHandler.locationFile=mapdata/QW/ci_small_twns.smb ci_SmallTownsHandler.lonIndex=0 ci_SmallTownsHandler.markerSize=2 ci_SmallTownsHandler.markerType=Rectangle #ci_SmallTownsHandler.markerSize=10 #ci_SmallTownsHandler.markerType=Text ci_SmallTownsHandler.markerFont=Arial # + O X <> [] # $ 0 chose font "centered" text markers beware of "*" ci_SmallTownsHandler.markerText=X ci_SmallTownsHandler.nameColor=ff055602 ci_SmallTownsHandler.nameIndex=7 ci_SmallTownsHandler.prettyName= #ci_SmallTownsHandler.fontName=Arial ci_SmallTownsHandler.fontName=Arial Narrow ci_SmallTownsHandler.minFontSize= 8 ci_SmallTownsHandler.maxFontSize= 12 ci_SmallTownsHandler.fontStyle=PLAIN ci_SmallTownsHandler.showLocations=true ci_SmallTownsHandler.showNames=true ci_SmallTownsHandler.viewFilteredScale=500000 ci_SmallTownsHandler.viewNoneScale=5000000 ci_SmallTownsHandler.viewUpperCaseFilter=true # ci_BigTowns.autoPalette=false #ci_BigTowns.class=com.isti.quakewatch.omutil.IstiLocationLayer ci_BigTowns.class=com.isti.omutil.IstiLocationLayer ci_BigTowns.locationHandlers=ci_BigTownsHandler ci_BigTowns.prettyName=Town Overview ci_BigTowns.useDeclutter=false ci_BigTowns.mouseModes=Gestures # #ci_BigTownsHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler ci_BigTownsHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler ci_BigTownsHandler.latIndex=1 ci_BigTownsHandler.locationColor=ffce4f3f ci_BigTownsHandler.locationFile=mapdata/QW/ci_big_twns.smb ci_BigTownsHandler.lonIndex=0 #ci_BigTownsHandler.markerSize=2 ci_BigTownsHandler.markerType=Rectangle ci_BigTownsHandler.markerSize=4 #ci_BigTownsHandler.markerType=Text ci_BigTownsHandler.markerFont=Arial # + O X <> [] # $ 0 chose font "centered" text markers beware of "*" ci_BigTownsHandler.markerText=X ci_BigTownsHandler.nameColor=ff055602 ci_BigTownsHandler.nameIndex=7 ci_BigTownsHandler.prettyName= ci_BigTownsHandler.fontName=Arial # set font min,max same to use UPPERCASE name for selection filter ci_BigTownsHandler.minFontSize= 8 ci_BigTownsHandler.maxFontSize= 12 ci_BigTownsHandler.fontStyle=BOLD ci_BigTownsHandler.showLocations=true ci_BigTownsHandler.showNames=true ci_BigTownsHandler.viewFilteredScale=2500000 ci_BigTownsHandler.viewNoneScale=20000000 ci_BigTownsHandler.viewUpperCaseFilter=true # ci_BigQuakes.autoPalette=false #ci_BigQuakes.class=com.isti.quakewatch.omutil.IstiLocationLayer ci_BigQuakes.class=com.isti.omutil.IstiLocationLayer ci_BigQuakes.locationHandlers=ci_BigQuakesHandler ci_BigQuakes.prettyName=Historic EQ ci_BigQuakes.useDeclutter=false ci_BigQuakes.mouseModes=Gestures # #ci_BigQuakesHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler ci_BigQuakesHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler ci_BigQuakesHandler.latIndex=1 ci_BigQuakesHandler.locationColor=fff7040e ci_BigQuakesHandler.locationFile=mapdata/QW/ci_big_eqs.smb ci_BigQuakesHandler.lonIndex=0 #ci_BigQuakesHandler.markerSize=2 ci_BigQuakesHandler.markerType=Star ci_BigQuakesHandler.markerSize=5 #ci_BigQuakesHandler.markerType=Text ci_BigQuakesHandler.markerFont=Arial # + O X <> [] # $ 0 chose font "centered" text markers beware of "*" ci_BigQuakesHandler.markerText=X ci_BigQuakesHandler.nameColor=fff7040e ci_BigQuakesHandler.nameIndex=7 ci_BigQuakesHandler.prettyName= ci_BigQuakesHandler.fontName=Arial ci_BigQuakesHandler.showLocations=true ci_BigQuakesHandler.showNames=true ci_BigQuakesHandler.viewFilteredScale=5000000 ci_BigQuakesHandler.viewNoneScale=20000000 ci_BigQuakesHandler.viewUpperCaseFilter=true # ci_quarry.autoPalette=false #ci_quarry.class=com.isti.quakewatch.omutil.IstiLocationLayer ci_quarry.class=com.isti.omutil.IstiLocationLayer ci_quarry.locationHandlers=ci_quarryHandler ci_quarry.prettyName=SCSN Quarries ci_quarry.useDeclutter=false ci_quarry.mouseModes=Gestures # #ci_quarryHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler ci_quarryHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler ci_quarryHandler.latIndex=1 ci_quarryHandler.locationColor=ffA020f0 ci_quarryHandler.locationFile=mapdata/QW/ci_quarry.smb ci_quarryHandler.lonIndex=0 #Known Marker Types: Rectangle Triangle Circle Star Hex Diamond Text #ci_quarryHandler.markerType=Diamond ci_quarryHandler.markerSize=10 ci_quarryHandler.markerType=Text ci_quarryHandler.markerFont=Arial # + O X <> [] # $ 0 chose font "centered" text markers beware of "*" ci_quarryHandler.markerText=X ci_quarryHandler.nameColor=ffa020f0 ci_quarryHandler.nameIndex=7 ci_quarryHandler.prettyName= ci_quarryHandler.fontName=Arial ci_quarryHandler.showLocations=true ci_quarryHandler.showNames=true ci_quarryHandler.viewFilteredScale=2500000 ci_quarryHandler.viewNoneScale=10000000 ci_quarryHandler.viewUpperCaseFilter=true # nc_quarry.autoPalette=false #nc_quarry.class=com.isti.quakewatch.omutil.IstiLocationLayer nc_quarry.class=com.isti.omutil.IstiLocationLayer nc_quarry.locationHandlers=nc_quarryHandler nc_quarry.prettyName=NCSN Quarries nc_quarry.useDeclutter=false nc_quarry.mouseModes=Gestures # #nc_quarryHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler nc_quarryHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler nc_quarryHandler.latIndex=1 nc_quarryHandler.locationColor=ffA020f0 nc_quarryHandler.locationFile=mapdata/QW/nc_quarry.smb nc_quarryHandler.lonIndex=0 #Known Marker Types: Rectangle Triangle Circle Star Hex Diamond Text #nc_quarryHandler.markerType=Diamond nc_quarryHandler.markerSize=10 nc_quarryHandler.markerType=Text nc_quarryHandler.markerFont=Arial # + O X <> [] # $ 0 chose font "centered" text markers beware of "*" nc_quarryHandler.markerText=X nc_quarryHandler.nameColor=ffa020f0 nc_quarryHandler.nameIndex=7 nc_quarryHandler.prettyName= nc_quarryHandler.fontName=Arial nc_quarryHandler.showLocations=true nc_quarryHandler.showNames=true nc_quarryHandler.viewFilteredScale=2500000 nc_quarryHandler.viewNoneScale=10000000 nc_quarryHandler.viewUpperCaseFilter=true # ci_poi.autoPalette=false #ci_poi.class=com.isti.quakewatch.omutil.IstiLocationLayer ci_poi.class=com.isti.omutil.IstiLocationLayer ci_poi.locationHandlers=ci_poiHandler ci_poi.prettyName=Pts of Interest ci_poi.useDeclutter=false ci_poi.mouseModes=Gestures # #ci_poiHandler.class=com.isti.quakewatch.omutil.SMBLocationHandler ci_poiHandler.class=org.trinet.jiggle.map.JiggleSMBLocationHandler ci_poiHandler.latIndex=1 ci_poiHandler.locationColor=ffce4f3f ci_poiHandler.locationFile=mapdata/QW/ci_poi.smb ci_poiHandler.lonIndex=0 #ci_poiHandler.markerSize=2 #ci_poiHandler.markerType=Diamond ci_poiHandler.markerSize=10 ci_poiHandler.markerType=Text ci_poiHandler.markerFont=Arial # + O X <> [] # $ 0 chose font "centered" text markers beware of "*" ci_poiHandler.markerText=+ ci_poiHandler.nameColor=ffce4f3f ci_poiHandler.nameIndex=7 ci_poiHandler.prettyName= ci_poiHandler.fontName=Arial ci_poiHandler.fontStyle=ITALIC ci_poiHandler.showLocations=true ci_poiHandler.showNames=true ci_poiHandler.viewFilteredScale=2500000 ci_poiHandler.viewNoneScale=50000000 ci_poiHandler.viewUpperCaseFilter=true # # qfault.addToBeanContext=true qfault.autoPalette=false qfault.class=org.trinet.jiggle.map.QFaultLayer #qfault.class=com.isti.omutil.EsriShapeLayer #qfault.class=com.isti.quakewatch.omutil.IstiShapeLayer #qfault.class=com.isti.omutil.IstiShapeLayer # Below 2 props used with bbn ShapeLayer or IstiShapeLayer only #qfault.shapeFile=mapdata/atlas/shape/qfaultl_25.shp #qfault.spatialIndex=mapdata/atlas/shape/qfaultl_25.ssx qfault.shp=mapdata/atlas/shape/qfaultl_25.shp qfault.shx=mapdata/atlas/shape/qfaultl_25.shx qfault.dbf=mapdata/atlas/shape/qfaultl_25.dbf qfault.dashPattern= qfault.dashPhase= qfault.fillColor=0 qfault.fillPattern= qfault.lineColor=ffe88800 qfault.lineWidth=1.0 qfault.pointImageURL= qfault.prettyName= Quat Faults qfault.selectColor=ffffff00 qfault.shadowX=0 qfault.shadowY=0 qfault.textColor=ff000000 qfault.mouseModes=Gestures # # w_us_faults.autoPalette=false #w_us_faults.class=com.isti.quakewatch.omutil.QPagerMapLayer w_us_faults.class=com.isti.omutil.QPagerMapLayer w_us_faults.fillColor=0 w_us_faults.lineColor=ffe88800 w_us_faults.selectColor=ffffff00 w_us_faults.linesFile=mapdata/QW/w_us_faults.qpm w_us_faults.prettyName=US West Faults # qw_world_map.autoPalette=false #qw_world_map.class=com.isti..omutil.EsriShapeLayer #qw_world_map.class=com.isti.quakewatch.omutil.IstiShapeLayer qw_world_map.class=com.isti.omutil.IstiShapeLayer # Below 2 props used with bbn ShapeLayer or IstiShapeLayer only qw_world_map.shapeFile=mapdata/QW/world_map.shp qw_world_map.spatialIndex=mapdata/QW/world_map.ssx qw_world_map.dashPattern= qw_world_map.dashPhase= qw_world_map.fillColor=ffd2c9a1 qw_world_map.fillPattern= qw_world_map.lineColor=ff008c54 qw_world_map.lineWidth=1.0 qw_world_map.pointImageURL= qw_world_map.prettyName=ISTI World Map qw_world_map.selectColor=ff000000 qw_world_map.shadowX=0 qw_world_map.shadowY=0 qw_world_map.textColor=ff000000 qw_world_map.maxZoomScaleVisible=0 qw_world_map.minZoomScaleVisible=0 # qw_world_area.autoPalette=false #qw_world_area.class=com.isti..omutil.EsriShapeLayer #qw_world_area.class=com.isti.quakewatch.omutil.IstiShapeLayer qw_world_area.class=com.isti.omutil.IstiShapeLayer # Below 2 props used with bbn ShapeLayer or IstiShapeLayer only qw_world_area.shapeFile=mapdata/QW/world_area.shp qw_world_area.spatialIndex=mapdata/QW/world_area.ssx qw_world_area.dashPattern= qw_world_area.dashPhase= qw_world_area.fillColor=ffd2c9a1 qw_world_area.fillPattern= qw_world_area.lineColor=0 qw_world_area.lineWidth=1.0 qw_world_area.pointImageURL= qw_world_area.prettyName=ISTI World Area qw_world_area.selectColor=ff000000 qw_world_area.shadowX=0 qw_world_area.shadowY=0 qw_world_area.textColor=ff000000 # qw_world_lines.autoPalette=false #qw_world_lines.class=com.isti.omutil.EsriShapeLayer #qw_world_lines.class=com.isti.quakewatch.omutil.IstiShapeLayer qw_world_lines.class=com.isti.omutil.IstiShapeLayer # Below 2 props used with bbn ShapeLayer or IstiShapeLayer only qw_world_lines.shapeFile=mapdata/QW/world_lines.shp qw_world_lines.spatialIndex=mapdata/QW/world_lines.ssx qw_world_lines.dashPattern= qw_world_lines.dashPhase= qw_world_lines.fillColor=0 qw_world_lines.fillPattern= qw_world_lines.lineColor=ff008c54 qw_world_lines.lineWidth=1.0 qw_world_lines.pointImageURL= qw_world_lines.prettyName=ISTI World Lines qw_world_lines.selectColor=ff000000 qw_world_lines.shadowX=0 qw_world_lines.shadowY=0 qw_world_lines.textColor=ff000000 # #scale.class=com.bbn.openmap.layer.ScaleDisplayLayer #scale.prettyName=Scale #scale.lineColor=ff777777 #scale.textColor=ff000000 #scale.unitOfMeasure=km #scale.locationXoffset=-10 #scale.locationYoffset=-20 #scale.width=150 #scale.height=10 # scale.autoPalette=false scale.class=org.trinet.jiggle.map.IstiScaleLayer scale.prettyName=Scale # [+-]X[+-]Y, location relative to edges: `+' left/top, `-' right/bottom scale.XY.position=+10-10 scale.backgroundColor=00000000 scale.foregroundColor=ff000000 #scale.useMetricUnits=true # # WMS Layers # # worldDemis.addToBeanContext=true worldDemis.autoPalette=false worldDemis.background=false worldDemis.backgroundcolor=0x000000 worldDemis.class=org.trinet.jiggle.map.JiggleWMSPlugIn worldDemis.consumeEvents=false worldDemis.format=image/png worldDemis.layers=Bathymetry,Countries,Topography,Hillshading,Builtup+areas,Coastlines,\ Waterbodies,Inundated,Rivers,Streams,Railroads,Highways,Roads,Trails,Borders,Cities,\ Settlements,Spot+elevations,Airports,Ocean+features worldDemis.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy worldDemis.prettyName=Demis World worldDemis.projectionChangePolicy=pcp worldDemis.removable=true worldDemis.renderPolicy=rp worldDemis.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy worldDemis.styles= worldDemis.transparent=TRUE worldDemis.vendorspecificnames=wms worldDemis.vendorspecificvalues=WorldMap worldDemis.wmsserver=http://www2.demis.nl/mapserver/wms.asp worldDemis.wmsversion=1.1.1 worldDemis.min.scale=12000 worldDemis.max.scale=20000000 worldDemis.timeout=13000 # worldUSGS.addToBeanContext=true worldUSGS.autoPalette=false worldUSGS.background=false worldUSGS.backgroundcolor=0x000000 worldUSGS.class=org.trinet.jiggle.map.JiggleWMSPlugIn worldUSGS.consumeEvents=false worldUSGS.format=image/png worldUSGS.layers=Countries,Countries+Line,cities,WorldGrid worldUSGS.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy worldUSGS.prettyName=USGS World worldUSGS.projectionChangePolicy=pcp worldUSGS.removable=true worldUSGS.renderPolicy=rp worldUSGS.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy worldUSGS.styles= worldUSGS.transparent=TRUE worldUSGS.vendorspecificnames= worldUSGS.vendorspecificvalues= worldUSGS.wmsserver=http://gisdata.usgs.gov/wmsconnector/com.esri.wms.Esrimap/world worldUSGS.wmsversion=1.1.1 worldUSGS.min.scale=12000 worldUSGS.max.scale=20000000 worldUSGS.timeout=13000 # USGS_NED3.addToBeanContext=true USGS_NED3.autoPalette=false USGS_NED3.background=false USGS_NED3.backgroundcolor=0x000000 USGS_NED3.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_NED3.consumeEvents=false USGS_NED3.format=image/png USGS_NED3.layers=1/3+NED+Shaded+Relief USGS_NED3.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_NED3.prettyName=USGS NED3 USGS_NED3.projectionChangePolicy=pcp USGS_NED3.removable=true USGS_NED3.renderPolicy=rp USGS_NED3.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_NED3.styles= USGS_NED3.transparent=TRUE USGS_NED3.vendorspecificnames= USGS_NED3.vendorspecificvalues= USGS_NED3.wmsserver=http://ims.cr.usgs.gov:80/servlet/com.esri.wms.Esrimap/USGS_EDC_Elev_NED_3 USGS_NED3.wmsversion=1.1.1 USGS_NED3.min.scale=12000 USGS_NED3.max.scale=20000000 USGS_NED3.timeout=13000 # USGS_SRTM1.addToBeanContext=true USGS_SRTM1.autoPalette=false USGS_SRTM1.background=false USGS_SRTM1.backgroundcolor=0x000000 USGS_SRTM1.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_SRTM1.consumeEvents=false USGS_SRTM1.format=image/png USGS_SRTM1.layers=SRTM_Relief_1 #USGS_SRTM1.layers=SRTM_Relief_1,SRTM_Relief_30M,AE_SRTM_Relief_30M,TE_SRTM_Relief_30M USGS_SRTM1.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_SRTM1.prettyName=USGS SRTM1 USGS_SRTM1.projectionChangePolicy=pcp USGS_SRTM1.removable=true USGS_SRTM1.renderPolicy=rp USGS_SRTM1.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_SRTM1.styles= USGS_SRTM1.transparent=TRUE USGS_SRTM1.vendorspecificnames= USGS_SRTM1.vendorspecificvalues= USGS_SRTM1.wmsserver=http://ims.cr.usgs.gov:80/servlet/com.esri.wms.Esrimap/USGS_EDC_Elev_SRTM USGS_SRTM1.wmsversion=1.1.1 USGS_SRTM1.min.scale=12000 USGS_SRTM1.max.scale=20000000 USGS_SRTM1.timeout=13000 # USGS_ATLASsh.addToBeanContext=true USGS_ATLASsh.autoPalette=false USGS_ATLASsh.background=false USGS_ATLASsh.backgroundcolor=0x000000 USGS_ATLASsh.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_ATLASsh.consumeEvents=false USGS_ATLASsh.format=image/png #Has many more layers about everything you would ever find in an atlas USGS_ATLASsh.layers=ATLAS_SHORELINES_150,ATLAS_SHORELINES_075,ATLAS_USA_SHORELINES USGS_ATLASsh.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_ATLASsh.prettyName=USGS Atlas Shores USGS_ATLASsh.projectionChangePolicy=pcp USGS_ATLASsh.removable=true USGS_ATLASsh.renderPolicy=rp USGS_ATLASsh.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_ATLASsh.styles= USGS_ATLASsh.transparent=TRUE USGS_ATLASsh.vendorspecificnames= USGS_ATLASsh.vendorspecificvalues= USGS_ATLASsh.wmsserver=http://igskmncngs086.cr.usgs.gov:80/wmsconnector/com.esri.wms.Esrimap/USGS_EDC_National_Atlas USGS_ATLASsh.wmsversion=1.1.1 USGS_ATLASsh.min.scale=1000 USGS_ATLASsh.max.scale=40000000 USGS_ATLASsh.timeout=13000 # USGS_ATLASst.addToBeanContext=true USGS_ATLASst.autoPalette=false USGS_ATLASst.background=false USGS_ATLASst.backgroundcolor=0x000000 USGS_ATLASst.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_ATLASst.consumeEvents=false USGS_ATLASst.format=image/png #Has many more layers about everything you would ever find in an atlas USGS_ATLASst.layers=ATLAS_STATES,ATLAS_STATES_075,ATLAS_STATES_150 USGS_ATLASst.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_ATLASst.prettyName=USGS Atlas States USGS_ATLASst.projectionChangePolicy=pcp USGS_ATLASst.removable=true USGS_ATLASst.renderPolicy=rp USGS_ATLASst.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_ATLASst.styles= USGS_ATLASst.transparent=TRUE USGS_ATLASst.vendorspecificnames= USGS_ATLASst.vendorspecificvalues= USGS_ATLASst.wmsserver=http://igskmncngs086.cr.usgs.gov:80/wmsconnector/com.esri.wms.Esrimap/USGS_EDC_National_Atlas USGS_ATLASst.wmsversion=1.1.1 USGS_ATLASst.min.scale=1000 USGS_ATLASst.max.scale=40000000 USGS_ATLASst.timeout=13000 # USGS_ATLAScn.addToBeanContext=true USGS_ATLAScn.autoPalette=false USGS_ATLAScn.background=false USGS_ATLAScn.backgroundcolor=0x000000 USGS_ATLAScn.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_ATLAScn.consumeEvents=false USGS_ATLAScn.format=image/png #Has many more layers about everything you would ever find in an atlas USGS_ATLAScn.layers=ATLAS_COUNTIES_2001 #ATLAS_COUNTIES_2001_LABELS USGS_ATLAScn.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_ATLAScn.prettyName=USGS Atlas Counties USGS_ATLAScn.projectionChangePolicy=pcp USGS_ATLAScn.removable=true USGS_ATLAScn.renderPolicy=rp USGS_ATLAScn.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_ATLAScn.styles= USGS_ATLAScn.transparent=TRUE USGS_ATLAScn.vendorspecificnames= USGS_ATLAScn.vendorspecificvalues= USGS_ATLAScn.wmsserver=http://igskmncngs086.cr.usgs.gov:80/wmsconnector/com.esri.wms.Esrimap/USGS_EDC_National_Atlas USGS_ATLAScn.wmsversion=1.1.1 USGS_ATLAScn.min.scale=1000 USGS_ATLAScn.max.scale=40000000 USGS_ATLAScn.timeout=13000 # USGS_ATLASrd.addToBeanContext=true USGS_ATLASrd.autoPalette=false USGS_ATLASrd.background=false USGS_ATLASrd.backgroundcolor=0xFFFFFF USGS_ATLASrd.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_ATLASrd.consumeEvents=false USGS_ATLASrd.format=image/png #Has many more layers about everything you would ever find in an atlas USGS_ATLASrd.layers=ATLAS_ROADS_LABELS,ATLAS_ROADS_075,ATLAS_ROADS USGS_ATLASrd.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_ATLASrd.prettyName=USGS Atlas Roads USGS_ATLASrd.projectionChangePolicy=pcp USGS_ATLASrd.removable=true USGS_ATLASrd.renderPolicy=rp USGS_ATLASrd.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_ATLASrd.styles= USGS_ATLASrd.transparent=TRUE USGS_ATLASrd.vendorspecificnames= USGS_ATLASrd.vendorspecificvalues= USGS_ATLASrd.wmsserver=http://igskmncngs086.cr.usgs.gov:80/wmsconnector/com.esri.wms.Esrimap/USGS_EDC_National_Atlas USGS_ATLASrd.wmsversion=1.1.1 USGS_ATLASrd.min.scale=1000 USGS_ATLASrd.max.scale=40000000 USGS_ATLASrd.timeout=13000 # USGS_ATLASrr.addToBeanContext=true USGS_ATLASrr.autoPalette=false USGS_ATLASrr.background=false USGS_ATLASrr.backgroundcolor=0xffffff USGS_ATLASrr.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_ATLASrr.consumeEvents=false USGS_ATLASrr.format=image/png #Has many more layers about everything you would ever find in an atlas USGS_ATLASrr.layers=ATLAS_RAILROAD,ATLAS_AIRPORTS,ATLAS_AIRPORTS_LABELS USGS_ATLASrr.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_ATLASrr.prettyName=USGS Atlas Air/Rail USGS_ATLASrr.projectionChangePolicy=pcp USGS_ATLASrr.removable=true USGS_ATLASrr.renderPolicy=rp USGS_ATLASrr.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_ATLASrr.styles= USGS_ATLASrr.transparent=TRUE USGS_ATLASrr.vendorspecificnames= USGS_ATLASrr.vendorspecificvalues= USGS_ATLASrr.wmsserver=http://igskmncngs086.cr.usgs.gov:80/wmsconnector/com.esri.wms.Esrimap/USGS_EDC_National_Atlas USGS_ATLASrr.wmsversion=1.1.1 USGS_ATLASrr.min.scale=1000 USGS_ATLASrr.max.scale=40000000 USGS_ATLASrr.timeout=13000 ### -USGSLandSat- layer properties USGSLandSat.addToBeanContext=true USGSLandSat.autoPalette=false USGSLandSat.background=false USGSLandSat.backgroundcolor=0x000000 USGSLandSat.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGSLandSat.consumeEvents=false USGSLandSat.format=image/png USGSLandSat.layers=LANDSAT7 USGSLandSat.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGSLandSat.prettyName=USGS LandSat7 USGSLandSat.projectionChangePolicy=pcp USGSLandSat.removable=true USGSLandSat.renderPolicy=rp USGSLandSat.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGSLandSat.styles= USGSLandSat.transparent=FALSE USGSLandSat.vendorspecificnames= USGSLandSat.vendorspecificvalues= USGSLandSat.wmsserver=http://ims.cr.usgs.gov:80/servlet/com.esri.wms.Esrimap/USGS_WMS_LANDSAT7 USGSLandSat.wmsversion=1.1.0 USGSLandSat.min.scale=24000 USGSLandSat.max.scale=40000000 USGSLandSat.timeout=13000 ### end of -USGSLandSat- properties # USGSdoqbw.addToBeanContext=true USGSdoqbw.autoPalette=false USGSdoqbw.background=false USGSdoqbw.backgroundcolor=0x000000 USGSdoqbw.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGSdoqbw.consumeEvents=false USGSdoqbw.format=image/png #Need named layer(s) west coast US south of 40N USGSdoqbw.layers=DOQQ_001_BW,DOQQ_002_BW,DOQQ_003_BW,DOQQ_004_BW,DOQQ_005_BW,DOQQ_006_BW,DOQQ_007_BW,DOQQ_008_BW,\ DOQQ_009_BW,DOQQ_010_BW,DOQQ_011_BW,DOQQ_012_BW,DOQQ_013_BW,DOQQ_014_BW,DOQQ_015_BW,DOQQ_016_BW,DOQQ_017_BW,\ DOQQ_018_BW,DOQQ_019_BW,DOQQ_020_BW,DOQQ_021_BW,DOQQ_022_BW,DOQQ_023_BW,DOQQ_024_BW,DOQQ_025_BW,DOQQ_026_BW,\ DOQQ_027_BW,DOQQ_028_BW,DOQQ_029_BW,DOQQ_030_BW,DOQQ_031_BW,DOQQ_032_BW,DOQQ_033_BW,DOQQ_034_BW,DOQQ_035_BW,\ DOQQ_036_BW,DOQQ_037_BW,DOQQ_038_BW,DOQQ_039_BW,DOQQ_040_BW,DOQQ_041_BW,DOQQ_042_BW,DOQQ_043_BW,DOQQ_044_BW,\ DOQQ_045_BW,DOQQ_046_BW,DOQQ_047_BW,DOQQ_048_BW,DOQQ_049_BW,DOQQ_050_BW,DOQQ_051_BW,DOQQ_053_BW,DOQQ_054_BW,\ DOQQ_055_BW,DOQQ_056_BW,DOQQ_057_BW,DOQQ_058_BW,DOQQ_059_BW,DOQQ_060_BW,DOQQ_061_BW,DOQQ_062_BW,DOQQ_063_BW,\ DOQQ_064_BW,DOQQ_065_BW,DOQQ_066_BW,DOQQ_067_BW,DOQQ_068_BW USGSdoqbw.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGSdoqbw.prettyName=USGS DOQ B&W USGSdoqbw.projectionChangePolicy=pcp USGSdoqbw.removable=true USGSdoqbw.renderPolicy=rp USGSdoqbw.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGSdoqbw.styles= USGSdoqbw.transparent=TRUE USGSdoqbw.vendorspecificnames=reaspect USGSdoqbw.vendorspecificvalues=FALSE USGSdoqbw.wmsserver=http://gisdata.usgs.gov/servlet/com.esri.wms.Esrimap/USGS_EDC_Ortho_DOQQ USGSdoqbw.wmsversion=1.1.1 USGSdoqbw.min.scale=10000 USGSdoqbw.max.scale=2000000 USGSdoqbw.timeout=13000 # USGSdoq.addToBeanContext=true USGSdoq.autoPalette=false USGSdoq.background=false USGSdoq.backgroundcolor=0x000000 USGSdoq.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGSdoq.consumeEvents=false USGSdoq.format=image/png #Need named layer(s) west coast US south of 40N USGSdoq.layers=DOQQ_004,DOQQ_005,DOQQ_016,DOQQ_017,DOQQ_018,DOQQ_030,DOQQ_031,DOQQ_032,DOQQ_033,DOQQ_034,DOQQ_035,\ DOQQ_047,DOQQ_048,DOQQ_050,DOQQ_051,DOQQ_052,DOQQ_068,DOQQ_069,DOQQ_070 USGSdoq.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGSdoq.prettyName=USGS DOQ Color USGSdoq.projectionChangePolicy=pcp USGSdoq.removable=true USGSdoq.renderPolicy=rp USGSdoq.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGSdoq.styles= USGSdoq.transparent=TRUE USGSdoq.vendorspecificnames=reaspect USGSdoq.vendorspecificvalues=FALSE USGSdoq.wmsserver=http://gisdata.usgs.gov/servlet/com.esri.wms.Esrimap/USGS_EDC_Ortho_DOQQ USGSdoq.wmsversion=1.1.1 USGSdoq.min.scale=10000 USGSdoq.max.scale=2000000 USGSdoq.timeout=13000 # ### -USGSUrban- layer properties USGSUrban.addToBeanContext=true USGSUrban.autoPalette=false USGSUrban.background=false USGSUrban.backgroundcolor=0x000000 USGSUrban.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGSUrban.consumeEvents=false #USGSUrban.format=image/png USGSUrban.format=image/jpeg #Need a named layer USGSUrban.layers=SanBernardino_1.0ft_Color_Apr_2007 #USGSUrban.layers=Riverside-SanBernardino_0.65m_Color_Jan-Mar_2003,Riverside-SanBernardino_0.3m_Color_Dec_2003.SanBernardino_1.0ft_Color_Dec_2005,SanBernardino_1.0ft_Color_Apr_2007 #USGSUrban.layers=SanFrancisco-Oakland_0.3m_Color_Feb_2004,SanFrancisco-Monterey_0.5m_Color_Jun_2006,SanDiego_0.65m_Color_Mar_2003 USGSUrban.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGSUrban.prettyName=USGS Urban S. Bernardino USGSUrban.projectionChangePolicy=pcp USGSUrban.removable=true USGSUrban.renderPolicy=rp USGSUrban.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGSUrban.styles= USGSUrban.transparent=TRUE USGSUrban.vendorspecificnames=reaspect USGSUrban.vendorspecificvalues=FALSE USGSUrban.wmsserver=http://gisdata.usgs.gov/servlet/com.esri.wms.Esrimap/USGS_EDC_Ortho_Urban #USGSUrban.wmsserver=http://ims.cr.usgs.gov/servlet/com.esri.wms.Esrimap/USGS_EDC_Ortho_Urban USGSUrban.wmsversion=1.1.1 USGSUrban.min.scale=1000 USGSUrban.max.scale=1000000 USGSUrban.timeout=13000 ### end of -USGSUrban- properties # ### -USGSLocal- layer properties USGSLocal.addToBeanContext=true USGSLocal.autoPalette=false USGSLocal.background=false USGSLocal.backgroundcolor=0x000000 USGSLocal.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGSLocal.consumeEvents=false #USGSLocal.format=image/png USGSLocal.format=image/jpeg #Need a named layer USGSLocal.layers=CA_LosAngelesCounty_0.3048m_Color_Jan_2006_5,CA_LosAngelesCounty_0.3048m_Color_Jan_2006_4,CA_LosAngelesCounty_0.3048m_Color_Jan_2006_3,CA_LosAngelesCounty_0.3048m_Color_Jan_2006_2,CA_LosAngelesCounty_0.3048m_Color_Jan_2006_1 #USGSLocal.layers=CA_SanDiegoCounty_0.3048m_Color_Jan_2006_2,CA_SanDiegoCounty_0.3048m_Color_Jan_2006_1,CA_MexicoBorder_1.0m_Color_Jun_2005 USGSLocal.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGSLocal.prettyName=USGS Urban Los Angeles USGSLocal.projectionChangePolicy=pcp USGSLocal.removable=true USGSLocal.renderPolicy=rp USGSLocal.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGSLocal.styles= USGSLocal.transparent=TRUE USGSLocal.vendorspecificnames=reaspect USGSLocal.vendorspecificvalues=FALSE USGSLocal.wmsserver=http://gisdata.usgs.gov/servlet/com.esri.wms.Esrimap/USGS_EDC_Ortho_StateLocal USGSLocal.wmsversion=1.1.1 USGSLocal.min.scale=1000 USGSLocal.max.scale=1000000 USGSLocal.timeout=13000 ### end of -USGSLocal- properties # ### -USGS_DRG layer properties USGS_DRG.addToBeanContext=true USGS_DRG.autoPalette=false USGS_DRG.background=false USGS_DRG.backgroundcolor=0xffffff USGS_DRG.class=org.trinet.jiggle.map.JiggleWMSPlugIn USGS_DRG.consumeEvents=false USGS_DRG.format=image/png USGS_DRG.layers=DRG #USGS_DRG.layers=DRG_Z10_24,DRG_Z11_24 USGS_DRG.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy USGS_DRG.prettyName=USGS DRG USGS_DRG.projectionChangePolicy=pcp USGS_DRG.removable=true USGS_DRG.renderPolicy=rp USGS_DRG.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy USGS_DRG.styles= USGS_DRG.transparent=TRUE USGS_DRG.vendorspecificnames=reaspect USGS_DRG.vendorspecificvalues=FALSE USGS_DRG.wmsserver=http://orthoimage.er.usgs.gov/ogcmap.ashx #USGS_DRG.wmsserver=http://edcw2ks51.cr.usgs.gov:80/servlet/com.esri.wms.Esrimap/USGS_EDC_Ortho_DRG USGS_DRG.wmsversion=1.1.1 USGS_DRG.timeout=13000 ### end of -USGS_DRG - properties # TerraUrban.addToBeanContext=true TerraUrban.class=org.trinet.jiggle.map.JiggleWMSPlugIn TerraUrban.wmsserver=http://terraservice.net/ogcmap.ashx TerraUrban.wmsversion=1.1.1 TerraUrban.prettyName=Terra Urban TerraUrban.format=image/jpeg TerraUrban.background=false TerraUrban.backgroundcolor=0x000000 TerraUrban.transparent=FALSE TerraUrban.layers=UrbanArea TerraUrban.styles=GeoGrid_Cyan TerraUrban.vendorspecificnames= TerraUrban.vendorspecificvalues= TerraUrban.timeout=13000 # TerraTopo.addToBeanContext=true TerraTopo.class=org.trinet.jiggle.map.JiggleWMSPlugIn TerraTopo.wmsserver=http://terraservice.net/ogcmap.ashx TerraTopo.wmsversion=1.1.1 TerraTopo.prettyName=Terra Topo TerraTopo.format=image/jpeg TerraTopo.background=false TerraTopo.backgroundcolor=0x000000 TerraTopo.transparent=FALSE TerraTopo.layers=DRG TerraTopo.styles=GeoGrid_Cyan TerraTopo.vendorspecificnames= TerraTopo.vendorspecificvalues= TerraTopo.timout=5000 # TerraDOQ.addToBeanContext=true TerraDOQ.class=org.trinet.jiggle.map.JiggleWMSPlugIn TerraDOQ.wmsserver=http://terraservice.net/ogcmap.ashx TerraDOQ.wmsversion=1.1.1 TerraDOQ.prettyName=Terra DOQ TerraDOQ.format=image/jpeg TerraDOQ.background=false TerraDOQ.backgroundcolor=0x000000 TerraDOQ.transparent=FALSE TerraDOQ.layers=DOQ TerraDOQ.styles=GeoGrid_Cyan TerraDOQ.vendorspecificnames= TerraDOQ.vendorspecificvalues= TerraDOQ.timeout=13000 # ### -LandSatPseudo- layer properties LandSatPseudo.addToBeanContext=true LandSatPseudo.autoPalette=false LandSatPseudo.background=false LandSatPseudo.backgroundcolor=0xffffff LandSatPseudo.class=org.trinet.jiggle.map.JiggleWMSPlugIn LandSatPseudo.consumeEvents=false LandSatPseudo.format=image/png LandSatPseudo.layers=global_mosaic LandSatPseudo.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy LandSatPseudo.prettyName=JPL LandSat Pseudo LandSatPseudo.projectionChangePolicy=pcp LandSatPseudo.removable=true LandSatPseudo.renderPolicy=rp LandSatPseudo.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy LandSatPseudo.styles=pseudo LandSatPseudo.transparent=FALSE LandSatPseudo.vendorspecificnames= LandSatPseudo.vendorspecificvalues= #LandSatPseudo.wmsserver=http://wms.jpl.nasa.gov/wms.cgi LandSatPseudo.wmsserver=http://onearth.jpl.nasa.gov/wms.cgi LandSatPseudo.wmsversion=1.1.1 LandSatPseudo.min.scale=24000 LandSatPseudo.max.scale=40000000 LandSatPseudo.timeout=13000 #for Orthographic proj use below: #LandSatPseudo.srscrs=AUTO:42003 #else default to WGS84 LandSatPseudo.srscrs=EPSG:4326 ### end of -LandSatPseudo- properties ### -LandSatVisual- layer properties LandSatVisual.addToBeanContext=true LandSatVisual.autoPalette=false LandSatVisual.background=false LandSatVisual.backgroundcolor=0xffffff LandSatVisual.class=org.trinet.jiggle.map.JiggleWMSPlugIn LandSatVisual.consumeEvents=false LandSatVisual.format=image/png LandSatVisual.layers=global_mosaic LandSatVisual.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy LandSatVisual.prettyName=JPL LandSat Visual LandSatVisual.projectionChangePolicy=pcp LandSatVisual.removable=true LandSatVisual.renderPolicy=rp LandSatVisual.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy LandSatVisual.styles=visual LandSatVisual.transparent=FALSE LandSatVisual.vendorspecificnames= LandSatVisual.vendorspecificvalues= #LandSatVisual.wmsserver=http://wms.jpl.nasa.gov/wms.cgi LandSatVisual.wmsserver=http://onearth.jpl.nasa.gov/wms.cgi LandSatVisual.wmsversion=1.1.1 LandSatVisual.min.scale=24000 LandSatVisual.max.scale=40000000 LandSatVisual.timeout=13000 ### end of -LandSatVisual- properties ### -LandSatGray- layer properties LandSatGray.addToBeanContext=true LandSatGray.autoPalette=false LandSatGray.background=false LandSatGray.backgroundcolor=0xffffff LandSatGray.class=org.trinet.jiggle.map.JiggleWMSPlugIn LandSatGray.consumeEvents=false LandSatGray.format=image/png LandSatGray.layers=global_mosaic_base LandSatGray.pcp.class=com.bbn.openmap.layer.policy.ListResetPCPolicy LandSatGray.prettyName=JPL LandSat Gray LandSatGray.projectionChangePolicy=pcp LandSatGray.removable=true LandSatGray.renderPolicy=rp LandSatGray.rp.class=com.bbn.openmap.layer.policy.StandardRenderPolicy LandSatGray.styles=Pan LandSatGray.transparent=FALSE LandSatGray.vendorspecificnames= LandSatGray.vendorspecificvalues= #LandSatGray.wmsserver=http://wms.jpl.nasa.gov/wms.cgi LandSatGray.wmsserver=http://onearth.jpl.nasa.gov/wms.cgi LandSatGray.wmsversion=1.1.1 LandSatGray.min.scale=24000 LandSatGray.max.scale=40000000 LandSatGray.timeout=13000 ### end of -LandSatGray- properties