{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

GDAL源码剖析与开发指南

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

GDAL源码剖析与开发指南

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

GDAL(Geospatial Data Abstraction Library)是一个在X/MIT许可协议下的开源栅格空间数据转换库。由于GDAL库支持很多的数据格式,目前几乎所有的GIS和RS软件底层都使用GDAL来读写空间数据。
《GDAL源码剖析与开发指南》是基于GDAL源码剖析的编程开发指南,共9章,分为三部分。第一部分是前5章,介绍了GDAL的基本功能,包括GDAL简介、ORG库、GDAL库以及GDAL的数据格式和配置项等;第二部分是第6章到第8章,是GDAL的高级使用说明,包括GDAL格式扩展、GDAL算法和CPL库;第三部分是第9章,介绍GDAL工具的使用。
《GDAL源码剖析与开发指南》适合地理信息系统和遥感等相关专业应用的开发人员阅读参考。本书中大部分的示例代码都是使用C/C++语言编写,有一定C/C++语言基础的读者能够快速上手开发相关应用。
Catalogue

目录

第1章GDAL简介1
1.1什么是GDAL1
1.2GDAL特点1
1.3GDAL支持的数据格式2
1.4GDAL源码下载13
1.5GDAL源码目录14
1.5.1文件夹说明15
1.5.2文件说明17
1.6GDAL编译18
1.6.1常规编译18
1.6.2自定义编译20
1.6.3编译其他方面24
1.7SWIG编译26
1.7.1SWIG简介26
1.7.2编译C#版本GDAL26
1.7.3编译Python版本GDAL27
1.7.4编译Java版本GDAL28
1.8GDAL帮助文档生成29
1.8.1Doxygen简介29
1.8.2生成GDAL开发帮助文档30
1.9简单的调用31
1.9.1C++使用GDAL31
1.9.2C#使用GDAL34
1.9.3Python使用GDAL37
1.9.4Java使用GDAL39
1.9.5调试GDAL源代码41

第2章OGR空间参考42
2.1空间参考简介42
2.1.1大地水准面43
2.1.2地球椭球体43
2.1.3基准面44
2.1.4地图投影45
2.2OGR空间参考46
2.2.1OGR空间参考简介46
2.2.2OGR空间参考说明47
2.3OGR空间参考坐标转换52
2.4OGR空间参考类说明53
2.4.1OGRSpatialReference类54
2.4.2OGRCoordinateTransformation类66
2.5OGR空间参考使用示例69
2.5.1C++使用69
2.5.2C#使用71
2.5.3Python使用73
2.5.4Java使用75

第3章OGR库说明78
3.1OGR体系结构78
3.1.1Geometry(几何对象)79
3.1.2Spatial Reference(空间参考)79
3.1.3Feature/Feature Definition(要素/要素定义)80
3.1.4Layer(图层)80
3.1.5Data Source(数据源)81
3.1.6Drivers(格式驱动)81
3.2OGR常用类说明82
3.2.1OGRSFDriver类说明82
3.2.2OGRSFDriverRegistrar类说明85
3.2.3OGRDataSource类说明89
3.2.4OGRLayer类说明97
3.2.5OGRGeometry相关类说明121
3.2.6OGRFieldDefn类说明158
3.2.7OGRFeatureDefn类说明163
3.2.8OGRFeature类说明168
3.2.9其他说明180
3.3SQL说明182
3.3.1SELECT子句183
3.3.2WHERE子句186
3.3.3ORDER BY子句188
3.3.4JOIN子句188
3.3.5UNION ALL子句190
3.3.6特殊字段190
3.3.7索引与表191
3.3.8ExecuteSQL()193
3.3.9Non-OGR SQL193
3.4OGR使用示例193
3.4.1C++使用195
3.4.2C#使用202
3.4.3Python使用209
3.4.4Java使用214

第4章GDAL库说明221
4.1GDAL数据集总体概况221
4.1.1数据集(Dataset)221
4.1.2坐标系统(Coordinate System)221
4.1.3元数据(Metadata)223
4.1.4子数据集域(Subdatasets Domain)225
4.1.5图像结构域(Image_Structure Domain)225
4.1.6RPC域(RPC Domain)226
4.1.7XML域(XML:Domains)228
4.1.8栅格波段(Raster Band)228
4.1.9颜色表(Color Table)230
4.1.10快视图(Overviews)230
4.2GDAL常用类说明231
4.2.1GDALDriverManager类说明231
4.2.2GDALDriver类说明234
4.2.3GDALDataset类说明237
4.2.4GDALRasterBand类说明243
4.3GDAL元数据说明258
4.4RasterIO使用说明260
4.5图像金字塔269
4.6颜色表说明273
4.7图像统计信息说明276
4.7.1直方图统计277
4.7.2极值计算278
4.7.3均值标准差计算279
4.8GDAL库使用示例280
4.8.1C++使用282
4.8.2C#使用286
4.8.3Python使用289
4.8.4Java使用293

第5章GDAL数据格式及配置项说明298
5.1常用图像格式使用说明298
5.1.1GeoTIFF格式298
5.1.2Erdas Imagine格式299
5.1.3PCI的PIX格式302
5.1.4ENVI的HDR格式302
5.1.5JPEG,PNG图像使用说明303
5.1.6MEM文件使用说明304
5.2GDAL对于HDF、NetCDF数据集读取305
5.2.1HDF格式使用说明305
5.2.2NetCDF格式使用说明310
5.3VRT文件格式说明315
5.3.1VRT格式说明316
5.3.2VRTRasterBand317
5.3.3VRT使用说明322
5.3.4编程创建VRT文件324
5.4网络WMS数据使用说明327
5.5GDAL配置选项说明333
5.5.1设置配置选项334
5.5.2通用选项335
5.5.3GDAL库选项337
5.5.4GeoTiff格式选项340
5.5.5GDAL/OGR网络选项341
5.5.6OGR库选项342

第6章GDAL格式扩展说明347
6.1栅格格式扩展347
6.1.1从Dataset继承348
6.1.2从RasterBand继承352
6.1.3栅格驱动(Driver)355
6.1.4添加驱动到GDAL库356
6.1.5添加地理参考信息357
6.1.6金字塔(快视图)358
6.1.7创建文件359
6.1.8RawDataset和RawRasterBand类366
6.1.9元数据和其他外部扩展366
6.2矢量格式扩展367
6.2.1实现OGRSFDriver类368
6.2.2从数据源中读取数据369
6.2.3读取图层372
6.3裸数据格式扩展375

第7章GDAL算法使用说明379
7.1GDAL算法处理基础381
7.1.1GDAL大图像处理策略381
7.1.2GDAL中进度信息说明385
7.2GDALWarp说明396
7.2.1GDALWarpOptions397
7.2.2GDALWarpOperation403
7.2.3GDALWarpAPI使用说明406
7.3图像重采样412
7.3.1使用RasterIO重采样413
7.3.2使用GDALWarp重采样415
7.4图像裁切418
7.4.1使用RasterIO裁切418
7.4.2使用GDALWarp裁切421
7.5图像镶嵌424
7.6GDALWarp坐标转换433
7.6.1GDALWarp坐标转换相关函数说明433
7.6.2GDALWarp坐标转换流程435
7.7图像重投影439
7.8图像校正445
7.8.1几何多项式校正(1~3次)447
7.8.2TPS校正453
7.8.3RPC校正458
7.8.4GeoLoc校正464
7.9图像坐标转换通用接口469
7.103*3空间卷积运算473
7.11DEM地形分析483
7.11.1坡度坡向分析483
7.11.2地形指数488
7.11.3山体阴影490
7.11.4彩色渲染495
7.11.5立体彩色渲染512
7.12格网插值513
7.12.1计算数据指标516
7.12.2离散点数据插值517
7.12.3离散点数据插值示例519
7.13小碎斑去除523
7.14矢量栅格化527
7.15栅格矢量化532
7.16生成等高线536

第8章CPL库介绍541
8.1cpl_port.h541
8.1.1数据类型定义541
8.1.2常量和函数定义542
8.1.3LSB和MSB相互转换543
8.2cpl_error.h544
8.2.1常用的错误代码544
8.2.2错误处理函数545
8.3cpl_conv.h548
8.3.1GDAL库配置项读写548
8.3.2内存管理相关549
8.3.3文本文件读取相关550
8.3.4字符串与其他数据类型相关转换551
8.3.5应用程序与动态库相关554
8.3.6文件系统以及路径相关555
8.3.7度、分、秒与十进制度转换558
8.3.8ZIP压缩文件读写559
8.4cpl_http.h561
8.5cpl_minixml.h565

第9章GDAL工具使用说明575
9.1GDAL工具通用参数说明575
9.1.1通用命令行选项575
9.1.2创建文件通用选项578
9.2Exe工具使用说明580
9.2.1gdalinfo581
9.2.2gdal_translate582
9.2.3gdaladdo584
9.2.4gdalwarp585
9.2.5gdaltindex587
9.2.6gdalbuildvrt588
9.2.7gdal_contour589
9.2.8gdaldem590
9.2.9gdal_rasterize593
9.2.10gdaltransform594
9.2.11nearblack595
9.2.12gdal_grid596
9.2.13gdallocationinfo599
9.2.14gdalsrsinfo600
9.2.15gdal-config602
9.2.16gdalmanage602
9.2.17ogrinfo604
9.2.18ogr2ogr606
9.2.19ogrtindex608
9.3Python脚本工具使用说明609
9.3.1rgb2pct.py610
9.3.2pct2rgb.py611
9.3.3gdal_merge.py611
9.3.4gdal2tiles.py613
9.3.5gdal_retile.py615
9.3.6gdal_proximity.py616
9.3.7gdal_polygonize.py618
9.3.8gdal_sieve.py619
9.3.9gdal_fillnodata.py620
9.3.10gdalmove.py621
9.3.11gdal_edit.py621

附录623

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book