Gdal-python Library Read and write ESRI shape format

Source: Internet
Author: User

Gdal Library is divided into ogr simple element library and geospatial data Abstraction Library. The former is responsible for reading and writing vector data, the latter is responsible for processing raster data. installation

Download the Gdal library, which corresponds to the Python version and operating system, to install. After completing in the Python commond input: Import from OSGeo import Gdal, if not an error, just install correctly. support Format shapefiles, personal geodatabases, ArcSDE MapInfo, GRASS, MicroStation tiger/line, Sdts, GM KML MySQL, POSTG Resql, Oracle Spatial, Informix,odbc Read-Write step Import module Register driver open datasource get layer get feature. . Destroy feature destroy Layer destroy DataSource

From OSGeo import ogr driver = ogr. Getdriverbyname ("ESRI Shapefile") ds = Self.driver.CreateDataSource ("name.shp") layer = ds. Getlayer (0) f = layer. Getfeature (0) #and so on #destroy object

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.