Ignore:
Timestamp:
2020-01-17T22:21:14+13:00 (4 years ago)
Author:
ak19
Message:

Tables of mongodb counts (1-5 table) and manual counts (6table). GeoJSON maps for number of web PAGES in MRI and containing MRI.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/maori-lang-detection/mongodb-data/1a_counts_miInUrlPath.json

    r33823 r33848  
     1/*
     2All crawled sites which contain mi (mi.* or */mi) in the URL path.
     3
     4db.Websites.aggregate([
     5    { $match: {urlContainsLangCodeInPath: true} },
     6    { $unwind: "$geoLocationCountryCode" },
     7    {
     8        $group: {
     9            _id: "$geoLocationCountryCode",
     10            count: { $sum: 1 }
     11        }
     12    },
     13    { $sort : { count : -1} }
     14]);
     15*/
     16
    117/* 1 */
    218{
Note: See TracChangeset for help on using the changeset viewer.