GeoServer实现NetCDF气象文件自动发布

众所周知,GeoServer是一个地理服务器,提供了管理页面进行服务发布,样式,切片,图层预览等一系列操作,但是手动进行页面配置有时并不满足业务需求,所以GeoServer同时提供了丰富的rest接口可供用户自己组织业务逻辑进行自动化管理。
  本文以气象文件的NetCDF自动化发布的需求,阐述如何以rest接口实现用户多样性需求。气象文件特殊性在于几乎每隔一段时间就会更新,甚至逐小时或半小时的更新频率,用户如果手动发布了气象文件的若干图层作为专题服务,一旦获取到最新的气象文件,用户希望立马可以看到新的数据源上的专题图,而人工即时更新现有的图层服务几乎是不现实的,类似这种定时或者即时响应的需求应该交由自动化完成,本文实现NetCDF气象文件自动发布便是为了解决此类需求。

一 NetCDF插件安装

选择对应版本的下载地址:http://geoserver.org/release/2.11.0/

NetCDF插件.png

下载插件,解压,将jar文件全部复制到geoserver中的webapps\geoserver\WEB-INF\lib目录中,重启geoserver即可。

二 rest示例

2.1 发布nc文件数据存储

将E:\xxx.nc该文件发布成栅格数据存储,发布到cite工作区,数据存储名称为netcdfstore。

curl -v -u admin:geoserver -XPOST -H "Content-type: text/xml" -d "<coverageStore><name>netcdfstore</name><type>NetCDF</type><enabled>true</enabled><workspace><name>cite</name></workspace><__default>false</__default><url>file://E://xxx.nc</url></coverageStore>" http://localhost:8090/geoserver/rest/workspaces/cite/coveragestores/netcdfstore

注意路径格式是:file://E://xxx.nc,而不是file://E:\xxx.nc或file://E:\\xxx.nc,这应该是该插件的一个bug。

2.2 修改nc文件数据存储

将netcdfstore的数据存储位置由E:\xxx.nc指向D:\xxv.nc。

curl -v -u admin:geoserver -XPUT -H "Content-type: text/xml" -d "<coverageStore><name>netcdfstore</name><type>NetCDF</type><enabled>true</enabled><workspace><name>cite</name></workspace><__default>false</__default><url>file://D://xxc.nc</url></coverageStore>" http://localhost:8090/geoserver/rest/workspaces/cite/coveragestores/netcdfstore

2.3 发布栅格图层

将netcdfstore数据存储中的RH2图层发布

curl -v -u  admin:geoserver -XPOST -H "Content-type: text/xml" -d "<coverage><nativeCoverageName>RH2</nativeCoverageName><name>RH2</name></coverage>" http://localhost:8090/geoserver/rest/workspaces/cite/coveragestores/netcdfstore/coverages

2.4 绑定图层样式

将发布的RH2样式绑定已经发布的一个名称叫RH2Style的样式。

curl -v -u admin:geoserver -XPUT -H "Content-type: text/xml" -d "<layer><defaultStyle><name>RH2Style</name></defaultStyle></layer>" http://localhost:8090/geoserver/rest/layers/RH2

三 自动化发布

var child_process = require('child_process');
var async = require('async');
//构造一个netcdf管理类
function NetCDFManager(options){
    this.ip=options.ip;
    this.port=options.port;
    this._geoserverurl=`http://${this.ip}:${this.port}/geoserver/rest`;
    this.user=options.user;//geoserver的用户名密码
    this.password=options.password;
    this.layerlist=options.layerlist;
    this.ws=(options.ws!==undefined)?options.ws:'netcdf';//工作区间,默认是netcdf工作区间
    this.storename=(options.storename!==undefined)?options.storename:'netcdfstore';//netcdf数据存储名称,默认是netcdfstore
}
//根据名称获取栅格数据存储
NetCDFManager.prototype.getCoverageStorebyName=function(cb){
    let storename=this.storename;
    let url=this._geoserverurl+`/workspaces/${this.ws}/coveragestores/${storename}.json`;
    var cmd=`curl -v -u ${this.user}:${this.password} -XGET ${url}`;
    child_process.exec(cmd, function(err,stdout,stderr) {
        if(stdout.indexOf('No such')>-1){
            cb(false);
            return;
        }
        if(JSON.parse(stdout).coverageStore.name===storename)
            cb(true);
        else
            cb(false);
    });
}
//发布一个栅格数据存储
NetCDFManager.prototype.publishCoverageStore = function(netcdffile,cb){
    netcdffile=netcdffile.replace(/\\/g,'//');
    var xml=`<coverageStore><name>${this.storename}</name><type>NetCDF</type><enabled>true</enabled><workspace><name>${this.ws}</name></workspace><__default>false</__default><url>file://${netcdffile}</url></coverageStore>`;

    var cmd=`curl -v -u ${this.user}:${this.password} -XPOST -H "Content-type: text/xml" -d "${xml}" ${this._geoserverurl}/workspaces/${this.ws}/coveragestores`;
    child_process.exec(cmd, function(err,stdout,stderr) {
        if(stdout=='')
            cb(true);
        else
            cb(false);
    });
}
//修改已发布的数据存储
NetCDFManager.prototype.updateCoverageStore = function(netcdffile,cb){
    netcdffile=netcdffile.replace(/\\/g,'//');
    var xml=`<coverageStore><name>${this.storename}</name><type>NetCDF</type><enabled>true</enabled><workspace><name>${this.ws}</name></workspace><__default>false</__default><url>file://${netcdffile}</url></coverageStore>`;

    var cmd=`curl -v -u ${this.user}:${this.password} -XPUT -H "Content-type: text/xml" -d "${xml}" ${this._geoserverurl}/workspaces/${this.ws}/coveragestores/${this.storename}`;
    child_process.exec(cmd, function(err,stdout,stderr) {
        if(stdout=='')
            cb(true);
        else
            cb(false);
    });
    
}
//发布一个图层
NetCDFManager.prototype.publishCoverage = function(coverage_name,cb){
    let xml=`<coverage><nativeCoverageName>${coverage_name}</nativeCoverageName><name>${coverage_name}</name></coverage>`;
    let url=`${this._geoserverurl}/workspaces/${this.ws}/coveragestores/${this.storename}/coverages`;
    var cmd=`curl -v -u ${this.user}:${this.password} -XPOST -H "Content-type: text/xml" -d "${xml}" ${url}`;
    child_process.exec(cmd, function(err,stdout, stderr) {
        if(stdout=='')
            cb(true);
        else
            cb(false);
    });
}
//给发布的图层赋予样式
NetCDFManager.prototype.setLayerStyle = function(layername,stylename,cb){
    let xml=`<layer><defaultStyle><name>${stylename}</name></defaultStyle></layer>`;
    let url=`${this._geoserverurl}/layers/${layername}`;
    var cmd=`curl -v -u ${this.user}:${this.password} -XPUT -H "Content-type: text/xml" -d "${xml}" ${url}`;
    child_process.exec(cmd, function(err,stdout, stderr) {
        if(stdout=='')
            cb(true);
        else
            cb(false);
    });
}


/*
伪逻辑代码

1 根据数据存储名称,判定是否有该数据存储。没有,publishCoverageStore一个,接步骤2.有,updateCoverageStore即可,end!
2 publishCoverageStore发布数据存储后,将规定要发布的图层逐一发布publishCoverage,逐一赋予样式setLayerStyle
注意都是异步的,需要后台代码转同步,js中的async库负责处理异步陷阱,其他语言自行百度。

*/

var netCDFManager=new NetCDFManager({
    ip:'localhost',
    port:'8090',
    user:'admin',
    password:'geoserver',
    ws:'netcdf',
    storename:'netcdfstore',
    layerlist:['RH2','SKT','TP','V10','VIS']
});
function publish(ncfile) {
    async.waterfall([
            //查询是否已经存在命名为netcdfstore的数据存储
            function (done) {
                netCDFManager.getCoverageStorebyName(function (info) {
                    done(null, info);
                });
            },
            function (info, done) {
                //已存在数据存储,直接替换其数据源为新的nc文件
                if (info) {
                    console.log('指定的数据存储已存在,直接进行更新操作');
                    netCDFManager.updateCoverageStore(ncfile, function (info) {
                        if (info) {
                            console.log('数据存储已经更新成功!');
                            done(null, info);
                        } else {
                            console.log('数据存储已经更新失败!');
                            done(info, null);
                        }
                    });
                }
                //不存在数据存储,新发布
                else {
                    console.log('指定的数据存储不存在,发布数据存储');
                    publishNC(ncfile, done);
                }
            }
        ], function (error, result) {
        if (error)
            console.log('自动发布存在错误!');
        else
            console.log('自动发布完成!');
    })
}


function publishNC(ncfile,cb){
    async.waterfall([function (done) {
            netCDFManager.publishCoverageStore(ncfile,function(info){
                if(info)
                {
                    console.log('数据存储已经发布成功!');
                    done(null, info);
                }
                else{
                    console.log('数据存储已经发布失败!');
                    done(info, null);
                }
            });
        }, function (resule,done) {
            //发布图层
            publishLayers(netCDFManager.layerlist,done);
            
        },function (result,done) {
            //发布样式
            publishStyles(netCDFManager.layerlist,done);
            
        }],function (error, result) {
            if(error){
                console.log('自动发布存在错误!');
                cb(error,null);
            }
            else{
                console.log('自动发布完成!');
                cb(null,result);
            }
                
    })
}
//自动发布一些列图层
function publishLayers(layerlist,cb){
    let asyncs={};
    for(let i=0;i<layerlist.length;i++){
        asyncs[i]=function(done){
            let layername=layerlist[i];
            netCDFManager.publishCoverage(layername,function(info){
                if(info)
                {
                    console.log(`${layername}发布成功!`);
                    done(null, info);
                }
                else{
                    console.log(`${layername}发布失败!`);
                    done(info, null);
                }
            });
        }
    }
    async.parallel(asyncs, function (error, result) {
        if(error)
            cb(error,null);
        else
            cb(null,result);
    })
}


//修改指定图层为指定样式
function publishStyles(stylelist,cb){
    let asyncs={};
    for(let i=0;i<stylelist.length;i++){
        asyncs[i]=function(done){
            let layername=stylelist[i];
            netCDFManager.setLayerStyle(layername,layername,function(info){
                if(info)
                {
                    console.log(`${layername}样式发布成功!`);
                    done(null, info);
                }
                else{
                    console.log(`${layername}样式发布失败!`);
                    done(info, null);
                }
            });
        }
    }
    async.parallel(asyncs, function (error, result) {
        if(error)
            cb(error,null);
        else
            cb(null,result);
    })
}


publish('D:\\G_2017070419.nc');

执行node app.js后,

发布流程输出.png
发布结果.png
图层预览结果.png

perfect!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,594评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,421评论 25 707
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,567评论 18 399
  • 开始着力学习C语言基础已经有接近10天,今天预习了第7讲<复杂类型的确认>, 从指针内容开始复杂起来,知识点记的不...
    阿元阅读 141评论 0 0
  • 早就知道简书已经支持了markdown语法,今天特来实验一番。下面就是对常用到的markdown语法的总结,方便自...
    慕慕她爸阅读 186评论 0 2