The current version still says:
gunzip stations.json.gz
mongoimport --host=<hostname> --port=<port> --username=<username> --password=<password> --db=<mydb> --collection=stations stations.json
even when the format has been changed to bson.
It would be better to update it to somthing like:
gunzip stations.bson.gz
bsondump stations.bson > stations.json
mongoimport --host=<hostname> --port=<port> --username=<username> --password=<password> --db=<mydb> --collection=stations stations.json
The current version still says:
gunzip stations.json.gzmongoimport --host=<hostname> --port=<port> --username=<username> --password=<password> --db=<mydb> --collection=stations stations.jsoneven when the format has been changed to bson.
It would be better to update it to somthing like:
gunzip stations.bson.gzbsondump stations.bson > stations.jsonmongoimport --host=<hostname> --port=<port> --username=<username> --password=<password> --db=<mydb> --collection=stations stations.json