pyshp创建shp点文件的方法

作者:bradzhou 时间:2023-06-30 03:15:29 

如下所示:


# coding:utf-8
import shapefile

w = shapefile.Writer()
w.autoBalance = 1
w = shapefile.Writer(shapefile.POINT)
w.field('x', 'C')
w.field('y', 'C', '40')
w.field('v', 'C', '40')

# with open('data')as f0:
#  for line in f0:
#   line = line.strip()
#   line = line.split(',')
#   w.point(line[0], line[1], line[2])
#   w.record(line[0], line[1], line[2])

w.point(116, 6, 6)
w.record(116, 6, 6)

w.save('shapefiles/test/point')

来源:https://blog.csdn.net/bradzhou/article/details/78846463

标签:pyshp,shp
0
投稿

猜你喜欢

  • Python连接es之es更新操作示例详解

    2022-11-21 06:11:48
  • FrontPage XP设计教程3——网页的布局

    2008-10-11 12:20:00
  • python 爬取古诗文存入mysql数据库的方法

    2024-01-28 13:35:26
  • js获取浏览器高度 窗口高度 元素尺寸 偏移属性的方法

    2024-04-16 08:55:16
  • InnoDB的关键特性-插入缓存,两次写,自适应hash索引详解

    2024-01-18 01:28:23
  • javascript 继承实现方法

    2024-04-19 11:04:12
  • Django框架反向解析操作详解

    2023-12-31 03:06:49
  • 简单介绍一下pyinstaller打包以及安全性的实现

    2021-07-23 15:34:56
  • Python用二分法求平方根的案例

    2021-09-27 10:05:01
  • 使用Dreamweaver代码片断提高css开发效率

    2007-10-28 15:46:00
  • vue+AI智能机器人回复功能实现

    2024-04-27 15:49:14
  • PHP下常用正则表达式整理

    2023-11-18 03:04:48
  • Python第三方库的安装方法总结

    2022-09-23 12:14:46
  • python实现手机通讯录搜索功能

    2023-11-04 08:04:08
  • 基于Python获取亚马逊的评论信息的处理

    2021-02-11 16:25:14
  • python 实现以相同规律打乱多组数据

    2021-09-21 14:28:18
  • python regex库实例用法总结

    2023-11-02 12:17:27
  • Pandas索引排序 df.sort_index()的实现

    2023-02-13 23:49:48
  • python合并已经存在的sheet数据到新sheet的方法

    2023-07-25 18:05:51
  • Python中使用PyHook监听鼠标和键盘事件实例

    2022-03-23 16:53:22
  • asp之家 网络编程 m.aspxhome.com