从同一 Mongodb collection 中的坐标数组创建 GeoJson

Create GeoJson from coordinates array in the same Mongodb collection

我想将我的 mongodb collection 从 2d 修改为 2dsphere。 我的db.users中有这个结构:

{
  "_id" : "1c6930387123e960eecd65e8ade28488",
  "interests" : [
     {
       "_id" : ObjectId("56a8b2a72f2c2a4c0250e896"),
       "coordinates" : [-3.6833, 40.4]
    }
  ],   
}

我想要这样的东西:

{
  "_id" : "1c6930387123e960eecd65e8ade28488",
  "interests" : [
     {
       "_id" : ObjectId("56a8b2a72f2c2a4c0250e896"),
       "loc":{
         "type":"Point",
         "coordinates" : [-3.6833, 40.4]
       }
    }
  ],   
}

我试过这个:

db.users.update( {interests:{$elemMatch:{coordinates :  { $exists: true } }}}, { $set: { 'interests.$.place':{"type":"Point", "coordinates":'interests.$.coordinates'} } }, { upsert: false, multi: false });

显然,它按字面意思插入“'interests.$.coordinates'

并在 Node 中尝试:

users.find({interests:{$elemMatch:
    {coordinates :  
        { $exists: true } }}} ,
    {"interests.coordinates":1,"interests._id":1,"_id":0 }).forEach( function( doc ){
        users.update( {interests:
            {$elemMatch:
                {_id :  doc.interests[0]['_id'] }}}, 
            { $set: { 'interests.$.loc':{"type":"Point", "coordinates":doc.interests[0]['coordinates']} } }, 
            { upsert: false, multi: false },function(err, numberAffected, rawResponse) {
            var modified=numberAffected.result.nModified;
             console.log(modified)
        });
    });

但是坐标插入了混合值。

想法?

谢谢!!

我没有测试这段代码,但我认为这会阐明这个问题。

users.find(
    {interests:{ $elemMatch: {coordinates : { $exists: true } }}}).forEach( function( doc ){

        for(var c = 0; c < doc.interests.length; c++) {

            var orig = doc.interests[c].coordinates;
            doc.interests[c].loc: { type:"Point", coordinates: orig };
            //delete doc.interests[c].coordinates;

        };

        users.update({ _id: doc._id }, doc);
    });

尝试遍历您集合中的所有文档,修改整个文档,然后在一行中更新它。

警告:如果您的集合中有大量符合 'find' 条件的文档,您应该使用分页 (skip/limit) 以避免首次加载时出现性能和内存问题。