粗暴日记本

文章
8
资源
0
加入时间
2年10月17天

【python】geoJson转换Shapefile

#!/usr/bin/env python# -*- coding: utf-8 -*-# @File : C.py# @Author: huifer# @Date : 2018/5/22 0022import gdalimport osrimport ogra = { "type": "FeatureCollection", "features": [ ...

python 装饰器 java,Python 内置装饰器

内置的装饰器内置的装饰器和普通的装饰器原理是一样的,只不过返回的不是函数,而是类对象,所以更难理解一些。@property在了解这个装饰器前,你需要知道在不使用装饰器怎么写一个属性。def getWidth(self):return self.__widthdef setWidth(self, newwidth):self.__width = newwidthwidth = property(ge...