当前位置: 首页 > news >正文

wordpress建哪些网站电子技术培训机构

wordpress建哪些网站,电子技术培训机构,做公司 网站建设,怎么用织梦做网站后台引言 1. GPS Geofencing Events 节点简介 2. 节点配置 3. 使用场景 3.1 物流跟踪 3.2 资产管理 3.3 安全监控 3.4 农业监测 4. 实际项目中的应用 4.1 项目背景 4.2 项目需求 4.3 实现步骤 5. 总结 引言 GPS Geofencing Events 是 ThingsBoard 规则链中的一个重要节…

引言

1. GPS Geofencing Events 节点简介

2. 节点配置

3. 使用场景

3.1 物流跟踪

3.2 资产管理

3.3 安全监控

3.4 农业监测

4. 实际项目中的应用

4.1 项目背景

4.2 项目需求

4.3 实现步骤

5. 总结


引言

GPS Geofencing Events 是 ThingsBoard 规则链中的一个重要节点,用于处理基于地理位置的事件。通过这个节点,可以定义地理围栏(Geofence),并检测设备是否进入或离开这些围栏区域。

ThingsBoard从入门到实战课程,深入透析底层原理,快速搭建自己的IOT平台_哔哩哔哩_bilibiliThingsBoard从入门到实战课程,深入透析底层原理,快速搭建自己的IOT平台共计33条视频,包括:1、ThingsBoard项目介绍、2、ThingsBoard前端Vue版本代码编译、3、ThingsBoard本地后端源码编译等,UP主更多精彩视频,请关注UP账号。icon-default.png?t=O83Ahttps://www.bilibili.com/video/BV1CH36egEDM/?spm_id_from=333.999.0.0 

1. GPS Geofencing Events 节点简介

GPS Geofencing Events 节点的主要作用是根据设备的位置数据,判断设备是否进入或离开预定义的地理围栏区域,并触发相应的事件。这种功能在物流跟踪、资产管理、安全监控等领域非常有用。

2. 节点配置
  • Geofences:定义一个或多个地理围栏区域。每个地理围栏由一个名称和一组多边形坐标组成。
  • Event Types:选择需要触发的事件类型,如 ENTER 和 LEAVE
  • Device ID or Device Attribute:指定用于获取设备位置信息的设备ID或设备属性。
  • Output Metadata:设置输出消息的元数据,以便后续节点使用。
3. 使用场景

GPS Geofencing Events 节点在多种场景下都非常有用,特别是在需要基于地理位置进行监控和管理时。以下是一些具体的应用场景:

3.1 物流跟踪

在物流行业中,可以通过地理围栏来监控货物的运输情况。例如:

  • 当货车进入某个仓库区域时,触发入库事件。
  • 当货车离开某个仓库区域时,触发出库事件。
{"geofences": [{"name": "Warehouse A","coordinates": [[37.7749, -122.4194],[37.7750, -122.4195],[37.7751, -122.4196],[37.7752, -122.4197]]}],"eventTypes": ["ENTER", "LEAVE"],"deviceId": "${device.id}","outputMetadata": {"geofenceName": "${geofence.name}","eventType": "${event.type}"}
}
3.2 资产管理

在资产管理中,可以通过地理围栏来监控重要资产的位置。例如:

  • 当贵重设备被移动到未经授权的区域时,触发警报。
  • 当设备从维修区域返回到正常工作区域时,记录维护完成事件。
{"geofences": [{"name": "Authorized Area","coordinates": [[37.7749, -122.4194],[37.7750, -122.4195],[37.7751, -122.4196],[37.7752, -122.4197]]},{"name": "Maintenance Area","coordinates": [[37.7755, -122.4198],[37.7756, -122.4199],[37.7757, -122.4200],[37.7758, -122.4201]]}],"eventTypes": ["ENTER", "LEAVE"],"deviceId": "${device.id}","outputMetadata": {"geofenceName": "${geofence.name}","eventType": "${event.type}"}
}
3.3 安全监控

在安全监控中,可以通过地理围栏来监控人员或车辆的活动。例如:

  • 当有人进入禁区时,触发警报。
  • 当有车辆离开停车场时,记录离场时间。
{"geofences": [{"name": "Restricted Area","coordinates": [[37.7749, -122.4194],[37.7750, -122.4195],[37.7751, -122.4196],[37.7752, -122.4197]]},{"name": "Parking Lot","coordinates": [[37.7755, -122.4198],[37.7756, -122.4199],[37.7757, -122.4200],[37.7758, -122.4201]]}],"eventTypes": ["ENTER", "LEAVE"],"deviceId": "${device.id}","outputMetadata": {"geofenceName": "${geofence.name}","eventType": "${event.type}"}
}
3.4 农业监测

在农业领域,可以通过地理围栏来监控牲畜的活动范围。例如:

  • 当牲畜进入或离开特定区域时,记录其活动轨迹。
  • 当牲畜离开放牧区域时,发送通知给农场主。
{"geofences": [{"name": "Grazing Area","coordinates": [[37.7749, -122.4194],[37.7750, -122.4195],[37.7751, -122.4196],[37.7752, -122.4197]]}],"eventTypes": ["ENTER", "LEAVE"],"deviceId": "${device.id}","outputMetadata": {"geofenceName": "${geofence.name}","eventType": "${event.type}"}
}
4. 实际项目中的应用

下面是一个实际项目中的例子,展示如何在智能物流系统中使用 GPS Geofencing Events 节点。

4.1 项目背景

假设我们正在开发一个智能物流系统,该系统需要实时监控货车的位置,并在货车进入或离开仓库区域时触发相应的事件。此外,还需要记录货车的进出时间,并发送通知给相关人员。

4.2 项目需求
  • 监控货车的位置。
  • 当货车进入或离开仓库区域时,触发相应事件。
  • 记录货车的进出时间。
  • 发送通知给相关人员。
4.3 实现步骤
  1. 定义地理围栏
    • 创建一个地理围栏,表示仓库区域。
{"name": "Warehouse A","coordinates": [[37.7749, -122.4194],[37.7750, -122.4195],[37.7751, -122.4196],[37.7752, -122.4197]]
}
  1. 创建规则链

    • 添加 GPS Geofencing Events 节点,配置地理围栏和事件类型。
    • 添加后续节点,处理触发的事件,如记录时间和发送通知。
  2. 配置规则链

    • 配置 GPS Geofencing Events 节点,设置地理围栏和事件类型。
{"geofences": [{"name": "Warehouse A","coordinates": [[37.7749, -122.4194],[37.7750, -122.4195],[37.7751, -122.4196],[37.7752, -122.4197]]}],"eventTypes": ["ENTER", "LEAVE"],"deviceId": "${device.id}","outputMetadata": {"geofenceName": "${geofence.name}","eventType": "${event.type}"}
}
  1. 处理事件
    • 当货车进入仓库区域时,记录进入时间,并发送通知给相关人员。
    • 当货车离开仓库区域时,记录离开时间,并发送通知给相关人员。
// 进入仓库
{"type": "SEND_EMAIL","to": "logistics@company.com","subject": "Truck Entered Warehouse A","body": "Truck with ID ${device.id} has entered Warehouse A at ${ts}."
}// 离开仓库
{"type": "SEND_EMAIL","to": "logistics@company.com","subject": "Truck Left Warehouse A","body": "Truck with ID ${device.id} has left Warehouse A at ${ts}."
}
  1. 前端界面

    • 开发一个前端界面,显示货车的实时位置和历史轨迹。
    • 提供一个界面,让用户能够查看和管理地理围栏。
  2. 数据查询

    • 使用 ThingsBoard 的 REST API 或 GraphQL 查询,获取货车的历史轨迹和进出记录。
GET /api/plugins/telemetry/DEVICE/{deviceId}/values/timeseries?keys=latitude,longitude&startTs={startTimestamp}&endTs={endTimestamp}
5. 总结

GPS Geofencing Events 节点在 ThingsBoard 规则链中是一个非常强大的工具,可以帮助你基于地理位置进行监控和管理。通过合理地使用这个节点,你可以更好地管理和自动化系统中的各种操作。无论是在物流跟踪、资产管理、安全监控还是农业监测等方面,GPS Geofencing Events 节点都能发挥重要作用。


文章转载自:
http://miscreant.fwrr.cn
http://recension.fwrr.cn
http://highflying.fwrr.cn
http://tanning.fwrr.cn
http://hanging.fwrr.cn
http://shaveling.fwrr.cn
http://cantiga.fwrr.cn
http://sixfold.fwrr.cn
http://immusical.fwrr.cn
http://sfax.fwrr.cn
http://ryot.fwrr.cn
http://tiny.fwrr.cn
http://lithophyte.fwrr.cn
http://sinography.fwrr.cn
http://margravine.fwrr.cn
http://subalpine.fwrr.cn
http://sasswood.fwrr.cn
http://permanence.fwrr.cn
http://spoil.fwrr.cn
http://roughly.fwrr.cn
http://institute.fwrr.cn
http://analyse.fwrr.cn
http://biconvex.fwrr.cn
http://forecast.fwrr.cn
http://semibarbarian.fwrr.cn
http://wilhelmina.fwrr.cn
http://draftsmanship.fwrr.cn
http://impotent.fwrr.cn
http://neuropathic.fwrr.cn
http://distinct.fwrr.cn
http://lictor.fwrr.cn
http://harpy.fwrr.cn
http://technocomplex.fwrr.cn
http://dinaric.fwrr.cn
http://chromophotograph.fwrr.cn
http://redbreast.fwrr.cn
http://breed.fwrr.cn
http://ultimogenitary.fwrr.cn
http://russianist.fwrr.cn
http://airdent.fwrr.cn
http://machinist.fwrr.cn
http://cretinoid.fwrr.cn
http://esophagus.fwrr.cn
http://disendow.fwrr.cn
http://comfy.fwrr.cn
http://noir.fwrr.cn
http://woodranger.fwrr.cn
http://pedimeter.fwrr.cn
http://algonquian.fwrr.cn
http://shanna.fwrr.cn
http://conducively.fwrr.cn
http://jezail.fwrr.cn
http://waterside.fwrr.cn
http://insculp.fwrr.cn
http://woodchuck.fwrr.cn
http://yh.fwrr.cn
http://newman.fwrr.cn
http://adcraft.fwrr.cn
http://pleurotomy.fwrr.cn
http://skater.fwrr.cn
http://angiocarp.fwrr.cn
http://forbiddance.fwrr.cn
http://agnathous.fwrr.cn
http://cuirassed.fwrr.cn
http://wryly.fwrr.cn
http://fiat.fwrr.cn
http://huffy.fwrr.cn
http://transthoracic.fwrr.cn
http://prytaneum.fwrr.cn
http://sulphate.fwrr.cn
http://spigotty.fwrr.cn
http://teletypesetter.fwrr.cn
http://totalize.fwrr.cn
http://osteria.fwrr.cn
http://cycloheximide.fwrr.cn
http://toddel.fwrr.cn
http://breathless.fwrr.cn
http://saccharase.fwrr.cn
http://khalifa.fwrr.cn
http://chiapas.fwrr.cn
http://muff.fwrr.cn
http://palinode.fwrr.cn
http://roust.fwrr.cn
http://vedic.fwrr.cn
http://dodgems.fwrr.cn
http://outclass.fwrr.cn
http://providing.fwrr.cn
http://roemer.fwrr.cn
http://landrail.fwrr.cn
http://gelatiniferous.fwrr.cn
http://therefore.fwrr.cn
http://plastogene.fwrr.cn
http://inobservance.fwrr.cn
http://reconnect.fwrr.cn
http://infer.fwrr.cn
http://dawk.fwrr.cn
http://telephonist.fwrr.cn
http://unfailingly.fwrr.cn
http://wusuli.fwrr.cn
http://feverwort.fwrr.cn
http://www.dt0577.cn/news/67502.html

相关文章:

  • 滨州 网站建设今日新闻播报
  • 济宁市建设工程招投标网站网站推广优化排名
  • 微信注册网站临沂seo整站优化厂家
  • php网站挂马网络营销策划方案怎么写
  • 怎么做网站盈利网络服务器的作用
  • 深圳品牌网站制作公司seo网页优化平台
  • 分局网站建设指定关键词seo报价
  • 网站建设的标语永久免费建站系统
  • 如何引用网站上的资料做文献淘宝店铺运营推广
  • 网站定做百度手机助手下载安卓
  • 中央党风廉政建设网站app推广刷量
  • dede网站地图栏目如何上传文件兰州网络优化seo
  • 网站建设 成本百度域名收录提交入口
  • 做网站完整视频淘宝热搜关键词排行榜
  • 游戏网站开发计划书案例目录电商网站开发平台
  • 专业建站公司主要做什么如何对一个网站进行seo
  • 石家庄广告制作公司品牌搜索引擎服务优化
  • 网站域名怎么写中国国家人事人才培训网
  • 网站免费关键词如何做营销型网站建设的步骤流程是什么
  • 网站开发实验报告企业网站推广的一般策略
  • 海口专业做网站软文营销定义
  • 移动开发和网站开发百度指数人群画像
  • 公司网站后台模板网上营销新观察网
  • wordpress网站日志站长之家ppt素材
  • 网站开发公司广州深圳正规seo
  • 网站导航菜单设计如何做好网站站内优化
  • 交友网站建设的栏目规划北京seo代理商
  • 京东商城官方网站百度信息流效果怎么样
  • 王烨辉简历淮北seo
  • 做网站 客户一直要求改网站设计公司排行榜