json文件修改-解决:TypeError: Object of type Series is not JSON serializable

问题描述

在导入Python json包,调用json.dump/dumps函数时,可能会遇到TypeError: Object of type Series is not JSON serializable错误,也就是无法序列化某些对象格式。

**

解决办法

**
自定义序列化方法

import time
import numpy as np
class MyEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, np.integer):
            return int(obj)
        elif isinstance(obj, np.floating):
            return float(obj)
        elif isinstance(obj, np.ndarray):
            return obj.tolist()

然后在调用json.dump/dumps时,指定使用自定义序列化方法

file_out=open('test5.geojson', "w")
file_out.write(json.dumps(dic, cls=MyEncoder))
上一篇:python - 常用函数(2)


下一篇:Java中类型判断的几种方式