We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f8bb8e commit 018c7f8Copy full SHA for 018c7f8
docs/en/usage.rst
@@ -273,6 +273,22 @@ OGC API - Records - Part 1: Core 1.0
273
>>> my_catalogue_cql_json_query['features'][0]['properties']['title']
274
u'Roadrunner ambush locations'
275
276
+ >>> import json
277
+
278
+ >>> record_data = 'sample-geojson-record.json'
279
280
+ >>> with open(record_data) as fh:
281
+ .. data = json.load(fh)
282
283
+ >>> identifier = data['id']
284
285
+ >>> w.collection_item_create('my-catalogue', data)
286
287
+ >>> w.collection_item_update('my-catalogue', identifier, data)
288
289
+ >>> w.collection_item_delete('my-catalogue', identifier)
290
291
292
293
OGC API - Features - Part 4: Create, Replace, Update and Delete
294
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments