博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
geoserver使用curl发布 imagemosaic(转载)
阅读量:6700 次
发布时间:2019-06-25

本文共 1104 字,大约阅读时间需要 3 分钟。

转自https://www.cnblogs.com/wang985850293/p/5880971.html

g

 

 

1、//create workspace
    curl -v -u admin:geoserver -XPOST -H "Content-type: text/xml" -d "<workspace><name>toby</name></workspace>" 
 
2、//create single image layer
    curl -u admin:geoserver -XPUT -H "Content-type:image/tiff" --data-binary @/data/ndvi_color1.tif 
 
My data is local to the geoserver (ubuntu) in /data directory.
 
3、Now I have multiple images in /data/mosaic that I want to add to a mosaic layer.. 

curl -v -u admin:geoserver -XPUT -H "Content-type: text/plain" -d "file:/data/mosaic" ""

--------------------如果要发布imagepyramid,

 

 

1、//create workspace
    curl -v -u admin:geoserver -XPOST -H "Content-type: text/xml" -d "<workspace><name>toby</name></workspace>" 
2、//use gdal to retitle geotiff    使用gdal对8 bit的geotiff进行切片
  
gdal_retile.py -v -r bilinear -levels 4 -ps 2048 2048 -co "TILED=YES" -co "COMPRESS=JPEG" -targetDir bmpyramid bmreduced.tiff 3、

curl -v -u admin:geoserver -XPUT -H "Content-type: text/plain" -d "file:/data/bmpyramid 

" " http://localhost:8090/geoserver/rest/workspaces/toby/coveragestores/poly-incremental/external.imagepyramid"

你可能感兴趣的文章
FIREDAC直连ORACLE数据库
查看>>
Gac代码库分析(3)智能指针
查看>>
【转】MFC 字体LOGFONT
查看>>
iOS 图片填充 UIImageView
查看>>
Android 动态加载 (一) 态加载机制 案例一
查看>>
口唇口腔紅肿案
查看>>
ZeroMQ接口函数之 :zmq_ctx_get - 得到环境上下文的属性
查看>>
PyTorch为何如此高效好用?
查看>>
学习ASP.NET Core Razor 编程系列十八——并发解决方案
查看>>
【转】 Android BCM4330 蓝牙BT驱动调试记录
查看>>
NHibernate自定义集合类型(上):基本实现方式
查看>>
Microsoft Build 2016 Day 2 记录(多图慎入)
查看>>
JSON的理解
查看>>
LeetCode: Binary Tree Maximum Path Sum
查看>>
1.平凡之路-ORM概述
查看>>
开源情报订阅OpenTaxii+mysql+nginx 配置教程
查看>>
关于css命名的一点思考,探讨一下css命名空间的可行性
查看>>
如何选取Linux容器镜像
查看>>
自己实现MVVM(Vue源码解析)
查看>>
从有到优:百度前端接入技术的升级之路
查看>>