Api session event editor netline insert point: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:


{|class=wikitable
{|class=wikitable
!Name
!Index
!Importance
!Importance
!Type
!Type
Line 10: Line 10:
!Values
!Values
|-
|-
|0
| 0
|REQUIRED
| REQUIRED
|(NET_LINE Integer ID)
| (NET_LINE Integer ID)
|[[Net Line]] ID
| [[Net Line]] ID
|
|  
|-
|-
|1
| 1
|REQUIRED
| REQUIRED
|(Point 3D with crs: EPSG:3857)
| (Point 3D with crs: EPSG:3857)
|Inserted Node [[#Api Model Point|Point]]
| Inserted Node [[Point]]
|
|  
|-
|-
|2
| 2
|OPTIONAL
| OPTIONAL
|(Floating point number)
| (Floating point number)
|Node merge distance (optional, default: 1.0m)
| Node merge distance (optional, default: 1.0m)
|
|  
|}
|}
===Response Codes===
===Response Codes===
Line 33: Line 33:
!Description
!Description
|-
|-
|204
| 204
|No Content
| No Content
|-
|-
|300-600
| 300-600
|Codes Overview
| Codes Overview
|}
|}
===Example POST===
===Example POST===
Curl example POST:
Curl example POST
 
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
[ 1, {
  "type" : "Point",
  "type" : "Point",
  "coordinates" : [ 658714.8795493732, 6799372.057866874, -0.05 ]
  "coordinates" : [ 658643.7537574153, 6799373.746949842, -0.47 ]
} ]
} ]
'
'
</syntaxhighlight>
</syntaxhighlight>
Curl example multi item POST:
Curl example multi item POST
 
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
[ 1, {
  "type" : "Point",
  "type" : "Point",
  "coordinates" : [ 658680.5453123493, 6799364.0460964115, -0.71 ]
  "coordinates" : [ 658751.2861840529, 6799364.724977117, -1.23 ]
} ]
} ]
'
'
</syntaxhighlight>
</syntaxhighlight>
JavaScript example POST:
JavaScript example POST
 
<syntaxhighlight lang="text" copy>var options = {
<syntaxhighlight lang="text" copy>var options = {
 method: "POST",
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 body: '[ 1, { "type" : "Point", "coordinates" : [ 658714.8795493732, 6799372.057866874, -0.05 ]} ]'
 body: '[ 1, { "type" : "Point", "coordinates" : [ 658643.7537574153, 6799373.746949842, -0.47 ]} ]'
};
};
fetch("https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857", options)
fetch("https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857", options)

Latest revision as of 13:01, 19 June 2026

API Endpoint: api/session/event/editornetline/insert_point/

Description: Insert a new Node in an existing Net Line, potentially splitting the Net Line into two parts. Also specify at what distance the new Nodes are merged with existing Nodes.

Index Importance Type Description Values
0 REQUIRED (NET_LINE Integer ID) Net Line ID
1 REQUIRED (Point 3D with crs: EPSG:3857) Inserted Node Point
2 OPTIONAL (Floating point number) Node merge distance (optional, default: 1.0m)

Response Codes

Response Code: Description
204 No Content
300-600 Codes Overview

Example POST

Curl example POST

curl 'https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
 "type" : "Point",
 "coordinates" : [ 658643.7537574153, 6799373.746949842, -0.47 ]
} ]
'

Curl example multi item POST

curl 'https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
 "type" : "Point",
 "coordinates" : [ 658751.2861840529, 6799364.724977117, -1.23 ]
} ]
'

JavaScript example POST

var options = {
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 body: '[ 1, { "type" : "Point", "coordinates" : [ 658643.7537574153, 6799373.746949842, -0.47 ]} ]'
};
fetch("https://engine.tygron.com/api/session/event/editornetline/insert_point/?crs=3857", options)
 .then(response => response.text())
 .then(result => console.log(result))
 .catch(error => console.log('error', error));