MongoDB架构:GPS位置的默认坐标

Posted

技术标签:

【中文标题】MongoDB架构:GPS位置的默认坐标【英文标题】:MongoDB schema : default coordinates for GPS position 【发布时间】:2016-09-03 09:02:39 【问题描述】:

我应该在尚未上传其位置的新创建的用户文档中插入什么 GPS 坐标?现在,我只是插入 0 和 0,因为插入像 'undefined' 这样的值会使数据库抛出一些错误......

这是我的架构:

var userSchema = new mongoose.Schema(
firstname: 
  type: String,
  required: true,
  unique: false
,
lastname: 
  type: String,
  required: true,
  unique: false
,
location: 
  'type': 
    type: String,
    required: true,
    enum: ['Point', 'LineString', 'Polygon'],
    default: 'Point'
  ,
  coordinates: [Number],
  select: false
,

);

【问题讨论】:

【参考方案1】:

您可以使用任何魔法值,例如 0,0,也可以使用超出记录范围/边界的位置,例如珠穆朗玛峰、火山喷发地、南极等。

【讨论】:

以上是关于MongoDB架构:GPS位置的默认坐标的主要内容,如果未能解决你的问题,请参考以下文章

无法提取地理键(nodejs 和 mongo)

使用 geojson 和 mongoose 将多边形坐标插入 Mongo DB 时出错

使用 mongodb 设计 gps 时间序列数据的数据库

MongoDB中的地理位置查询

mongodb 3.2 mongos configdb 在配置文件格式怎么写

如何通过核心位置获取当前位置或 GPS 坐标?