# Removing \_msgid from object

**URL:** https://discourse.nodered.org/t/removing-msgid-from-object/35959
**Category:** General
**Created:** [15 November 2020 15:55 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959 "2020-11-15T15:55:26Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![bachloo.rahul](https://avatars.discourse-cdn.com/v4/letter/b/779978/32.png) [@bachloo.rahul](https://discourse.nodered.org/u/bachloo.rahul)
#### Post date: [15 November 2020 15:55 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/1 "2020-11-15T15:55:26Z")

</div>

![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/6/6/66fbfb86bbb943d468822e2de889f60ef4615b9b.png)

---

<div class="post-metadata">

### Author: ![Steve-Mcl](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/steve-mcl/32/4826_2.png) [@Steve-Mcl](https://discourse.nodered.org/u/Steve-Mcl)
#### Post date: [15 November 2020 16:23 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/2 "2020-11-15T16:23:32Z")

</div>

Why do you want to remove it?

---

<div class="post-metadata">

### Author: ![bachloo.rahul](https://avatars.discourse-cdn.com/v4/letter/b/779978/32.png) [@bachloo.rahul](https://discourse.nodered.org/u/bachloo.rahul)
#### Post date: [15 November 2020 16:26 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/3 "2020-11-15T16:26:24Z")

</div>

by removing it i will be able to plot latitude and longitude on worldmap.

---

<div class="post-metadata">

### Author: ![Colin](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/colin/32/17040_2.png) [@Colin](https://discourse.nodered.org/u/Colin)
#### Post date: [15 November 2020 16:27 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/4 "2020-11-15T16:27:08Z")

</div>

Having it there will not affect the worldmap node.

---

<div class="post-metadata">

### Author: ![bachloo.rahul](https://avatars.discourse-cdn.com/v4/letter/b/779978/32.png) [@bachloo.rahul](https://discourse.nodered.org/u/bachloo.rahul)
#### Post date: [16 November 2020 12:34 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/5 "2020-11-16T12:34:44Z")

</div>

so by not removing \_msgid also still i am not able to see coordinates on worldmap.

```auto
[{"id":"b2c925db.9b5638","type":"tab","label":"Flow 2","disabled":false,"info":""},{"id":"ac27147f.1ecc58","type":"buffer-parser","z":"b2c925db.9b5638","name":"Bulid Tags","data":"payload","dataType":"msg","specification":"spec","specificationType":"ui","items":[{"type":"byte","name":"lat","offset":6,"length":3,"offsetbit":0,"scale":1,"mask":""},{"type":"byte","name":"lon","offset":9,"length":3,"offsetbit":0,"scale":1,"mask":""}],"swap1":"","swap2":"","swap3":"","swap1Type":"swap","swap2Type":"swap","swap3Type":"swap","msgProperty":"payload","msgPropertyType":"","resultType":"keyvalue","resultTypeType":"output","multipleResult":false,"setTopic":true,"x":350,"y":160,"wires":[["12b41419.a1a1ac"]]},{"id":"12b41419.a1a1ac","type":"function","z":"b2c925db.9b5638","name":"","func":"var lat = (msg.payload.lat[0] << 24) + (msg.payload.lat[1] << 16) + (msg.payload.lat[2] << 8) \nvar lon = (msg.payload.lon[0] << 24) + (msg.payload.lon[1] << 16) + (msg.payload.lon[2] << 8) \n\nif (lat > 0x7FFFFFFF) { // 0x7FFFFFFF not 0x7FFFFFF\n lat -= 0x100000000;\n}\n// else << DONT DO IF ELSE HERE!\nif (lon > 0x7FFFFFFF) { // 0x7FFFFFFF not 0x7FFFFFF\n lon -= 0x100000000;\n}\n\nlat /= 10000000; //outside of the IF\nlon /= 10000000; //outside of the IF \n\nmsg.payload.lat=latitude\nmsg.payload.lon=longitude\n \nmsg.origPayload = {\n latitude: latitude,\n longitude: longitude\n}\n\nreturn msg.origPayload;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":540,"y":140,"wires":[["9f22db87.639b78"]]},{"id":"aa3e4429.aff7b8","type":"debug","z":"b2c925db.9b5638","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":730,"y":120,"wires":[]},{"id":"e857e2a1.d3861","type":"mqtt in","z":"b2c925db.9b5638","name":"","topic":"bachloo.rahul@gmail.com/test","qos":"0","datatype":"json","broker":"55bef158.86a7c","x":160,"y":40,"wires":[["cfcd456a.191e58"]]},{"id":"936eefa2.7b615","type":"base64","z":"b2c925db.9b5638","name":"","action":"","property":"payload","x":440,"y":80,"wires":[["ac27147f.1ecc58"]]},{"id":"cfcd456a.191e58","type":"function","z":"b2c925db.9b5638","name":"","func":"var t=msg.payload;\nmsg.payload=t.data;\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":280,"y":100,"wires":[["936eefa2.7b615"]]},{"id":"9f22db87.639b78","type":"change","z":"b2c925db.9b5638","name":"set name","rules":[{"t":"set","p":"name","pt":"msg","to":"apple","tot":"str"},{"t":"set","p":"icon","pt":"msg","to":"fa-truck","tot":"str"},{"t":"set","p":"layer","pt":"msg","to":"markers","tot":"str"},{"t":"delete","p":"_msgid","pt":"msg"},{"t":"delete","p":"lat","pt":"msg"},{"t":"delete","p":"lon","pt":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":560,"y":240,"wires":[["aa3e4429.aff7b8","16b1288d.a68b37"]]},{"id":"16b1288d.a68b37","type":"worldmap-tracks","z":"b2c925db.9b5638","name":"GPS Tracks","depth":"20","layer":"combined","x":570,"y":300,"wires":[["95f1a239.2e3a5"]]},{"id":"95f1a239.2e3a5","type":"worldmap","z":"b2c925db.9b5638","name":"","lat":"","lon":"","zoom":"10","layer":"OSM","cluster":"","maxage":"","usermenu":"show","layers":"show","panit":"true","panlock":"false","zoomlock":"false","hiderightclick":"false","coords":"none","showgrid":"false","path":"/worldmap","x":700,"y":360,"wires":[]},{"id":"55bef158.86a7c","type":"mqtt-broker","name":"","broker":"maqiatto.com","port":"1883","clientid":"","usetls":false,"compatmode":false,"keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","closeTopic":"","closeQos":"0","closePayload":"","willTopic":"","willQos":"0","willPayload":""}]

```

---

<div class="post-metadata">

### Author: ![Steve-Mcl](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/steve-mcl/32/4826_2.png) [@Steve-Mcl](https://discourse.nodered.org/u/Steve-Mcl)
#### Post date: [16 November 2020 12:38 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/6 "2020-11-16T12:38:25Z")

</div>

To repeat what @Colin said

> [@Colin](#):
>
> Having it there will not affect the worldmap node

...the presence of `_msgid` in the `msg` object has nothing to do with seeing or not "seeing coordinates on worldmap".

I suggest you either rename this thread OR start a new thread with the title "not seeing coordinates on worldmap" so that the right people with worldmap experience read the thread.

---

<div class="post-metadata">

### Author: ![bachloo.rahul](https://avatars.discourse-cdn.com/v4/letter/b/779978/32.png) [@bachloo.rahul](https://discourse.nodered.org/u/bachloo.rahul)
#### Post date: [16 November 2020 12:39 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/7 "2020-11-16T12:39:54Z")

</div>

yes @steve sure i will create new a thread definately. 😊

---

<div class="post-metadata">

### Author: ![Steve-Mcl](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/steve-mcl/32/4826_2.png) [@Steve-Mcl](https://discourse.nodered.org/u/Steve-Mcl)
#### Post date: [16 November 2020 12:40 UTC](https://discourse.nodered.org/t/removing-msgid-from-object/35959/8 "2020-11-16T12:40:44Z")

</div>


