编写仿真模型
我要做这个模拟模型,但我不知道如何开始,从哪里开始。我向我的主管询问了此事,他对此也没有任何线索。所以我征求你的意见。 这是我必须做的。
- 我必须在一个简单的地图模型中模拟各个区域的 GSM 信号强度。
- 我必须显示用户位置,当将用户位置从一个地方更改到另一个地方时,哪个塔会向移动客户端提供所需的 GSM 信号,
我不是要求对此进行编码或其他东西,我只是要求向我展示方法来做到这一点? 任何与此相关的教程,您解决问题的知识都会非常有帮助。
我也有 Java 知识。
问候, 兰加纳
I have to do this simulation model but I don't know how to start it and where to start it. i asked my supervisor about this , he also not have a clue about this. so I'm asking your opinion.
Here is what I have to do.
- I have to simulate GSM signal strength from area to area in a simple map model.
- I have to show the user location and when changing the user location from one place to another which tower gives the mobile client the GSM signals it require
I'm not asking to code this or something guys, I'm just asking to show me the way to do this?
Any tutorials regarding this, your knowledge to sort out the things would be very helpful.
I have a knowledge in Java also.
Regards,
Rangana
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这只是一个模拟,那么它可以很容易地被伪造(除非我误解了需要什么)。
以您需要的任何格式创建地图模型。这可能使用 Google/Bing 地图 API 或自定义地图。
创建 GPS 坐标列表并遍历它们以模拟用户在地图上移动。
计算用户和每个塔之间的距离(可以使用欧几里得距离)并确定给定点的 GSM 强度。我不会解释如何计算这样的值,但它应该非常简单。
如果没有更具体的信息,很难提供更多细节。这是大学项目的一部分吗?
If it's just a simulation, it can be faked quite easily (unless I'm misunderstanding what's required).
Create your map model in whichever format you need to. This might be using Google/Bing maps API, or a custom map.
Create a list of GPS coordinates and traverse through them to simulate the user moving around the map.
Calculate the distance between the user and each tower (could use the Euclidean distance) and determine the strength of the the GSM at an given point. I'm not going to explain how you could calculate such a value, but it should be pretty easy.
Without more specific information, it's pretty difficult to give any more detail. Is this part of a university project?