导出:

mongoexport --host localhost --port  
--username un1 --password pwd1
--db db1 --collection col1
--out /data/col1.json
-q '{cls:{$in:['cc','out','los']},geom:{$geoIntersects:{$geometry:{"type":"Polygon","coordinates":[[[ 1, 1],[ 1, 2],[ 2, 2],[ 2, 1],[ 1, 1 ]]]}}}}'

导入:

mongoimport -d db1-c col1 col1.json
05-11 08:02