wms服务器加载顺序

本文转自:蔡建良博客  http://www.cnblogs.com/janehlp/

world wind wms服务器缓存路径:
C:\ProgramData\Application Data\WorldWindData
read avList:
{gov.nasa.worldwind.avkey.FileStoreLocation=C:\Users\cjl\Application Data\WorldWindData, gov.nasa.worldwind.avkey.Installed=false}
write avList:
gov.nasa.worldwind.avkey.FileStoreLocation=C:\ProgramData\Application Data\WorldWindData
(1)wms数据查找线程:
gov.nasa.worldwind.servers.wms。WMSDataDiscoveryThread
(2)瓦片图层数据源:
public class WorldWindTiledLayerMapSource extends DataConfigurationMapSource
DataConfigurationMapSource:
this.name = this.params.getStringValue(AVKey.DATASET_NAME);
this.title = this.params.getStringValue(AVKey.DISPLAY_NAME);
this.keywords = this.params.getStringValue( AVKey.LAYER_NAMES );
String storePath = this.params.getStringValue( AVKey.DATA_CACHE_NAME );
this.lastUpdate = this.parseLastUpdate( this.params.getStringValue( AVKey.LAST_UPDATE ) );
this.lastUpdate = this.params.getValue( AVKey.EXPIRY_TIME ).toString();
(3)获取数据源:
 BasicMapSourceFactory
 MapSource ms;
        if (AVKey.SERVICE_NAME_LOCAL_RASTER_SERVER.equals(serviceName))
        {
            ms = new WorldWindTiledLayerMapSource(this.app.getDataFileStore(),
                    domElement, params, RasterServerBackedTiledLayer.class);
        }
        else
        {
            ms = new WorldWindTiledLayerMapSource(this.app.getDataFileStore(),
                    domElement, params, WorldWindTiledLayer.class);
        }
(4)数据源注册:
BasicMapRegistry:
 protected void doLayerAdded(WMSLayerEvent e)
    {
        Object source = e.getConfigurationSource();
        if (WWUtil.isEmpty(source))
        {
            String message = Logging.getMessage("nullValue.SourceIsNull");
            Logging.logger().severe(message);
            throw new WWRuntimeException(message);
        }
        if (this.dataConfigMapSources.containsKey(source))
        {
            String message = Logging.getMessage("generic.DuplicateLayerFound", source);
            Logging.logger().severe(message);
            throw new WWRuntimeException(message);
        }
        MapSource mapSource = this.createDataConfigurationMapSource(e);
        if (null == mapSource)
        {
            String message = Logging.getMessage("generic.UnrecognizedSourceType", source);
            Logging.logger().severe(message);
            throw new WWRuntimeException(message);
        }
        this.add(mapSource);
        this.dataConfigMapSources.put(e.getConfigurationSource(), mapSource);
        Logging.logger().info(Logging.getMessage("generic.LayerAdded", source));
    }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值