Добавить функцию в существующий шейп-файл

Используя python, я пытаюсь открыть шейп-файл, добавить функцию и сохранить ее. Я думаю, что это неправильно при создании объекта в слое, потому что функция возвращает 6 (а 0 означает, что ошибок нет, я думаю). Мой код:

# -*- coding: utf-8 -*-
from osgeo import ogr
import os

''' Add feature '''
driver = ogr.GetDriverByName('ESRI Shapefile')
data_source = driver.Open(src, 0)
in_layer = data_source.GetLayer()

# create the feature
feature = ogr.Feature(in_layer.GetLayerDefn())
feature_properties = {'INDEX_NO': 39470.0,
                  'REGION_NO': 39330.0,
                  'NAME': 'VOLTRI',
                  'COUNTRY': 'IT',
                  'LATITUDE': 44.421,
                  'LONGITUDE': 8.784,
                  etc.}

for k, v in feature_properties.items():
    # Set the attributes using the values from the dictionary
    feature.SetField(k, v)

# create the WKT for the feature using Python string formatting
wkt = "POINT(%f %f)" %  (float(feature_properties['LONGITUDE']) , float(feature_properties['LATITUDE']))

# Create the point from the Well Known Txt
point = ogr.CreateGeometryFromWkt(wkt)

# Set the feature geometry using the point
feature.SetGeometry(point)
feature.SetFID(in_layer.GetFeatureCount())

# Create the feature in the layer (shapefile)
print(in_layer.CreateFeature(feature)) # prints 6, I would expect 0

# Dereference the feature
feature.Destroy()

# Save and close the data source
data_source = None

Я скопировал свойства из другого объекта в слое и изменил только координаты и имя.

Помощь будет очень признательна, так как мне трудно найти хорошую документацию для GDAL/OGR для python.

1 ответ

Нашел ответ, это была проблема с открытием файла для чтения. Из этого ресурса я обнаружил, что 0 означает чтение, 1 - запись: https://pcjericks.github.io/py-gdalogr-cookbook/vector_layers.html

data_source = driver.Open(src, 0) # for reading
data_source = driver.Open(src, 1) # for writing
Другие вопросы по тегам