Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

841 wynnewood rd philadelphia pa 19151

21/10/2021 Client: muhammad11 Deadline: 2 Day

Assignment4.docx
BUAN 6320

Database Foundations for Business Analytics

ASSIGNMENT 4

Due Date: November 22, 2020 (11:59 pm)

In this assignment, you will use MongoDB query language to read, process, and extract data from MongoDB collections. The first part of the assignment involves writing “simple MongoDB queries” using the find( ) method. The second part of the assignment involves writing “advanced MongoDB queries” using the MongoDB aggregation pipeline.

For each question, your answer should be a single MongoDB statement (i.e., there should be a piece of code starting with db.collection.method() and ending with a semi-column).

Save your answers to a text file. Do NOT forget to write your group number and the names of all the members in your group at the top the file using comment lines (/* Group x*/)

(/* Member 1 Name*/) (/* Member 2 Name*/)

Use a comment line to indicate which question the subsequent query answers (such as /*Answer to Question X*/).

Submit a soft copy of your assignment (one submission per group) by the due date (refer to the class syllabus for late submission penalties). You can make only ONE attempt. Therefore, do NOT submit your assignment prematurely if you think that you can make changes on your solution later.

Good luck!

Part 1: Writing Simple MongoDB Queries

We have a collection of researchers named “scientists” (see the scientists.json file). This collection keeps track of basic information about researchers, like their name, birth date, death date (if any), contributions to the scientific world, awards received for their contributions. Each document has a unique _id field and looks like this:

{

_id : 1,

name : {

first : "John",

last : "Backus"

},

birth : ISODate("1924-12-03T05:00:00Z"),

death : ISODate("2007-03-17T04:00:00Z"),

contribs : [

"Fortran",

"ALGOL",

"FP"

],

awards : [

{

award : "W.W. McDowell Award",

year : 1967,

by : "IEEE Computer Society"

},

{

award : "National Medal of Science",

year : 1975,

by : "National Science Foundation"

},

{

award : "Turing Award",

year : 1977,

by : "ACM"

}

]

}

1. Find the list of researchers who were born before 1935?

2. Find the list of researchers who have received the "National Medal of Science" award since 1970.

3. Display only the last name and the first two contributions of all scientists. Sort the list in ascending order by the last name.

4. Find the list of researchers who are still alive. Limit the result set to 3 researchers.

5. Find all researchers who have made contributions to both “Fortran” and “Java”.

Part 2: Writing Advanced MongoDB Queries

We have a collection of populations by postal code named “codes” (see the codes.json file). The postal codes are in the _id field, and are therefore unique. Documents look like this:

{

_id : "35045",

city : "CLANTON",

loc : [-86.64, 32.84],

pop: 13990,

state : "AL"

}

Note that there are 50 non-overlapping states in the US with two letter abbreviations such as NY and CA. In addition, the capital of Washington is within an area designated the District of Columbia, and carries the abbreviation DC. For purposes of the mail, the postal service considers DC to be a "state." So in this dataset, there are 51 states. A city may overlap several postal codes.

Write an aggregation query to answer the following questions. in the result set is used a placeholder for the correct answer.

6. Find the population of each state. The output should look like this:

{

_id : "CA",

population :

},

{

_id : "MT",

population :

},...

7. Find the population of the postal code in each state with the highest population. The output should look like this:

{

state : "WI",

population :

},

{

state : "WV",

population :

}, ...

8. Find the population of each city in the state of New York (NY) and list the postal codes that are included in each city. The output should look like this:

{

_id : "ELMIRA",

population : ,

postal_codes : [

,

,

]

},

{

_id : "WHITESVILLE",

population : ,

postal_codes : [

]

},...

9. Find the largest city in each state. The output should look like this:

{

_id : "WI",

city : ,

population :

},

{

_id : "VT",

city : ,

population :

}, ...

10. Calculate the average population of cities in California (CA) and New York (NY) with populations over 30,000. The output should look like this:

{

pop :

}

1

codes.json
{ "_id" : "01035", "city" : "HADLEY", "loc" : [ -72.571499, 42.36062 ], "pop" : NumberInt(4231), "state" : "MA" } { "_id" : "01056", "city" : "LUDLOW", "loc" : [ -72.471012, 42.172823 ], "pop" : NumberInt(18820), "state" : "MA" } { "_id" : "01109", "city" : "SPRINGFIELD", "loc" : [ -72.554349, 42.114455 ], "pop" : NumberInt(32635), "state" : "MA" } { "_id" : "01013", "city" : "CHICOPEE", "loc" : [ -72.607962, 42.162046 ], "pop" : NumberInt(23396), "state" : "MA" } { "_id" : "01005", "city" : "BARRE", "loc" : [ -72.108354, 42.409698 ], "pop" : NumberInt(4546), "state" : "MA" } { "_id" : "01027", "city" : "MOUNT TOM", "loc" : [ -72.679921, 42.264319 ], "pop" : NumberInt(16864), "state" : "MA" } { "_id" : "01010", "city" : "BRIMFIELD", "loc" : [ -72.188455, 42.116543 ], "pop" : NumberInt(3706), "state" : "MA" } { "_id" : "01201", "city" : "PITTSFIELD", "loc" : [ -73.247088, 42.453086 ], "pop" : NumberInt(50655), "state" : "MA" } { "_id" : "01071", "city" : "RUSSELL", "loc" : [ -72.840343, 42.147063 ], "pop" : NumberInt(608), "state" : "MA" } { "_id" : "01151", "city" : "INDIAN ORCHARD", "loc" : [ -72.505048, 42.153225 ], "pop" : NumberInt(8702), "state" : "MA" } { "_id" : "01033", "city" : "GRANBY", "loc" : [ -72.520001, 42.255704 ], "pop" : NumberInt(5526), "state" : "MA" } { "_id" : "01008", "city" : "BLANDFORD", "loc" : [ -72.936114, 42.182949 ], "pop" : NumberInt(1240), "state" : "MA" } { "_id" : "01012", "city" : "CHESTERFIELD", "loc" : [ -72.833309, 42.38167 ], "pop" : NumberInt(177), "state" : "MA" } { "_id" : "01070", "city" : "PLAINFIELD", "loc" : [ -72.918289, 42.514393 ], "pop" : NumberInt(571), "state" : "MA" } { "_id" : "01007", "city" : "BELCHERTOWN", "loc" : [ -72.410953, 42.275103 ], "pop" : NumberInt(10579), "state" : "MA" } { "_id" : "01030", "city" : "FEEDING HILLS", "loc" : [ -72.675077, 42.07182 ], "pop" : NumberInt(11985), "state" : "MA" } { "_id" : "01060", "city" : "FLORENCE", "loc" : [ -72.654245, 42.324662 ], "pop" : NumberInt(27939), "state" : "MA" } { "_id" : "01082", "city" : "WARE", "loc" : [ -72.258285, 42.261831 ], "pop" : NumberInt(9808), "state" : "MA" } { "_id" : "01036", "city" : "HAMPDEN", "loc" : [ -72.431823, 42.064756 ], "pop" : NumberInt(4709), "state" : "MA" } { "_id" : "01038", "city" : "HATFIELD", "loc" : [ -72.616735, 42.38439 ], "pop" : NumberInt(3184), "state" : "MA" } { "_id" : "01068", "city" : "OAKHAM", "loc" : [ -72.051265, 42.348033 ], "pop" : NumberInt(1503), "state" : "MA" } { "_id" : "01069", "city" : "PALMER", "loc" : [ -72.328785, 42.176233 ], "pop" : NumberInt(9778), "state" : "MA" } { "_id" : "01129", "city" : "SPRINGFIELD", "loc" : [ -72.487622, 42.122263 ], "pop" : NumberInt(6831), "state" : "MA" } { "_id" : "01104", "city" : "SPRINGFIELD", "loc" : [ -72.577769, 42.128848 ], "pop" : NumberInt(22115), "state" : "MA" } { "_id" : "01106", "city" : "LONGMEADOW", "loc" : [ -72.5676, 42.050658 ], "pop" : NumberInt(15688), "state" : "MA" } { "_id" : "01002", "city" : "CUSHMAN", "loc" : [ -72.51565, 42.377017 ], "pop" : NumberInt(36963), "state" : "MA" } { "_id" : "01077", "city" : "SOUTHWICK", "loc" : [ -72.770588, 42.051099 ], "pop" : NumberInt(7667), "state" : "MA" } { "_id" : "01096", "city" : "WILLIAMSBURG", "loc" : [ -72.777989, 42.408522 ], "pop" : NumberInt(2295), "state" : "MA" } { "_id" : "01057", "city" : "MONSON", "loc" : [ -72.319634, 42.101017 ], "pop" : NumberInt(8194), "state" : "MA" } { "_id" : "01081", "city" : "WALES", "loc" : [ -72.204592, 42.062734 ], "pop" : NumberInt(1732), "state" : "MA" } { "_id" : "01095", "city" : "WILBRAHAM", "loc" : [ -72.446415, 42.124506 ], "pop" : NumberInt(12635), "state" : "MA" } { "_id" : "01098", "city" : "WORTHINGTON", "loc" : [ -72.931427, 42.384293 ], "pop" : NumberInt(877), "state" : "MA" } { "_id" : "01118", "city" : "SPRINGFIELD", "loc" : [ -72.527445, 42.092937 ], "pop" : NumberInt(14618), "state" : "MA" } { "_id" : "01225", "city" : "CHESHIRE", "loc" : [ -73.157964, 42.561059 ], "pop" : NumberInt(3094), "state" : "MA" } { "_id" : "01053", "city" : "LEEDS", "loc" : [ -72.703403, 42.354292 ], "pop" : NumberInt(1350), "state" : "MA" } { "_id" : "01085", "city" : "MONTGOMERY", "loc" : [ -72.754318, 42.129484 ], "pop" : NumberInt(40117), "state" : "MA" } { "_id" : "01092", "city" : "WEST WARREN", "loc" : [ -72.203639, 42.20734 ], "pop" : NumberInt(4441), "state" : "MA" } { "_id" : "01128", "city" : "SPRINGFIELD", "loc" : [ -72.488903, 42.094397 ], "pop" : NumberInt(3272), "state" : "MA" } { "_id" : "01223", "city" : "BECKET", "loc" : [ -73.120325, 42.359363 ], "pop" : NumberInt(1070), "state" : "MA" } { "_id" : "01026", "city" : "CUMMINGTON", "loc" : [ -72.905767, 42.435296 ], "pop" : NumberInt(1484), "state" : "MA" } { "_id" : "01028", "city" : "EAST LONGMEADOW", "loc" : [ -72.505565, 42.067203 ], "pop" : NumberInt(13367), "state" : "MA" } { "_id" : "01031", "city" : "GILBERTVILLE", "loc" : [ -72.198585, 42.332194 ], "pop" : NumberInt(2385), "state" : "MA" } { "_id" : "01105", "city" : "SPRINGFIELD", "loc" : [ -72.578312, 42.099931 ], "pop" : NumberInt(14970), "state" : "MA" } { "_id" : "01119", "city" : "SPRINGFIELD", "loc" : [ -72.51211, 42.12473 ], "pop" : NumberInt(13040), "state" : "MA" } { "_id" : "01001", "city" : "AGAWAM", "loc" : [ -72.622739, 42.070206 ], "pop" : NumberInt(15338), "state" : "MA" } { "_id" : "01040", "city" : "HOLYOKE", "loc" : [ -72.626193, 42.202007 ], "pop" : NumberInt(43704), "state" : "MA" } { "_id" : "01011", "city" : "CHESTER", "loc" : [ -72.988761, 42.279421 ], "pop" : NumberInt(1688), "state" : "MA" } { "_id" : "01039", "city" : "HAYDENVILLE", "loc" : [ -72.703178, 42.381799 ], "pop" : NumberInt(1387), "state" : "MA" } { "_id" : "01072", "city" : "SHUTESBURY", "loc" : [ -72.421342, 42.481968 ], "pop" : NumberInt(1533), "state" : "MA" } { "_id" : "01080", "city" : "THREE RIVERS", "loc" : [ -72.362352, 42.181894 ], "pop" : NumberInt(2425), "state" : "MA" } { "_id" : "01103", "city" : "SPRINGFIELD", "loc" : [ -72.588735, 42.1029 ], "pop" : NumberInt(2323), "state" : "MA" } { "_id" : "01020", "city" : "CHICOPEE", "loc" : [ -72.576142, 42.176443 ], "pop" : NumberInt(31495), "state" : "MA" } { "_id" : "01032", "city" : "GOSHEN", "loc" : [ -72.844092, 42.466234 ], "pop" : NumberInt(122), "state" : "MA" } { "_id" : "01107", "city" : "SPRINGFIELD", "loc" : [ -72.606544, 42.117907 ], "pop" : NumberInt(12739), "state" : "MA" } { "_id" : "01220", "city" : "ADAMS", "loc" : [ -73.117225, 42.622319 ], "pop" : NumberInt(9901), "state" : "MA" } { "_id" : "01222", "city" : "ASHLEY FALLS", "loc" : [ -73.320195, 42.059552 ], "pop" : NumberInt(561), "state" : "MA" } { "_id" : "01054", "city" : "LEVERETT", "loc" : [ -72.499334, 42.46823 ], "pop" : NumberInt(1748), "state" : "MA" } { "_id" : "01073", "city" : "SOUTHAMPTON", "loc" : [ -72.719381, 42.224697 ], "pop" : NumberInt(4478), "state" : "MA" } { "_id" : "01022", "city" : "WESTOVER AFB", "loc" : [ -72.558657, 42.196672 ], "pop" : NumberInt(1764), "state" : "MA" } { "_id" : "01108", "city" : "SPRINGFIELD", "loc" : [ -72.558432, 42.085314 ], "pop" : NumberInt(25519), "state" : "MA" } { "_id" : "01089", "city" : "WEST SPRINGFIELD", "loc" : [ -72.641109, 42.115066 ], "pop" : NumberInt(27537), "state" : "MA" } { "_id" : "01034", "city" : "TOLLAND", "loc" : [ -72.908793, 42.070234 ], "pop" : NumberInt(1652), "state" : "MA" } { "_id" : "01050", "city" : "HUNTINGTON", "loc" : [ -72.873341, 42.265301 ], "pop" : NumberInt(2084), "state" : "MA" } { "_id" : "01075", "city" : "SOUTH HADLEY", "loc" : [ -72.581137, 42.237537 ], "pop" : NumberInt(16699), "state" : "MA" } { "_id" : "01339", "city" : "HAWLEY", "loc" : [ -72.880162, 42.621802 ], "pop" : NumberInt(1325), "state" : "MA" } { "_id" : "01226", "city" : "DALTON", "loc" : [ -73.160259, 42.475046 ], "pop" : NumberInt(7357), "state" : "MA" } { "_id" : "01245", "city" : "WEST OTIS", "loc" : [ -73.213452, 42.187847 ], "pop" : NumberInt(329), "state" : "MA" } { "_id" : "01235", "city" : "PERU", "loc" : [ -73.092433, 42.434604 ], "pop" : NumberInt(2559), "state" : "MA" } { "_id" : "01259", "city" : "SOUTHFIELD", "loc" : [ -73.260933, 42.078014 ], "pop" : NumberInt(622), "state" : "MA" } { "_id" : "01240", "city" : "LENOX", "loc" : [ -73.271322, 42.364241 ], "pop" : NumberInt(5001), "state" : "MA" } { "_id" : "01256", "city" : "SAVOY", "loc" : [ -73.023281, 42.576964 ], "pop" : NumberInt(632), "state" : "MA" } { "_id" : "01243", "city" : "MIDDLEFIELD", "loc" : [ -73.006226, 42.34795 ], "pop" : NumberInt(384), "state" : "MA" } { "_id" : "01230", "city" : "GREAT BARRINGTON", "loc" : [ -73.36065, 42.195922 ], "pop" : NumberInt(10603), "state" : "MA" } { "_id" : "01254", "city" : "RICHMOND", "loc" : [ -73.364457, 42.378398 ], "pop" : NumberInt(1134), "state" : "MA" } { "_id" : "01360", "city" : "NORTHFIELD", "loc" : [ -72.450995, 42.688705 ], "pop" : NumberInt(2829), "state" : "MA" } { "_id" : "01473", "city" : "WESTMINSTER", "loc" : [ -71.909599, 42.548319 ], "pop" : NumberInt(6191), "state" : "MA" } { "_id" : "01537", "city" : "NORTH OXFORD", "loc" : [ -71.885953, 42.16549 ], "pop" : NumberInt(3031), "state" : "MA" } { "_id" : "01562", "city" : "SPENCER", "loc" : [ -71.990617, 42.244103 ], "pop" : NumberInt(11598), "state" : "MA" } { "_id" : "01588", "city" : "WHITINSVILLE", "loc" : [ -71.664357, 42.115319 ], "pop" : NumberInt(8807), "state" : "MA" } { "_id" : "01608", "city" : "WORCESTER", "loc" : [ -71.800262, 42.262425 ], "pop" : NumberInt(3646), "state" : "MA" } { "_id" : "01612", "city" : "PAXTON", "loc" : [ -71.920234, 42.306646 ], "pop" : NumberInt(4047), "state" : "MA" } { "_id" : "01770", "city" : "SHERBORN", "loc" : [ -71.378717, 42.233088 ], "pop" : NumberInt(3998), "state" : "MA" } { "_id" : "01778", "city" : "WAYLAND", "loc" : [ -71.358781, 42.348629 ], "pop" : NumberInt(11874), "state" : "MA" } { "_id" : "01913", "city" : "AMESBURY", "loc" : [ -70.936681, 42.855879 ], "pop" : NumberInt(14970), "state" : "MA" } { "_id" : "01944", "city" : "MANCHESTER", "loc" : [ -70.767434, 42.57963 ], "pop" : NumberInt(5286), "state" : "MA" } { "_id" : "01945", "city" : "MARBLEHEAD", "loc" : [ -70.865291, 42.498431 ], "pop" : NumberInt(19971), "state" : "MA" } { "_id" : "01949", "city" : "MIDDLETON", "loc" : [ -71.013004, 42.594184 ], "pop" : NumberInt(4921), "state" : "MA" } { "_id" : "02035", "city" : "FOXBORO", "loc" : [ -71.244127, 42.064938 ], "pop" : NumberInt(14293), "state" : "MA" } { "_id" : "02048", "city" : "MANSFIELD", "loc" : [ -71.217775, 42.021238 ], "pop" : NumberInt(16676), "state" : "MA" } { "_id" : "02146", "city" : "BROOKLINE", "loc" : [ -71.128917, 42.339158 ], "pop" : NumberInt(56614), "state" : "MA" } { "_id" : "02151", "city" : "REVERE", "loc" : [ -71.005165, 42.413767 ], "pop" : NumberInt(42766), "state" : "MA" } { "_id" : "02189", "city" : "WEYMOUTH", "loc" : [ -70.931671, 42.211606 ], "pop" : NumberInt(14055), "state" : "MA" } { "_id" : "02351", "city" : "ABINGTON", "loc" : [ -70.954293, 42.116715 ], "pop" : NumberInt(13849), "state" : "MA" } { "_id" : "02633", "city" : "SOUTH CHATHAM", "loc" : [ -69.980758, 41.687634 ], "pop" : NumberInt(4744), "state" : "MA" } { "_id" : "02717", "city" : "EAST FREETOWN", "loc" : [ -70.967709, 41.763455 ], "pop" : NumberInt(4883), "state" : "MA" } { "_id" : "02724", "city" : "FALL RIVER", "loc" : [ -71.174822, 41.684975 ], "pop" : NumberInt(18141), "state" : "MA" } { "_id" : "02726", "city" : "SOMERSET", "loc" : [ -71.149206, 41.756012 ], "pop" : NumberInt(15117), "state" : "MA" } { "_id" : "02738", "city" : "MARION", "loc" : [ -70.761261, 41.709526 ], "pop" : NumberInt(4496), "state" : "MA" } { "_id" : "02762", "city" : "PLAINVILLE", "loc" : [ -71.327454, 42.012403 ], "pop" : NumberInt(6874), "state" : "MA" } { "_id" : "02766", "city" : "NORTON", "loc" : [ -71.189441, 41.971801 ], "pop" : NumberInt(14329), "state" : "MA" } { "_id" : "02770", "city" : "ROCHESTER", "loc" : [ -70.852257, 41.759082 ], "pop" : NumberInt(3270), "state" : "MA" } { "_id" : "02837", "city" : "LITTLE COMPTON", "loc" : [ -71.161215, 41.52204 ], "pop" : NumberInt(3341), "state" : "RI" } { "_id" : "02865", "city" : "LINCOLN", "loc" : [ -71.434777, 41.908906 ], "pop" : NumberInt(14765), "state" : "RI" } { "_id" : "02872", "city" : "PRUDENCE ISLAND", "loc" : [ -71.311827, 41.613606 ], "pop" : NumberInt(150), "state" : "RI" } { "_id" : "02907", "city" : "CRANSTON", "loc" : [ -71.424039, 41.800842 ], "pop" : NumberInt(25668), "state" : "RI" } { "_id" : "02917", "city" : "SMITHFIELD", "loc" : [ -71.520666, 41.896382 ], "pop" : NumberInt(12213), "state" : "RI" } { "_id" : "03449", "city" : "HANCOCK", "loc" : [ -71.981858, 42.976817 ], "pop" : NumberInt(1526), "state" : "NH" } { "_id" : "03469", "city" : "WEST SWANZEY", "loc" : [ -72.297688, 42.870313 ], "pop" : NumberInt(5440), "state" : "NH" } { "_id" : "03579", "city" : "ERROL", "loc" : [ -71.143612, 44.800273 ], "pop" : NumberInt(366), "state" : "NH" } { "_id" : "03608", "city" : "WALPOLE", "loc" : [ -72.415489, 43.076533 ], "pop" : NumberInt(2466), "state" : "NH" } { "_id" : "03748", "city" : "ENFIELD", "loc" : [ -72.127014, 43.625584 ], "pop" : NumberInt(4118), "state" : "NH" } { "_id" : "03812", "city" : "BARTLETT", "loc" : [ -71.2491, 44.08656 ], "pop" : NumberInt(1379), "state" : "NH" } { "_id" : "03816", "city" : "CENTER TUFTONBOR", "loc" : [ -71.265059, 43.690205 ], "pop" : NumberInt(885), "state" : "NH" } { "_id" : "03830", "city" : "EAST WAKEFIELD", "loc" : [ -71.007712, 43.641022 ], "pop" : NumberInt(675), "state" : "NH" } { "_id" : "03865", "city" : "PLAISTOW", "loc" : [ -71.093397, 42.835551 ], "pop" : NumberInt(7124), "state" : "NH" } { "_id" : "03869", "city" : "ROLLINSFORD", "loc" : [ -70.833207, 43.226936 ], "pop" : NumberInt(2395), "state" : "NH" } { "_id" : "03885", "city" : "STRATHAM", "loc" : [ -70.899714, 43.019432 ], "pop" : NumberInt(4967), "state" : "NH" } { "_id" : "03890", "city" : "WEST OSSIPEE", "loc" : [ -71.205141, 43.835956 ], "pop" : NumberInt(362), "state" : "NH" } { "_id" : "03907", "city" : "OGUNQUIT", "loc" : [ -70.597176, 43.228457 ], "pop" : NumberInt(852), "state" : "ME" } { "_id" : "04053", "city" : "MEREPOINT", "loc" : [ -70.00347, 43.843496 ], "pop" : NumberInt(269), "state" : "ME" } { "_id" : "04069", "city" : "POWNAL", "loc" : [ -70.195497, 43.890042 ], "pop" : NumberInt(1690), "state" : "ME" } { "_id" : "04071", "city" : "RAYMOND", "loc" : [ -70.449834, 43.921917 ], "pop" : NumberInt(3516), "state" : "ME" } { "_id" : "04270", "city" : "OXFORD", "loc" : [ -70.509799, 44.11183 ], "pop" : NumberInt(2822), "state" : "ME" } { "_id" : "04274", "city" : "POLAND SPRING", "loc" : [ -70.379664, 44.021162 ], "pop" : NumberInt(1375), "state" : "ME" } { "_id" : "04275", "city" : "ROXBURY", "loc" : [ -70.609188, 44.65657 ], "pop" : NumberInt(548), "state" : "ME" } { "_id" : "04330", "city" : "AUGUSTA", "loc" : [ -69.766548, 44.323228 ], "pop" : NumberInt(25195), "state" : "ME" } { "_id" : "04450", "city" : "KENDUSKEAG", "loc" : [ -68.934179, 44.918251 ], "pop" : NumberInt(1234), "state" : "ME" } { "_id" : "04464", "city" : "MONSON", "loc" : [ -69.487986, 45.298088 ], "pop" : NumberInt(263), "state" : "ME" } { "_id" : "04478", "city" : "ROCKWOOD", "loc" : [ -69.822442, 45.659329 ], "pop" : NumberInt(367), "state" : "ME" } { "_id" : "04563", "city" : "CUSHING", "loc" : [ -69.272061, 43.986741 ], "pop" : NumberInt(12), "state" : "ME" } { "_id" : "01364", "city" : "NEW SALEM", "loc" : [ -72.305867, 42.591231 ], "pop" : NumberInt(8544), "state" : "MA" } { "_id" : "01375", "city" : "SUNDERLAND", "loc" : [ -72.567569, 42.453947 ], "pop" : NumberInt(3399), "state" : "MA" } { "_id" : "01430", "city" : "ASHBURNHAM", "loc" : [ -71.92666, 42.649614 ], "pop" : NumberInt(5433), "state" : "MA" } { "_id" : "01452", "city" : "HUBBARDSTON", "loc" : [ -72.001159, 42.486538 ], "pop" : NumberInt(2797), "state" : "MA" } { "_id" : "01529", "city" : "MILLVILLE", "loc" : [ -71.579813, 42.033102 ], "pop" : NumberInt(2236), "state" : "MA" } { "_id" : "01543", "city" : "RUTLAND", "loc" : [ -71.948951, 42.376199 ], "pop" : NumberInt(4936), "state" : "MA" } { "_id" : "01566", "city" : "STURBRIDGE", "loc" : [ -72.084233, 42.112619 ], "pop" : NumberInt(7001), "state" : "MA" } { "_id" : "01581", "city" : "WESTBOROUGH", "loc" : [ -71.617604, 42.267891 ], "pop" : NumberInt(14132), "state" : "MA" } { "_id" : "01590", "city" : "WILKINSONVILLE", "loc" : [ -71.748416, 42.140586 ], "pop" : NumberInt(6719), "state" : "MA" } { "_id" : "01775", "city" : "STOW", "loc" : [ -71.515019, 42.430785 ], "pop" : NumberInt(5328), "state" : "MA" } { "_id" : "01826", "city" : "DRACUT", "loc" : [ -71.318592, 42.676422 ], "pop" : NumberInt(25594), "state" : "MA" } { "_id" : "01844", "city" : "METHUEN", "loc" : [ -71.181031, 42.728019 ], "pop" : NumberInt(39664), "state" : "MA" } { "_id" : "01880", "city" : "WAKEFIELD", "loc" : [ -71.068471, 42.500886 ], "pop" : NumberInt(24830), "state" : "MA" } { "_id" : "01940", "city" : "LYNNFIELD", "loc" : [ -71.033873, 42.532711 ], "pop" : NumberInt(11274), "state" : "MA" } { "_id" : "02045", "city" : "HULL", "loc" : [ -70.875442, 42.285346 ], "pop" : NumberInt(10466), "state" : "MA" } { "_id" : "02093", "city" : "WRENTHAM", "loc" : [ -71.339568, 42.061746 ], "pop" : NumberInt(9006), "state" : "MA" } { "_id" : "02119", "city" : "ROXBURY", "loc" : [ -71.086923, 42.322414 ], "pop" : NumberInt(25207), "state" : "MA" } { "_id" : "02160", "city" : "NEWTONVILLE", "loc" : [ -71.208771, 42.351961 ], "pop" : NumberInt(8872), "state" : "MA" } { "_id" : "02161", "city" : "NEWTON HIGHLANDS", "loc" : [ -71.209347, 42.318512 ], "pop" : NumberInt(6657), "state" : "MA" } { "_id" : "02181", "city" : "WELLESLEY", "loc" : [ -71.287966, 42.305593 ], "pop" : NumberInt(26615), "state" : "MA" } { "_id" : "02322", "city" : "AVON", "loc" : [ -71.043738, 42.125825 ], "pop" : NumberInt(4594), "state" : "MA" } { "_id" : "02367", "city" : "PLYMPTON", "loc" : [ -70.804582, 41.96549 ], "pop" : NumberInt(2384), "state" : "MA" } { "_id" : "02535", "city" : "CHILMARK", "loc" : [ -70.741613, 41.357523 ], "pop" : NumberInt(952), "state" : "MA" } { "_id" : "02537", "city" : "EAST SANDWICH", "loc" : [ -70.46822, 41.684603 ], "pop" : NumberInt(7254), "state" : "MA" } { "_id" : "02638", "city" : "DENNIS", "loc" : [ -70.191054, 41.732166 ], "pop" : NumberInt(3216), "state" : "MA" } { "_id" : "02671", "city" : "WEST HARWICH", "loc" : [ -70.113501, 41.669367 ], "pop" : NumberInt(1061), "state" : "MA" } { "_id" : "02703", "city" : "ATTLEBORO", "loc" : [ -71.30092, 41.929599 ], "pop" : NumberInt(38528), "state" : "MA" } { "_id" : "02740", "city" : "NEW BEDFORD", "loc" : [ -70.9372, 41.634749 ], "pop" : NumberInt(46426), "state" : "MA" } { "_id" : "02763", "city" : "NORTH ATTLEBORO", "loc" : [ -71.310353, 41.970979 ], "pop" : NumberInt(2737), "state" : "MA" } { "_id" : "02769", "city" : "REHOBOTH", "loc" : [ -71.254453, 41.85152 ], "pop" : NumberInt(7762), "state" : "MA" } { "_id" : "02779", "city" : "BERKLEY", "loc" : [ -71.076534, 41.835325 ], "pop" : NumberInt(4438), "state" : "MA" } { "_id" : "02815", "city" : "CLAYVILLE", "loc" : [ -71.670589, 41.777762 ], "pop" : NumberInt(45), "state" : "RI" } { "_id" : "02858", "city" : "OAKLAND", "loc" : [ -71.642925, 41.963637 ], "pop" : NumberInt(462), "state" : "RI" } { "_id" : "02877", "city" : "SLOCUM", "loc" : [ -71.537169, 41.521237 ], "pop" : NumberInt(1114), "state" : "RI" } { "_id" : "02882", "city" : "NARRAGANSETT", "loc" : [ -71.46164, 41.435313 ], "pop" : NumberInt(13596), "state" : "RI" } { "_id" : "02886", "city" : "WARWICK", "loc" : [ -71.447591, 41.702601 ], "pop" : NumberInt(40845), "state" : "RI" } { "_id" : "02888", "city" : "WARWICK", "loc" : [ -71.40836, 41.74936 ], "pop" : NumberInt(20869), "state" : "RI" } { "_id" : "02919", "city" : "CRANSTON", "loc" : [ -71.497646, 41.826431 ], "pop" : NumberInt(26575), "state" : "RI" } { "_id" : "03031", "city" : "AMHERST", "loc" : [ -71.607536, 42.856944 ], "pop" : NumberInt(8998), "state" : "NH" } { "_id" : "03077", "city" : "RAYMOND", "loc" : [ -71.191159, 43.032512 ], "pop" : NumberInt(9005), "state" : "NH" } { "_id" : "03086", "city" : "WILTON", "loc" : [ -71.754066, 42.836761 ], "pop" : NumberInt(3122), "state" : "NH" } { "_id" : "03101", "city" : "MANCHESTER", "loc" : [ -71.463255, 42.992858 ], "pop" : NumberInt(2697), "state" : "NH" } { "_id" : "03246", "city" : "GILFORD", "loc" : [ -71.452907, 43.538713 ], "pop" : NumberInt(24409), "state" : "NH" } { "_id" : "03257", "city" : "NEW LONDON", "loc" : [ -71.985674, 43.414501 ], "pop" : NumberInt(3280), "state" : "NH" } { "_id" : "03276", "city" : "TILTON", "loc" : [ -71.577413, 43.46033 ], "pop" : NumberInt(7356), "state" : "NH" } { "_id" : "03462", "city" : "SPOFFORD", "loc" : [ -72.410277, 42.911973 ], "pop" : NumberInt(1266), "state" : "NH" } { "_id" : "03465", "city" : "TROY", "loc" : [ -72.184753, 42.82697 ], "pop" : NumberInt(2097), "state" : "NH" } { "_id" : "03837", "city" : "GILMANTON IRON W", "loc" : [ -71.330315, 43.425281 ], "pop" : NumberInt(1301), "state" : "NH" } { "_id" : "03844", "city" : "HAMPTON FALLS", "loc" : [ -70.887608, 42.926323 ], "pop" : NumberInt(1503), "state" : "NH" } { "_id" : "03854", "city" : "NEW CASTLE", "loc" : [ -70.719922, 43.068114 ], "pop" : NumberInt(840), "state" : "NH" } { "_id" : "03872", "city" : "SANBORNVILLE", "loc" : [ -71.020005, 43.551278 ], "pop" : NumberInt(2382), "state" : "NH" } { "_id" : "03873", "city" : "SANDOWN", "loc" : [ -71.18606, 42.930819 ], "pop" : NumberInt(4060), "state" : "NH" } { "_id" : "04015", "city" : "CASCO", "loc" : [ -70.526013, 43.959623 ], "pop" : NumberInt(3010), "state" : "ME" } { "_id" : "04027", "city" : "WEST LEBANON", "loc" : [ -70.910986, 43.410304 ], "pop" : NumberInt(5224), "state" : "ME" } { "_id" : "04043", "city" : "KENNEBUNK", "loc" : [ -70.547802, 43.388055 ], "pop" : NumberInt(7826), "state" : "ME" } { "_id" : "04047", "city" : "KEZAR FALLS", "loc" : [ -70.892717, 43.785361 ], "pop" : NumberInt(852), "state" : "ME" } { "_id" : "04060", "city" : "NORTH SHAPLEIGH", "loc" : [ -70.874392, 43.583458 ], "pop" : NumberInt(302), "state" : "ME" } { "_id" : "04081", "city" : "SOUTH WATERFORD", "loc" : [ -70.792061, 44.151256 ], "pop" : NumberInt(439), "state" : "ME" } { "_id" : "04102", "city" : "PORTLAND", "loc" : [ -70.28981, 43.660168 ], "pop" : NumberInt(17660), "state" : "ME" } { "_id" : "04108", "city" : "PEAKS ISLAND", "loc" : [ -70.194017, 43.658921 ], "pop" : NumberInt(775), "state" : "ME" } { "_id" : "04226", "city" : "EAST ANDOVER", "loc" : [ -70.729555, 44.603011 ], "pop" : NumberInt(154), "state" : "ME" } { "_id" : "04231", "city" : "EAST STONEHAM", "loc" : [ -70.852936, 44.238201 ], "pop" : NumberInt(429), "state" : "ME" } { "_id" : "04267", "city" : "NORTH WATERFORD", "loc" : [ -70.717393, 44.206511 ], "pop" : NumberInt(1168), "state" : "ME" } { "_id" : "04289", "city" : "WEST PARIS", "loc" : [ -70.573167, 44.32527 ], "pop" : NumberInt(2149), "state" : "ME" } { "_id" : "01436", "city" : "BALDWINVILLE", "loc" : [ -72.064647, 42.593568 ], "pop" : NumberInt(4386), "state" : "MA" } { "_id" : "01507", "city" : "CHARLTON", "loc" : [ -71.966384, 42.137902 ], "pop" : NumberInt(9576), "state" : "MA" } { "_id" : "01516", "city" : "EAST DOUGLAS", "loc" : [ -71.726611, 42.060566 ], "pop" : NumberInt(5594), "state" : "MA" } { "_id" : "01905", "city" : "WEST LYNN", "loc" : [ -70.973825, 42.46453 ], "pop" : NumberInt(21360), "state" : "MA" } { "_id" : "01969", "city" : "ROWLEY", "loc" : [ -70.90696, 42.713753 ], "pop" : NumberInt(4368), "state" : "MA" } { "_id" : "02111", "city" : "BOSTON", "loc" : [ -71.0629, 42.350348 ], "pop" : NumberInt(3759), "state" : "MA" } { "_id" : "02150", "city" : "CHELSEA", "loc" : [ -71.032521, 42.396252 ], "pop" : NumberInt(28790), "state" : "MA" } { "_id" : "02154", "city" : "NORTH WALTHAM", "loc" : [ -71.236497, 42.382492 ], "pop" : NumberInt(57871), "state" : "MA" } { "_id" : "02173", "city" : "LEXINGTON", "loc" : [ -71.225916, 42.445384 ], "pop" : NumberInt(28994), "state" : "MA" } { "_id" : "02193", "city" : "WESTON", "loc" : [ -71.300291, 42.359422 ], "pop" : NumberInt(10221), "state" : "MA" } { "_id" : "02324", "city" : "BRIDGEWATER", "loc" : [ -70.97234, 41.977341 ], "pop" : NumberInt(21198), "state" : "MA" } { "_id" : "02332", "city" : "DUXBURY", "loc" : [ -70.716257, 42.039936 ], "pop" : NumberInt(13913), "state" : "MA" } { "_id" : "02338", "city" : "HALIFAX", "loc" : [ -70.844794, 42.000159 ], "pop" : NumberInt(6526), "state" : "MA" } { "_id" : "02368", "city" : "RANDOLPH", "loc" : [ -71.051392, 42.173587 ], "pop" : NumberInt(30057), "state" : "MA" } { "_id" : "02542", "city" : "OTIS A F B", "loc" : [ -70.57383, 41.660927 ], "pop" : NumberInt(2078), "state" : "MA" } { "_id" : "02743", "city" : "ACUSHNET", "loc" : [ -70.908652, 41.6997 ], "pop" : NumberInt(9601), "state" : "MA" } { "_id" : "02807", "city" : "BLOCK ISLAND", "loc" : [ -71.574825, 41.171546 ], "pop" : NumberInt(836), "state" : "RI" } { "_id" : "02813", "city" : "CHARLESTOWN", "loc" : [ -71.661455, 41.400749 ], "pop" : NumberInt(6663), "state" : "RI" } { "_id" : "02835", "city" : "JAMESTOWN", "loc" : [ -71.376108, 41.516405 ], "pop" : NumberInt(4999), "state" : "RI" } { "_id" : "02876", "city" : "SLATERSVILLE", "loc" : [ -71.5682, 42.001478 ], "pop" : NumberInt(639), "state" : "RI" } { "_id" : "02889", "city" : "WARWICK", "loc" : [ -71.390146, 41.714069 ], "pop" : NumberInt(20849), "state" : "RI" } { "_id" : "02891", "city" : "WESTERLY", "loc" : [ -71.812643, 41.369128 ], "pop" : NumberInt(20290), "state" : "RI" } { "_id" : "02905", "city" : "CRANSTON", "loc" : [ -71.403146, 41.786568 ], "pop" : NumberInt(24885), "state" : "RI" } { "_id" : "02906", "city" : "PROVIDENCE", "loc" : [ -71.397065, 41.835104 ], "pop" : NumberInt(31069), "state" : "RI" } { "_id" : "02909", "city" : "CRANSTON", "loc" : [ -71.448165, 41.816777 ], "pop" : NumberInt(34261), "state" : "RI" } { "_id" : "03045", "city" : "DUNBARTON", "loc" : [ -71.56264, 43.018224 ], "pop" : NumberInt(9428), "state" : "NH" } { "_id" : "03055", "city" : "MILFORD", "loc" : [ -71.660569, 42.828497 ], "pop" : NumberInt(11795), "state" : "NH" } { "_id" : "03057", "city" : "MONT VERNON", "loc" : [ -71.676243, 42.897597 ], "pop" : NumberInt(1812), "state" : "NH" } { "_id" : "03102", "city" : "MANCHESTER", "loc" : [ -71.488433, 42.99442 ], "pop" : NumberInt(29308), "state" : "NH" } { "_id" : "03104", "city" : "MANCHESTER", "loc" : [ -71.448233, 43.007307 ], "pop" : NumberInt(29950), "state" : "NH" } { "_id" : "03253", "city" : "MEREDITH", "loc" : [ -71.511327, 43.650208 ], "pop" : NumberInt(5959), "state" : "NH" } { "_id" : "03264", "city" : "PLYMOUTH", "loc" : [ -71.684714, 43.763524 ], "pop" : NumberInt(8980), "state" : "NH" } { "_id" : "03278", "city" : "WARNER", "loc" : [ -71.835349, 43.303512 ], "pop" : NumberInt(3265), "state" : "NH" } { "_id" : "03279", "city" : "WARREN", "loc" : [ -71.89013, 43.944667 ], "pop" : NumberInt(886), "state" : "NH" } { "_id" : "03431", "city" : "SURRY", "loc" : [ -72.28954, 42.943127 ], "pop" : NumberInt(23882), "state" : "NH" } { "_id" : "03570", "city" : "BERLIN", "loc" : [ -71.189236, 44.48107 ], "pop" : NumberInt(12892), "state" : "NH" } { "_id" : "03590", "city" : "NORTH STRATFORD", "loc" : [ -71.564368, 44.714915 ], "pop" : NumberInt(927), "state" : "NH" } { "_id" : "03609", "city" : "NORTH WALPOLE", "loc" : [ -72.448253, 43.142759 ], "pop" : NumberInt(744), "state" : "NH" } { "_id" : "03770", "city" : "MERIDEN", "loc" : [ -72.275644, 43.529873 ], "pop" : NumberInt(126), "state" : "NH" } { "_id" : "03781", "city" : "PLAINFIELD", "loc" : [ -72.270398, 43.551919 ], "pop" : NumberInt(1314), "state" : "NH" } { "_id" : "03838", "city" : "GLEN", "loc" : [ -71.192457, 44.101777 ], "pop" : NumberInt(84), "state" : "NH" } { "_id" : "03858", "city" : "NEWTON", "loc" : [ -71.042021, 42.867805 ], "pop" : NumberInt(2944), "state" : "NH" } { "_id" : "04024", "city" : "EAST BALDWIN", "loc" : [ -70.692159, 43.864604 ], "pop" : NumberInt(976), "state" : "ME" } { "_id" : "04030", "city" : "EAST WATERBORO", "loc" : [ -70.690626, 43.599537 ], "pop" : NumberInt(1153), "state" : "ME" } { "_id" : "04049", "city" : "LIMINGTON", "loc" : [ -70.675178, 43.726031 ], "pop" : NumberInt(776), "state" : "ME" } { "_id" : "04051", "city" : "LOVELL", "loc" : [ -70.929951, 44.161404 ], "pop" : NumberInt(763), "state" : "ME" } { "_id" : "04087", "city" : "WATERBORO", "loc" : [ -70.743115, 43.566097 ], "pop" : NumberInt(1797), "state" : "ME" } { "_id" : "04223", "city" : "DANVILLE", "loc" : [ -70.272055, 44.036528 ], "pop" : NumberInt(1086), "state" : "ME" } { "_id" : "04228", "city" : "EAST LIVERMORE", "loc" : [ -70.130334, 44.399402 ], "pop" : NumberInt(560), "state" : "ME" } { "_id" : "04364", "city" : "WINTHROP", "loc" : [ -69.973128, 44.314031 ], "pop" : NumberInt(7929), "state" : "ME" } { "_id" : "04412", "city" : "BREWER", "loc" : [ -68.753896, 44.787433 ], "pop" : NumberInt(9021), "state" : "ME" } { "_id" : "04458", "city" : "LINCOLN CENTER", "loc" : [ -68.457065, 45.431731 ], "pop" : NumberInt(1556), "state" : "ME" } { "_id" : "04459", "city" : "MATTAWAMKEAG", "loc" : [ -68.35195, 45.526387 ], "pop" : NumberInt(841), "state" : "ME" } { "_id" : "04490", "city" : "TOPSFIELD", "loc" : [ -67.747253, 45.430403 ], "pop" : NumberInt(274), "state" : "ME" } { "_id" : "04551", "city" : "MEDOMAK", "loc" : [ -69.430664, 44.006292 ], "pop" : NumberInt(540), "state" : "ME" } { "_id" : "01432", "city" : "AYER", "loc" : [ -71.578763, 42.55914 ], "pop" : NumberInt(6871), "state" : "MA" } { "_id" : "01719", "city" : "BOXBORO", "loc" : [ -71.518229, 42.486876 ], "pop" : NumberInt(3343), "state" : "MA" } { "_id" : "01745", "city" : "SOUTHBOROUGH", "loc" : [ -71.502256, 42.293221 ], "pop" : NumberInt(506), "state" : "MA" } { "_id" : "01863", "city" : "NORTH CHELMSFORD", "loc" : [ -71.390834, 42.634737 ], "pop" : NumberInt(7878), "state" : "MA" } { "_id" : "01876", "city" : "TEWKSBURY", "loc" : [ -71.223224, 42.60283 ], "pop" : NumberInt(27269), "state" : "MA" } { "_id" : "01970", "city" : "SALEM", "loc" : [ -70.900343, 42.515114 ], "pop" : NumberInt(37642), "state" : "MA" } { "_id" : "01982", "city" : "SOUTH HAMILTON", "loc" : [ -70.856132, 42.618478 ], "pop" : NumberInt(7288), "state" : "MA" } { "_id" : "02126", "city" : "MATTAPAN", "loc" : [ -71.093871, 42.273889 ], "pop" : NumberInt(27808), "state" : "MA" } { "_id" : "02165", "city" : "NEWTONVILLE", "loc" : [ -71.22795, 42.352366 ], "pop" : NumberInt(12027), "state" : "MA" } { "_id" : "02172", "city" : "EAST WATERTOWN", "loc" : [ -71.180266, 42.371497 ], "pop" : NumberInt(33930), "state" : "MA" } { "_id" : "02174", "city" : "ARLINGTON", "loc" : [ -71.162517, 42.417098 ], "pop" : NumberInt(44539), "state" : "MA" } { "_id" : "02191", "city" : "WEYMOUTH", "loc" : [ -70.944318, 42.243564 ], "pop" : NumberInt(9153), "state" : "MA" } { "_id" : "02536", "city" : "TEATICKET", "loc" : [ -70.565174, 41.58504 ], "pop" : NumberInt(15976), "state" : "MA" } { "_id" : "02538", "city" : "EAST WAREHAM", "loc" : [ -70.653237, 41.768247 ], "pop" : NumberInt(4778), "state" : "MA" } { "_id" : "02576", "city" : "WEST WAREHAM", "loc" : [ -70.764179, 41.779617 ], "pop" : NumberInt(3919), "state" : "MA" } { "_id" : "02631", "city" : "BREWSTER", "loc" : [ -70.069868, 41.749179 ], "pop" : NumberInt(8535), "state" : "MA" } { "_id" : "02646", "city" : "HARWICH PORT", "loc" : [ -70.076755, 41.67128 ], "pop" : NumberInt(1843), "state" : "MA" } { "_id" : "02816", "city" : "COVENTRY", "loc" : [ -71.576794, 41.69143 ], "pop" : NumberInt(29842), "state" : "RI" } { "_id" : "02827", "city" : "GREENE", "loc" : [ -71.735607, 41.706151 ], "pop" : NumberInt(1241), "state" : "RI" } { "_id" : "02903", "city" : "PROVIDENCE", "loc" : [ -71.415801, 41.820002 ], "pop" : NumberInt(9093), "state" : "RI" } { "_id" : "03037", "city" : "DEERFIELD", "loc" : [ -71.251264, 43.137756 ], "pop" : NumberInt(3124), "state" : "NH" } { "_id" : "03071", "city" : "NEW IPSWICH", "loc" : [ -71.870318, 42.751142 ], "pop" : NumberInt(4014), "state" : "NH" } { "_id" : "03110", "city" : "BEDFORD", "loc" : [ -71.52127, 42.940307 ], "pop" : NumberInt(12468), "state" : "NH" } { "_id" : "03256", "city" : "NEW HAMPTON", "loc" : [ -71.643513, 43.618393 ], "pop" : NumberInt(1214), "state" : "NH" } { "_id" : "03303", "city" : "BOSCAWEN", "loc" : [ -71.612723, 43.285285 ], "pop" : NumberInt(12046), "state" : "NH" } { "_id" : "03464", "city" : "STODDARD", "loc" : [ -72.108811, 43.073944 ], "pop" : NumberInt(622), "state" : "NH" } { "_id" : "03750", "city" : "ETNA", "loc" : [ -72.212479, 43.711333 ], "pop" : NumberInt(944), "state" : "NH" } { "_id" : "03752", "city" : "GOSHEN", "loc" : [ -72.124117, 43.302623 ], "pop" : NumberInt(742), "state" : "NH" } { "_id" : "03779", "city" : "PIERMONT", "loc" : [ -72.081299, 43.990572 ], "pop" : NumberInt(431), "state" : "NH" } { "_id" : "03785", "city" : "WOODSVILLE", "loc" : [ -71.989215, 44.138549 ], "pop" : NumberInt(2292), "state" : "NH" } { "_id" : "03841", "city" : "HAMPSTEAD", "loc" : [ -71.175802, 42.881957 ], "pop" : NumberInt(5291), "state" : "NH" } { "_id" : "04003", "city" : "BAILEY ISLAND", "loc" : [ -69.995175, 43.734147 ], "pop" : NumberInt(464), "state" : "ME" } { "_id" : "04009", "city" : "BRIDGTON", "loc" : [ -70.724081, 44.052049 ], "pop" : NumberInt(3980), "state" : "ME" } { "_id" : "04076", "city" : "SHAPLEIGH", "loc" : [ -70.828619, 43.567353 ], "pop" : NumberInt(314), "state" : "ME" } { "_id" : "04085", "city" : "STEEP FALLS", "loc" : [ -70.645627, 43.757137 ], "pop" : NumberInt(2060), "state" : "ME" } { "_id" : "04090", "city" : "WELLS", "loc" : [ -70.596883, 43.314352 ], "pop" : NumberInt(5590), "state" : "ME" } { "_id" : "04096", "city" : "YARMOUTH", "loc" : [ -70.174958, 43.800933 ], "pop" : NumberInt(3068), "state" : "ME" } { "_id" : "04238", "city" : "HEBRON", "loc" : [ -70.375369, 44.202136 ], "pop" : NumberInt(826), "state" : "ME" } { "_id" : "04250", "city" : "LISBON", "loc" : [ -70.113933, 44.025511 ], "pop" : NumberInt(3633), "state" : "ME" } { "_id" : "04290", "city" : "PERU", "loc" : [ -70.443459, 44.494408 ], "pop" : NumberInt(1541), "state" : "ME" } { "_id" : "04355", "city" : "READFIELD", "loc" : [ -69.950634, 44.403221 ], "pop" : NumberInt(1725), "state" : "ME" } { "_id" : "04426", "city" : "DOVER FOXCROFT", "loc" : [ -69.204472, 45.18774 ], "pop" : NumberInt(5924), "state" : "ME" } { "_id" : "04434", "city" : "ETNA", "loc" : [ -69.132225, 44.793232 ], "pop" : NumberInt(966), "state" : "ME" } { "_id" : "04491", "city" : "VANCEBORO", "loc" : [ -67.463419, 45.558761 ], "pop" : NumberInt(217), "state" : "ME" } { "_id" : "04574", "city" : "WASHINGTON", "loc" : [ -69.384237, 44.269281 ], "pop" : NumberInt(1261), "state" : "ME" } { "_id" : "01301", "city" : "LEYDEN", "loc" : [ -72.601847, 42.601222 ], "pop" : NumberInt(18968), "state" : "MA" } { "_id" : "01342", "city" : "DEERFIELD", "loc" : [ -72.607234, 42.540636 ], "pop" : NumberInt(1281), "state" : "MA" } { "_id" : "01474", "city" : "W TOWNSEND", "loc" : [ -71.74057, 42.670404 ], "pop" : NumberInt(2452), "state" : "MA" } { "_id" : "01519", "city" : "GRAFTON", "loc" : [ -71.686848, 42.200371 ], "pop" : NumberInt(4910), "state" : "MA" } { "_id" : "01532", "city" : "NORTHBOROUGH", "loc" : [ -71.646372, 42.318242 ], "pop" : NumberInt(11930), "state" : "MA" } { "_id" : "01540", "city" : "OXFORD", "loc" : [ -71.868677, 42.11285 ], "pop" : NumberInt(9557), "state" : "MA" } { "_id" : "01585", "city" : "WEST BROOKFIELD", "loc" : [ -72.151137, 42.244137 ], "pop" : NumberInt(3528), "state" : "MA" } { "_id" : "01605", "city" : "WORCESTER", "loc" : [ -71.788795, 42.289391 ], "pop" : NumberInt(25695), "state" : "MA" } { "_id" : "01610", "city" : "WORCESTER", "loc" : [ -71.810798, 42.249186 ], "pop" : NumberInt(23720), "state" : "MA" } { "_id" : "01720", "city" : "ACTON", "loc" : [ -71.448255, 42.475076 ], "pop" : NumberInt(15514), "state" : "MA" } { "_id" : "01721", "city" : "ASHLAND", "loc" : [ -71.458347, 42.253909 ], "pop" : NumberInt(12066), "state" : "MA" } { "_id" : "01741", "city" : "CARLISLE", "loc" : [ -71.351892, 42.528562 ], "pop" : NumberInt(4333), "state" : "MA" } { "_id" : "01748", "city" : "HOPKINTON", "loc" : [ -71.530178, 42.219046 ], "pop" : NumberInt(9191), "state" : "MA" } { "_id" : "01801", "city" : "WOBURN", "loc" : [ -71.157404, 42.482894 ], "pop" : NumberInt(36152), "state" : "MA" } { "_id" : "01906", "city" : "SAUGUS", "loc" : [ -71.011093, 42.463344 ], "pop" : NumberInt(25487), "state" : "MA" } { "_id" : "02030", "city" : "DOVER", "loc" : [ -71.285363, 42.236233 ], "pop" : NumberInt(4915), "state" : "MA" } { "_id" : "02053", "city" : "MEDWAY", "loc" : [ -71.421715, 42.151363 ], "pop" : NumberInt(9902), "state" : "MA" } { "_id" : "02114", "city" : "BOSTON", "loc" : [ -71.06823, 42.361111 ], "pop" : NumberInt(10246), "state" : "MA" } { "_id" : "02124", "city" : "DORCHESTER", "loc" : [ -71.072898, 42.287984 ], "pop" : NumberInt(48560), "state" : "MA" } { "_id" : "02129", "city" : "CHARLESTOWN", "loc" : [ -71.062715, 42.377815 ], "pop" : NumberInt(14775), "state" : "MA" } { "_id" : "02149", "city" : "EVERETT", "loc" : [ -71.051448, 42.411199 ], "pop" : NumberInt(35493), "state" : "MA" } { "_id" : "02171", "city" : "QUINCY", "loc" : [ -71.024141, 42.282519 ], "pop" : NumberInt(18251), "state" : "MA" } { "_id" : "02188", "city" : "WEYMOUTH", "loc" : [ -70.958248, 42.211327 ], "pop" : NumberInt(13187), "state" : "MA" } { "_id" : "02192", "city" : "NEEDHAM", "loc" : [ -71.235172, 42.278908 ], "pop" : NumberInt(19570), "state" : "MA" } { "_id" : "02194", "city" : "NEEDHAM", "loc" : [ -71.234363, 42.297702 ], "pop" : NumberInt(8006), "state" : "MA" } { "_id" : "01247", "city" : "CLARKSBURG", "loc" : [ -73.10999, 42.69865 ], "pop" : NumberInt(19054), "state" : "MA" } { "_id" : "02568", "city" : "VINEYARD HAVEN", "loc" : [ -70.593737, 41.449955 ], "pop" : NumberInt(5924), "state" : "MA" } { "_id" : "02648", "city" : "MARSTONS MILLS", "loc" : [ -70.416321, 41.670274 ], "pop" : NumberInt(5777), "state" : "MA" } { "_id" : "02659", "city" : "SOUTH CHATHAM", "loc" : [ -70.024106, 41.680126 ], "pop" : NumberInt(840), "state" : "MA" } { "_id" : "02723", "city" : "FALL RIVER", "loc" : [ -71.133214, 41.692612 ], "pop" : NumberInt(16801), "state" : "MA" } { "_id" : "02804", "city" : "ASHAWAY", "loc" : [ -71.783745, 41.423054 ], "pop" : NumberInt(2472), "state" : "RI" } { "_id" : "02809", "city" : "BRISTOL", "loc" : [ -71.267558, 41.68247 ], "pop" : NumberInt(21625), "state" : "RI" } { "_id" : "02825", "city" : "FOSTER", "loc" : [ -71.718748, 41.781455 ], "pop" : NumberInt(5175), "state" : "RI" } { "_id" : "02879", "city" : "NARRAGANSETT", "loc" : [ -71.525138, 41.430195 ], "pop" : NumberInt(13422), "state" : "RI" } { "_id" : "02881", "city" : "KINGSTON", "loc" : [ -71.529239, 41.480295 ], "pop" : NumberInt(7683), "state" : "RI" } { "_id" : "02895", "city" : "NORTH SMITHFIELD", "loc" : [ -71.513683, 41.99948 ], "pop" : NumberInt(53733), "state" : "RI" } { "_id" : "02910", "city" : "CRANSTON", "loc" : [ -71.438331, 41.776572 ], "pop" : NumberInt(21128), "state" : "RI" } { "_id" : "03053", "city" : "LONDONDERRY", "loc" : [ -71.37719, 42.865555 ], "pop" : NumberInt(19687), "state" : "NH" } { "_id" : "03220", "city" : "BELMONT", "loc" : [ -71.488991, 43.451189 ], "pop" : NumberInt(2997), "state" : "NH" } { "_id" : "03269", "city" : "SANBORNTON", "loc" : [ -71.600348, 43.549552 ], "pop" : NumberInt(699), "state" : "NH" } { "_id" : "03768", "city" : "LYME", "loc" : [ -72.161993, 43.791327 ], "pop" : NumberInt(2172), "state" : "NH" } { "_id" : "03771", "city" : "MONROE", "loc" : [ -72.025028, 44.273358 ], "pop" : NumberInt(760), "state" : "NH" } { "_id" : "03782", "city" : "SUNAPEE", "loc" : [ -72.095044, 43.386816 ], "pop" : NumberInt(2570), "state" : "NH" } { "_id" : "03815", "city" : "CENTER STRAFFORD", "loc" : [ -71.107122, 43.262888 ], "pop" : NumberInt(436), "state" : "NH" } { "_id" : "03835", "city" : "FARMINGTON", "loc" : [ -71.064693, 43.388373 ], "pop" : NumberInt(4676), "state" : "NH" } { "_id" : "03845", "city" : "INTERVALE", "loc" : [ -71.119415, 44.095479 ], "pop" : NumberInt(1811), "state" : "NH" } { "_id" : "03853", "city" : "MIRROR LAKE", "loc" : [ -71.272858, 43.636552 ], "pop" : NumberInt(696), "state" : "NH" } { "_id" : "03874", "city" : "SEABROOK", "loc" : [ -70.86464, 42.88536 ], "pop" : NumberInt(6503), "state" : "NH" } { "_id" : "03886", "city" : "TAMWORTH", "loc" : [ -71.264454, 43.862049 ], "pop" : NumberInt(1285), "state" : "NH" } { "_id" : "03901", "city" : "BERWICK", "loc" : [ -70.855038, 43.28992 ], "pop" : NumberInt(5942), "state" : "ME" } { "_id" : "03903", "city" : "ELIOT", "loc" : [ -70.782216, 43.130943 ], "pop" : NumberInt(6506), "state" : "ME" } { "_id" : "04021", "city" : "CUMBERLAND CENTE", "loc" : [ -70.2484, 43.809818 ], "pop" : NumberInt(8544), "state" : "ME" } { "_id" : "04039", "city" : "GRAY", "loc" : [ -70.342939, 43.894202 ], "pop" : NumberInt(5383), "state" : "ME" } { "_id" : "04040", "city" : "HARRISON", "loc" : [ -70.653855, 44.107099 ], "pop" : NumberInt(2274), "state" : "ME" } { "_id" : "04068", "city" : "PORTER", "loc" : [ -70.924266, 43.826216 ], "pop" : NumberInt(985), "state" : "ME" } { "_id" : "04221", "city" : "CANTON", "loc" : [ -70.321719, 44.418894 ], "pop" : NumberInt(1673), "state" : "ME" } { "_id" : "04239", "city" : "JAY", "loc" : [ -70.209883, 44.515994 ], "pop" : NumberInt(4631), "state" : "ME" } { "_id" : "04273", "city" : "POLAND", "loc" : [ -70.411819, 44.059187 ], "pop" : NumberInt(179), "state" : "ME" } { "_id" : "04278", "city" : "RUMFORD CENTER", "loc" : [ -70.700058, 44.592334 ], "pop" : NumberInt(92), "state" : "ME" } { "_id" : "04280", "city" : "SABATTUS", "loc" : [ -70.074792, 44.113269 ], "pop" : NumberInt(4809), "state" : "ME" } { "_id" : "04361", "city" : "WEEKS MILLS", "loc" : [ -69.541738, 44.407543 ], "pop" : NumberInt(2942), "state" : "ME" } { "_id" : "04411", "city" : "BRADLEY", "loc" : [ -68.626328, 44.901454 ], "pop" : NumberInt(1136), "state" : "ME" } { "_id" : "04416", "city" : "BUCKSPORT", "loc" : [ -68.776823, 44.601546 ], "pop" : NumberInt(5340), "state" : "ME" } { "_id" : "04471", "city" : "NORTH AMITY", "loc" : [ -67.837741, 45.805639 ], "pop" : NumberInt(138), "state" : "ME" } { "_id" : "04558", "city" : "PEMAQUID", "loc" : [ -69.528919, 43.892389 ], "pop" : NumberInt(103), "state" : "ME" } { "_id" : "01266", "city" : "WEST STOCKBRIDGE", "loc" : [ -73.38251, 42.334752 ], "pop" : NumberInt(1173), "state" : "MA" } { "_id" : "01338", "city" : "BUCKLAND", "loc" : [ -72.764124, 42.615174 ], "pop" : NumberInt(16), "state" : "MA" } { "_id" : "01379", "city" : "WENDELL", "loc" : [ -72.400851, 42.565644 ], "pop" : NumberInt(393), "state" : "MA" } { "_id" : "01431", "city" : "ASHBY", "loc" : [ -71.817369, 42.674462 ], "pop" : NumberInt(2649), "state" : "MA" } { "_id" : "01433", "city" : "FT DEVENS", "loc" : [ -71.621819, 42.532416 ], "pop" : NumberInt(8480), "state" : "MA" } { "_id" : "01531", "city" : "NEW BRAINTREE", "loc" : [ -72.130642, 42.31977 ], "pop" : NumberInt(881), "state" : "MA" } { "_id" : "01570", "city" : "DUDLEY HILL", "loc" : [ -71.839467, 42.047574 ], "pop" : NumberInt(3735), "state" : "MA" } { "_id" : "01606", "city" : "WORCESTER", "loc" : [ -71.795774, 42.311029 ], "pop" : NumberInt(18213), "state" : "MA" } { "_id" : "01754", "city" : "MAYNARD", "loc" : [ -71.454975, 42.432118 ], "pop" : NumberInt(10325), "state" : "MA" } { "_id" : "01830", "city" : "HAVERHILL", "loc" : [ -71.072057, 42.785605 ], "pop" : NumberInt(22445), "state" : "MA" } { "_id" : "01860", "city" : "MERRIMAC", "loc" : [ -71.004658, 42.834629 ], "pop" : NumberInt(5196), "state" : "MA" } { "_id" : "01890", "city" : "WINCHESTER", "loc" : [ -71.14407, 42.453028 ], "pop" : NumberInt(20232), "state" : "MA" } { "_id" : "01938", "city" : "IPSWICH", "loc" : [ -70.849353, 42.680877 ], "pop" : NumberInt(11864), "state" : "MA" } { "_id" : "01960", "city" : "PEABODY", "loc" : [ -70.961194, 42.532579 ], "pop" : NumberInt(47685), "state" : "MA" } { "_id" : "02019", "city" : "BELLINGHAM", "loc" : [ -71.476829, 42.074573 ], "pop" : NumberInt(14873), "state" : "MA" } { "_id" : "02026", "city" : "DEDHAM", "loc" : [ -71.163741, 42.243685 ], "pop" : NumberInt(23782), "state" : "MA" } { "_id" : "02052", "city" : "MEDFIELD", "loc" : [ -71.304813, 42.184525 ], "pop" : NumberInt(10531), "state" : "MA" } { "_id" : "02062", "city" : "NORWOOD", "loc" : [ -71.203313, 42.186843 ], "pop" : NumberInt(28700), "state" : "MA" } { "_id" : "02116", "city" : "BOSTON", "loc" : [ -71.076798, 42.349201 ], "pop" : NumberInt(17459), "state" : "MA" } { "_id" : "02163", "city" : "CAMBRIDGE", "loc" : [ -71.141879, 42.364005 ], "pop" : NumberInt(0), "state" : "MA" } { "_id" : "02167", "city" : "BOSTON COLLEGE", "loc" : [ -71.16272, 42.31903 ], "pop" : NumberInt(15619), "state" : "MA" } { "_id" : "02170", "city" : "QUINCY", "loc" : [ -71.018644, 42.26713 ], "pop" : NumberInt(18330), "state" : "MA" } { "_id" : "02364", "city" : "KINGSTON", "loc" : [ -70.740993, 41.995022 ], "pop" : NumberInt(9045), "state" : "MA" } { "_id" : "02382", "city" : "WHITMAN", "loc" : [ -70.938127, 42.081603 ], "pop" : NumberInt(13208), "state" : "MA" } { "_id" : "02664", "city" : "BASS RIVER", "loc" : [ -70.19731, 41.672805 ], "pop" : NumberInt(8514), "state" : "MA" } { "_id" : "02718", "city" : "EAST TAUNTON", "loc" : [ -71.019225, 41.873585 ], "pop" : NumberInt(4800), "state" : "MA" } { "_id" : "02719", "city" : "FAIRHAVEN", "loc" : [ -70.889608, 41.640924 ], "pop" : NumberInt(16141), "state" : "MA" } { "_id" : "02808", "city" : "BRADFORD", "loc" : [ -71.746453, 41.411448 ], "pop" : NumberInt(2184), "state" : "RI" } { "_id" : "02812", "city" : "RICHMOND", "loc" : [ -71.650279, 41.46941 ], "pop" : NumberInt(1011), "state" : "RI" } { "_id" : "02817", "city" : "WEST GREENWICH", "loc" : [ -71.643549, 41.639977 ], "pop" : NumberInt(3246), "state" : "RI" } { "_id" : "02857", "city" : "NORTH SCITUATE", "loc" : [ -71.624187, 41.8439 ], "pop" : NumberInt(9563), "state" : "RI" } { "_id" : "02883", "city" : "PEACE DALE", "loc" : [ -71.500057, 41.45157 ], "pop" : NumberInt(1652), "state" : "RI" } { "_id" : "02885", "city" : "WARREN", "loc" : [ -71.270165, 41.725618 ], "pop" : NumberInt(11385), "state" : "RI" } { "_id" : "02904", "city" : "CENTREDALE", "loc" : [ -71.438102, 41.860461 ], "pop" : NumberInt(28119), "state" : "RI" } { "_id" : "03048", "city" : "MASON", "loc" : [ -71.784487, 42.7489 ], "pop" : NumberInt(3443), "state" : "NH" } { "_id" : "03051", "city" : "HUDSON", "loc" : [ -71.412144, 42.769038 ], "pop" : NumberInt(26489), "state" : "NH" } { "_id" : "03060", "city" : "NASHUA", "loc" : [ -71.466684, 42.756395 ], "pop" : NumberInt(41438), "state" : "NH" } { "_id" : "03221", "city" : "BRADFORD", "loc" : [ -71.985048, 43.294343 ], "pop" : NumberInt(3273), "state" : "NH" } { "_id" : "03224", "city" : "CANTERBURY", "loc" : [ -71.557008, 43.357041 ], "pop" : NumberInt(2085), "state" : "NH" } { "_id" : "03254", "city" : "MOULTONBOROUGH", "loc" : [ -71.392245, 43.728133 ], "pop" : NumberInt(3208), "state" : "NH" } { "_id" : "03259", "city" : "NORTH SANDWICH", "loc" : [ -71.385025, 43.845182 ], "pop" : NumberInt(338), "state" : "NH" } { "_id" : "03268", "city" : "SALISBURY", "loc" : [ -71.704468, 43.406652 ], "pop" : NumberInt(140), "state" : "NH" } { "_id" : "03447", "city" : "FITZWILLIAM", "loc" : [ -72.145014, 42.7611 ], "pop" : NumberInt(2016), "state" : "NH" } { "_id" : "03451", "city" : "HINSDALE", "loc" : [ -72.501474, 42.802714 ], "pop" : NumberInt(3936), "state" : "NH" } { "_id" : "03607", "city" : "SOUTH ACWORTH", "loc" : [ -72.341053, 43.176942 ], "pop" : NumberInt(1008), "state" : "NH" } { "_id" : "03784", "city" : "WEST LEBANON", "loc" : [ -72.300735, 43.64401 ], "pop" : NumberInt(3784), "state" : "NH" } { "_id" : "03814", "city" : "CENTER OSSIPEE", "loc" : [ -71.134882, 43.768189 ], "pop" : NumberInt(2492), "state" : "NH" } { "_id" : "03818", "city" : "CONWAY", "loc" : [ -71.15028, 43.974161 ], "pop" : NumberInt(1875), "state" : "NH" } { "_id" : "03824", "city" : "LEE", "loc" : [ -70.952333, 43.133821 ], "pop" : NumberInt(15487), "state" : "NH" } { "_id" : "03840", "city" : "GREENLAND", "loc" : [ -70.847476, 43.035294 ], "pop" : NumberInt(2450), "state" : "NH" } { "_id" : "03857", "city" : "NEWMARKET", "loc" : [ -70.955317, 43.072628 ], "pop" : NumberInt(9049), "state" : "NH" } { "_id" : "03894", "city" : "WOLFEBORO", "loc" : [ -71.190843, 43.594996 ], "pop" : NumberInt(5586), "state" : "NH" } { "_id" : "04032", "city" : "FREEPORT", "loc" : [ -70.113854, 43.851093 ], "pop" : NumberInt(8081), "state" : "ME" } { "_id" : "04075", "city" : "SEBAGO LAKE", "loc" : [ -70.573454, 43.758355 ], "pop" : NumberInt(4141), "state" : "ME" } { "_id" : "04077", "city" : "SOUTH CASCO", "loc" : [ -70.512938, 43.876736 ], "pop" : NumberInt(250), "state" : "ME" } { "_id" : "04103", "city" : "PORTLAND", "loc" : [ -70.2876, 43.687568 ], "pop" : NumberInt(28461), "state" : "ME" } { "_id" : "04351", "city" : "MANCHESTER", "loc" : [ -69.884657, 44.308375 ], "pop" : NumberInt(603), "state" : "ME" } { "_id" : "04443", "city" : "GUILFORD", "loc" : [ -69.397491, 45.173455 ], "pop" : NumberInt(2833), "state" : "ME" } { "_id" : "04539", "city" : "BRISTOL", "loc" : [ -69.495367, 43.951864 ], "pop" : NumberInt(1220), "state" : "ME" } { "_id" : "04541", "city" : "CHAMBERLAIN", "loc" : [ -69.498618, 43.884154 ], "pop" : NumberInt(482), "state" : "ME" } { "_id" : "01262", "city" : "STOCKBRIDGE", "loc" : [ -73.322263, 42.30104 ], "pop" : NumberInt(2200), "state" : "MA" } { "_id" : "01367", "city" : "ROWE", "loc" : [ -72.925776, 42.695289 ], "pop" : NumberInt(630), "state" : "MA" } { "_id" : "01464", "city" : "SHIRLEY CENTER", "loc" : [ -71.646444, 42.558653 ], "pop" : NumberInt(6118), "state" : "MA" } { "_id" : "01527", "city" : "MILLBURY", "loc" : [ -71.764438, 42.196779 ], "pop" : NumberInt(12228), "state" : "MA" } { "_id" : "01583", "city" : "WEST BOYLSTON", "loc" : [ -71.783822, 42.35836 ], "pop" : NumberInt(6611), "state" : "MA" } { "_id" : "01602", "city" : "WORCESTER", "loc" : [ -71.841678, 42.270251 ], "pop" : NumberInt(19988), "state" : "MA" } { "_id" : "01749", "city" : "HUDSON", "loc" : [ -71.560896, 42.391796 ], "pop" : NumberInt(17233), "state" : "MA" } { "_id" : "01757", "city" : "MILFORD", "loc" : [ -71.527402, 42.151142 ], "pop" : NumberInt(25372), "state" : "MA" } { "_id" : "01840", "city" : "LAWRENCE", "loc" : [ -71.16381, 42.707958 ], "pop" : NumberInt(2728), "state" : "MA" } { "_id" : "01845", "city" : "NORTH ANDOVER", "loc" : [ -71.109004, 42.682583 ], "pop" : NumberInt(22792), "state" : "MA" } { "_id" : "01922", "city" : "BYFIELD", "loc" : [ -70.935053, 42.756792 ], "pop" : NumberInt(2006), "state" : "MA" } { "_id" : "02072", "city" : "STOUGHTON", "loc" : [ -71.107357, 42.125279 ], "pop" : NumberInt(26777), "state" : "MA" } { "_id" : "02122", "city" : "DORCHESTER", "loc" : [ -71.058304, 42.297278 ], "pop" : NumberInt(21266), "state" : "MA" } { "_id" : "02138", "city" : "CAMBRIDGE", "loc" : [ -71.125611, 42.377045 ], "pop" : NumberInt(33841), "state" : "MA" } { "_id" : "02159", "city" : "NEWTON CENTER", "loc" : [ -71.191839, 42.318889 ], "pop" : NumberInt(18726), "state" : "MA" } { "_id" : "02330", "city" : "CARVER", "loc" : [ -70.767754, 41.888265 ], "pop" : NumberInt(10573), "state" : "MA" } { "_id" : "02341", "city" : "HANSON", "loc" : [ -70.865053, 42.061627 ], "pop" : NumberInt(9037), "state" : "MA" } { "_id" : "02356", "city" : "NORTH EASTON", "loc" : [ -71.112337, 42.058956 ], "pop" : NumberInt(10397), "state" : "MA" } { "_id" : "02540", "city" : "FALMOUTH", "loc" : [ -70.621663, 41.564754 ], "pop" : NumberInt(8588), "state" : "MA" } { "_id" : "02563", "city" : "SANDWICH", "loc" : [ -70.469325, 41.698304 ], "pop" : NumberInt(9007), "state" : "MA" } { "_id" : "02652", "city" : "NORTH TRURO", "loc" : [ -70.08751, 42.033779 ], "pop" : NumberInt(834), "state" : "MA" } { "_id" : "02667", "city" : "WELLFLEET", "loc" : [ -70.018587, 41.928934 ], "pop" : NumberInt(2373), "state" : "MA" } { "_id" : "02675", "city" : "YARMOUTH PORT", "loc" : [ -70.227014, 41.705149 ], "pop" : NumberInt(5735), "state" : "MA" } { "_id" : "02748", "city" : "PADANARAM VILLAG", "loc" : [ -70.956521, 41.591728 ], "pop" : NumberInt(10980), "state" : "MA" } { "_id" : "02861", "city" : "PAWTUCKET", "loc" : [ -71.356001, 41.881384 ], "pop" : NumberInt(27013), "state" : "RI" } { "_id" : "02908", "city" : "PROVIDENCE", "loc" : [ -71.437684, 41.838294 ], "pop" : NumberInt(35933), "state" : "RI" } { "_id" : "02916", "city" : "RUMFORD", "loc" : [ -71.355938, 41.842472 ], "pop" : NumberInt(8550), "state" : "RI" } { "_id" : "03043", "city" : "FRANCESTOWN", "loc" : [ -71.81131, 42.991952 ], "pop" : NumberInt(1219), "state" : "NH" } { "_id" : "03047", "city" : "GREENFIELD", "loc" : [ -71.872755, 42.949277 ], "pop" : NumberInt(1422), "state" : "NH" } { "_id" : "03217", "city" : "ASHLAND", "loc" : [ -71.612085, 43.703428 ], "pop" : NumberInt(2056), "state" : "NH" } { "_id" : "03229", "city" : "HOPKINTON", "loc" : [ -71.696299, 43.218898 ], "pop" : NumberInt(6071), "state" : "NH" } { "_id" : "03231", "city" : "EAST ANDOVER", "loc" : [ -71.759606, 43.47766 ], "pop" : NumberInt(177), "state" : "NH" } { "_id" : "03237", "city" : "GILMANTON", "loc" : [ -71.412063, 43.417476 ], "pop" : NumberInt(1308), "state" : "NH" } { "_id" : "03241", "city" : "HEBRON", "loc" : [ -71.82696, 43.718571 ], "pop" : NumberInt(657), "state" : "NH" } { "_id" : "03291", "city" : "WEST NOTTINGHAM", "loc" : [ -71.111006, 43.133971 ], "pop" : NumberInt(27), "state" : "NH" } { "_id" : "03445", "city" : "EAST SULLIVAN", "loc" : [ -72.191778, 42.994005 ], "pop" : NumberInt(169), "state" : "NH" } { "_id" : "03450", "city" : "HARRISVILLE", "loc" : [ -72.097243, 42.939874 ], "pop" : NumberInt(981), "state" : "NH" } { "_id" : "03455", "city" : "MARLBOROUGH", "loc" : [ -72.201292, 42.898804 ], "pop" : NumberInt(1927), "state" : "NH" } { "_id" : "03580", "city" : "FRANCONIA", "loc" : [ -71.751822, 44.205273 ], "pop" : NumberInt(1090), "state" : "NH" } { "_id" : "03584", "city" : "LANCASTER", "loc" : [ -71.559115, 44.492074 ], "pop" : NumberInt(3825), "state" : "NH" } { "_id" : "03765", "city" : "HAVERHILL", "loc" : [ -72.057276, 44.039438 ], "pop" : NumberInt(498), "state" : "NH" } { "_id" : "03811", "city" : "ATKINSON", "loc" : [ -71.1603, 42.836981 ], "pop" : NumberInt(5145), "state" : "NH" } { "_id" : "03825", "city" : "BARRINGTON", "loc" : [ -71.037675, 43.2027 ], "pop" : NumberInt(5842), "state" : "NH" } { "_id" : "03842", "city" : "HAMPTON", "loc" : [ -70.824336, 42.935883 ], "pop" : NumberInt(12278), "state" : "NH" } { "_id" : "03852", "city" : "MILTON MILLS", "loc" : [ -70.969729, 43.502494 ], "pop" : NumberInt(514), "state" : "NH" } { "_id" : "03867", "city" : "ROCHESTER", "loc" : [ -71.055753, 43.309203 ], "pop" : NumberInt(3793), "state" : "NH" } { "_id" : "04011", "city" : "BIRCH ISLAND", "loc" : [ -69.955469, 43.897591 ], "pop" : NumberInt(22557), "state" : "ME" } { "_id" : "04048", "city" : "LIMERICK", "loc" : [ -70.786556, 43.696265 ], "pop" : NumberInt(2982), "state" : "ME" } { "_id" : "04066", "city" : "ORRS ISLAND", "loc" : [ -69.966793, 43.77267 ], "pop" : NumberInt(861), "state" : "ME" } { "_id" : "04093", "city" : "WEST BUXTON", "loc" : [ -70.601546, 43.661586 ], "pop" : NumberInt(4910), "state" : "ME" } { "_id" : "04106", "city" : "SOUTH PORTLAND", "loc" : [ -70.270878, 43.631847 ], "pop" : NumberInt(23131), "state" : "ME" } { "_id" : "04225", "city" : "DRYDEN", "loc" : [ -70.223962, 44.600218 ], "pop" : NumberInt(4520), "state" : "ME" } { "_id" : "04266", "city" : "NORTH TURNER", "loc" : [ -70.256147, 44.335031 ], "pop" : NumberInt(953), "state" : "ME" } { "_id" : "04276", "city" : "RUMFORD", "loc" : [ -70.564475, 44.543446 ], "pop" : NumberInt(7035), "state" : "ME" } { "_id" : "04279", "city" : "RUMFORD POINT", "loc" : [ -70.700276, 44.557104 ], "pop" : NumberInt(36), "state" : "ME" } { "_id" : "04281", "city" : "SOUTH PARIS", "loc" : [ -70.501179, 44.216674 ], "pop" : NumberInt(6054), "state" : "ME" } { "_id" : "04285", "city" : "WELD", "loc" : [ -70.4249, 44.701624 ], "pop" : NumberInt(430), "state" : "ME" } { "_id" : "04292", "city" : "WEST SUMNER", "loc" : [ -70.432314, 44.372804 ], "pop" : NumberInt(761), "state" : "ME" } { "_id" : "04342", "city" : "DRESDEN", "loc" : [ -69.745726, 44.078507 ], "pop" : NumberInt(1336), "state" : "ME" } { "_id" : "04350", "city" : "LITCHFIELD", "loc" : [ -69.958071, 44.163437 ], "pop" : NumberInt(2354), "state" : "ME" } { "_id" : "04352", "city" : "MOUNT VERNON", "loc" : [ -69.990336, 44.499342 ], "pop" : NumberInt(1396), "state" : "ME" } { "_id" : "04433", "city" : "ENFIELD", "loc" : [ -68.605802, 45.266477 ], "pop" : NumberInt(1483), "state" : "ME" } { "_id" : "04442", "city" : "GREENVILLE JUNCT", "loc" : [ -69.637526, 45.488394 ], "pop" : NumberInt(99), "state" : "ME" } { "_id" : "01258", "city" : "SOUTH EGREMONT", "loc" : [ -73.456575, 42.101153 ], "pop" : NumberInt(135), "state" : "MA" } { "_id" : "01341", "city" : "CONWAY", "loc" : [ -72.702473, 42.513832 ], "pop" : NumberInt(1524), "state" : "MA" } { "_id" : "01346", "city" : "HEATH", "loc" : [ -72.839101, 42.685347 ], "pop" : NumberInt(174), "state" : "MA" } { "_id" : "01440", "city" : "GARDNER", "loc" : [ -71.9898, 42.57405 ], "pop" : NumberInt(20125), "state" : "MA" } { "_id" : "01475", "city" : "WINCHENDON", "loc" : [ -72.047524, 42.678943 ], "pop" : NumberInt(8805), "state" : "MA" } { "_id" : "01518", "city" : "FISKDALE", "loc" : [ -72.117764, 42.122762 ], "pop" : NumberInt(774), "state" : "MA" } { "_id" : "01521", "city" : "HOLLAND", "loc" : [ -72.154373, 42.040264 ], "pop" : NumberInt(747), "state" : "MA" } { "_id" : "01851", "city" : "LOWELL", "loc" : [ -71.332882, 42.631548 ], "pop" : NumberInt(28154), "state" : "MA" } { "_id" : "01852", "city" : "LOWELL", "loc" : [ -71.298331, 42.634413 ], "pop" : NumberInt(33379), "state" : "MA" } { "_id" : "01862", "city" : "NORTH BILLERICA", "loc" : [ -71.290217, 42.575694 ], "pop" : NumberInt(8720), "state" : "MA" } { "_id" : "02109", "city" : "BOSTON", "loc" : [ -71.053386, 42.362963 ], "pop" : NumberInt(3926), "state" : "MA" } { "_id" : "02125", "city" : "DORCHESTER", "loc" : [ -71.061924, 42.315305 ], "pop" : NumberInt(31393), "state" : "MA" } { "_id" : "02127", "city" : "SOUTH BOSTON", "loc" : [ -71.043792, 42.333454 ], "pop" : NumberInt(29170), "state" : "MA" } { "_id" : "02131", "city" : "ROSLINDALE", "loc" : [ -71.129543, 42.283615 ], "pop" : NumberInt(32677), "state" : "MA" } { "_id" : "02142", "city" : "CAMBRIDGE", "loc" : [ -71.083011, 42.362025 ], "pop" : NumberInt(1336), "state" : "MA" } { "_id" : "02145", "city" : "SOMERVILLE", "loc" : [ -71.092944, 42.390678 ], "pop" : NumberInt(24422), "state" : "MA" } { "_id" : "02152", "city" : "WINTHROP", "loc" : [ -70.980043, 42.376294 ], "pop" : NumberInt(18907), "state" : "MA" } { "_id" : "02176", "city" : "MELROSE", "loc" : [ -71.063191, 42.458066 ], "pop" : NumberInt(28228), "state" : "MA" } { "_id" : "02215", "city" : "BOSTON", "loc" : [ -71.102689, 42.347088 ], "pop" : NumberInt(17769), "state" : "MA" } { "_id" : "02668", "city" : "WEST BARNSTABLE", "loc" : [ -70.371985, 41.700212 ], "pop" : NumberInt(2311), "state" : "MA" } { "_id" : "02725", "city" : "SOMERSET", "loc" : [ -71.177971, 41.722299 ], "pop" : NumberInt(2528), "state" : "MA" } { "_id" : "02760", "city" : "NORTH ATTLEBORO", "loc" : [ -71.329757, 41.977542 ], "pop" : NumberInt(22289), "state" : "MA" } { "_id" : "02830", "city" : "HARRISVILLE", "loc" : [ -71.653405, 41.976379 ], "pop" : NumberInt(6384), "state" : "RI" } { "_id" : "02864", "city" : "CUMBERLAND", "loc" : [ -71.415419, 41.948352 ], "pop" : NumberInt(29327), "state" : "RI" } { "_id" : "02878", "city" : "TIVERTON", "loc" : [ -71.180823, 41.633839 ], "pop" : NumberInt(14310), "state" : "RI" } { "_id" : "02898", "city" : "RICHMOND", "loc" : [ -71.683973, 41.523362 ], "pop" : NumberInt(1508), "state" : "RI" } { "_id" : "03036", "city" : "CHESTER", "loc" : [ -71.244962, 42.967756 ], "pop" : NumberInt(2691), "state" : "NH" } { "_id" : "03063", "city" : "NASHUA", "loc" : [ -71.513156, 42.771686 ], "pop" : NumberInt(14891), "state" : "NH" } { "_id" : "03109", "city" : "MANCHESTER", "loc" : [ -71.413474, 42.971349 ], "pop" : NumberInt(7884), "state" : "NH" } { "_id" : "03222", "city" : "BRISTOL", "loc" : [ -71.750664, 43.611994 ], "pop" : NumberInt(4288), "state" : "NH" } { "_id" : "03230", "city" : "DANBURY", "loc" : [ -71.869074, 43.5115 ], "pop" : NumberInt(1098), "state" : "NH" } { "_id" : "03251", "city" : "LINCOLN", "loc" : [ -71.672707, 44.058159 ], "pop" : NumberInt(1229), "state" : "NH" } { "_id" : "03442", "city" : "BENNINGTON", "loc" : [ -71.91534, 43.010309 ], "pop" : NumberInt(1236), "state" : "NH" } { "_id" : "03588", "city" : "MILAN", "loc" : [ -71.181031, 44.586968 ], "pop" : NumberInt(987), "state" : "NH" } { "_id" : "03813", "city" : "CENTER CONWAY", "loc" : [ -71.060677, 43.98776 ], "pop" : NumberInt(2394), "state" : "NH" } { "_id" : "03820", "city" : "MADBURY", "loc" : [ -70.884881, 43.190006 ], "pop" : NumberInt(27182), "state" : "NH" } { "_id" : "03862", "city" : "NORTH HAMPTON", "loc" : [ -70.826738, 42.977625 ], "pop" : NumberInt(3637), "state" : "NH" } { "_id" : "03875", "city" : "SILVER LAKE", "loc" : [ -71.190501, 43.878974 ], "pop" : NumberInt(640), "state" : "NH" } { "_id" : "03887", "city" : "UNION", "loc" : [ -71.020857, 43.4382 ], "pop" : NumberInt(4229), "state" : "NH" } { "_id" : "03906", "city" : "NORTH BERWICK", "loc" : [ -70.721173, 43.325401 ], "pop" : NumberInt(6465), "state" : "ME" } { "_id" : "03909", "city" : "YORK", "loc" : [ -70.657826, 43.154447 ], "pop" : NumberInt(8477), "state" : "ME" } { "_id" : "04029", "city" : "NORTH SEBAGO", "loc" : [ -70.633865, 43.882247 ], "pop" : NumberInt(597), "state" : "ME" } { "_id" : "04041", "city" : "HIRAM", "loc" : [ -70.853076, 43.862217 ], "pop" : NumberInt(1905), "state" : "ME" } { "_id" : "04073", "city" : "SANFORD", "loc" : [ -70.758479, 43.428541 ], "pop" : NumberInt(15723), "state" : "ME" } { "_id" : "04083", "city" : "SPRINGVALE", "loc" : [ -70.806445, 43.471499 ], "pop" : NumberInt(5472), "state" : "ME" } { "_id" : "04084", "city" : "STANDISH", "loc" : [ -70.480657, 43.814211 ], "pop" : NumberInt(1592), "state" : "ME" } { "_id" : "04219", "city" : "BRYANT POND", "loc" : [ -70.643468, 44.395714 ], "pop" : NumberInt(1563), "state" : "ME" } { "_id" : "04224", "city" : "DIXFIELD", "loc" : [ -70.424099, 44.554799 ], "pop" : NumberInt(3032), "state" : "ME" } { "_id" : "04254", "city" : "LIVERMORE FALLS", "loc" : [ -70.193614, 44.445756 ], "pop" : NumberInt(4845), "state" : "ME" } { "_id" : "04260", "city" : "NEW GLOUCESTER", "loc" : [ -70.297381, 43.960835 ], "pop" : NumberInt(3916), "state" : "ME" } { "_id" : "04349", "city" : "KENTS HILL", "loc" : [ -70.074822, 44.438259 ], "pop" : NumberInt(755), "state" : "ME" } { "_id" : "04408", "city" : "AURORA", "loc" : [ -68.295929, 44.886113 ], "pop" : NumberInt(141), "state" : "ME" } { "_id" : "04417", "city" : "BURLINGTON", "loc" : [ -68.442701, 45.218438 ], "pop" : NumberInt(643), "state" : "ME" } { "_id" : "04462", "city" : "MILLINOCKET", "loc" : [ -68.710117, 45.659563 ], "pop" : NumberInt(7265), "state" : "ME" } { "_id" : "04463", "city" : "DERBY", "loc" : [ -68.977098, 45.250697 ], "pop" : NumberInt(3091), "state" : "ME" } { "_id" : "04544", "city" : "EAST BOOTHBAY", "loc" : [ -69.593903, 43.826241 ], "pop" : NumberInt(156), "state" : "ME" } { "_id" : "04547", "city" : "FRIENDSHIP", "loc" : [ -69.291604, 44.006741 ], "pop" : NumberInt(2085), "state" : "ME" } { "_id" : "04565", "city" : "SEBASCO ESTATES", "loc" : [ -69.857557, 43.769342 ], "pop" : NumberInt(479), "state" : "ME" } { "_id" : "01237", "city" : "HANCOCK", "loc" : [ -73.248737, 42.541961 ], "pop" : NumberInt(2328), "state" : "MA" } { "_id" : "01253", "city" : "OTIS", "loc" : [ -73.082093, 42.18988 ], "pop" : NumberInt(1060), "state" : "MA" } { "_id" : "01257", "city" : "SHEFFIELD", "loc" : [ -73.361091, 42.100102 ], "pop" : NumberInt(1839), "state" : "MA" } { "_id" : "01351", "city" : "MONTAGUE", "loc" : [ -72.532837, 42.542864 ], "pop" : NumberInt(1699), "state" : "MA" } { "_id" : "01450", "city" : "GROTON", "loc" : [ -71.558371, 42.612351 ], "pop" : NumberInt(7504), "state" : "MA" } { "_id" : "01534", "city" : "NORTHBRIDGE", "loc" : [ -71.656366, 42.1494 ], "pop" : NumberInt(4564), "state" : "MA" } { "_id" : "01701", "city" : "FRAMINGHAM", "loc" : [ -71.425486, 42.300665 ], "pop" : NumberInt(65046), "state" : "MA" } { "_id" : "01718", "city" : "VILLAGE OF NAGOG", "loc" : [ -71.422354, 42.514941 ], "pop" : NumberInt(2330), "state" : "MA" } { "_id" : "01835", "city" : "BRADFORD", "loc" : [ -71.08549, 42.758597 ], "pop" : NumberInt(12078), "state" : "MA" } { "_id" : "01841", "city" : "LAWRENCE", "loc" : [ -71.166997, 42.711545 ], "pop" : NumberInt(45555), "state" : "MA" } { "_id" : "01887", "city" : "WILMINGTON", "loc" : [ -71.172306, 42.558143 ], "pop" : NumberInt(17647), "state" : "MA" } { "_id" : "01929", "city" : "ESSEX", "loc" : [ -70.782794, 42.628629 ], "pop" : NumberInt(3260), "state" : "MA" } { "_id" : "01984", "city" : "WENHAM", "loc" : [ -70.878622, 42.60166 ], "pop" : NumberInt(4148), "state" : "MA" } { "_id" : "02043", "city" : "HINGHAM", "loc" : [ -70.891051, 42.224485 ], "pop" : NumberInt(19821), "state" : "MA" } { "_id" : "02066", "city" : "SCITUATE", "loc" : [ -70.752476, 42.203235 ], "pop" : NumberInt(16535), "state" : "MA" } { "_id" : "02067", "city" : "SHARON", "loc" : [ -71.175872, 42.109388 ], "pop" : NumberInt(15873), "state" : "MA" } { "_id" : "02113", "city" : "BOSTON", "loc" : [ -71.055958, 42.365656 ], "pop" : NumberInt(6698), "state" : "MA" } { "_id" : "02184", "city" : "BRAINTREE", "loc" : [ -70.996304, 42.209284 ], "pop" : NumberInt(33836), "state" : "MA" } { "_id" : "02370", "city" : "ROCKLAND", "loc" : [ -70.913263, 42.129286 ], "pop" : NumberInt(16123), "state" : "MA" } { "_id" : "02379", "city" : "WEST BRIDGEWATER", "loc" : [ -71.016054, 42.025511 ], "pop" : NumberInt(6440), "state" : "MA" } { "_id" : "02559", "city" : "POCASSET", "loc" : [ -70.610512, 41.688115 ], "pop" : NumberInt(3907), "state" : "MA" } { "_id" : "02571", "city" : "WAREHAM", "loc" : [ -70.711594, 41.754084 ], "pop" : NumberInt(9304), "state" : "MA" } { "_id" : "02715", "city" : "DIGHTON", "loc" : [ -71.142723, 41.812505 ], "pop" : NumberInt(1828), "state" : "MA" } { "_id" : "02764", "city" : "NORTH DIGHTON", "loc" : [ -71.148523, 41.852874 ], "pop" : NumberInt(3779), "state" : "MA" } { "_id" : "02777", "city" : "SWANSEA", "loc" : [ -71.212167, 41.74734 ], "pop" : NumberInt(15865), "state" : "MA" } { "_id" : "02806", "city" : "BARRINGTON", "loc" : [ -71.317497, 41.744334 ], "pop" : NumberInt(15849), "state" : "RI" } { "_id" : "02814", "city" : "CHEPACHET", "loc" : [ -71.679483, 41.91549 ], "pop" : NumberInt(8191), "state" : "RI" } { "_id" : "02822", "city" : "EXETER", "loc" : [ -71.607626, 41.574031 ], "pop" : NumberInt(3774), "state" : "RI" } { "_id" : "02892", "city" : "RICHMOND", "loc" : [ -71.599076, 41.506716 ], "pop" : NumberInt(3943), "state" : "RI" } { "_id" : "02894", "city" : "WOOD RIVER JUNCT", "loc" : [ -71.709512, 41.453771 ], "pop" : NumberInt(684), "state" : "RI" } { "_id" : "02921", "city" : "CRANSTON", "loc" : [ -71.506102, 41.761357 ], "pop" : NumberInt(6502), "state" : "RI" } { "_id" : "03032", "city" : "AUBURN", "loc" : [ -71.344892, 42.992529 ], "pop" : NumberInt(4085), "state" : "NH" } { "_id" : "03082", "city" : "LYNDEBOROUGH", "loc" : [ -71.774373, 42.895449 ], "pop" : NumberInt(1294), "state" : "NH" } { "_id" : "03227", "city" : "CENTER SANDWICH", "loc" : [ -71.450614, 43.816169 ], "pop" : NumberInt(615), "state" : "NH" } { "_id" : "03282", "city" : "WENTWORTH", "loc" : [ -71.909651, 43.868456 ], "pop" : NumberInt(556), "state" : "NH" } { "_id" : "03290", "city" : "NOTTINGHAM", "loc" : [ -71.110983, 43.119632 ], "pop" : NumberInt(598), "state" : "NH" } { "_id" : "03301", "city" : "CONCORD", "loc" : [ -71.527734, 43.218525 ], "pop" : NumberInt(34035), "state" : "NH" } { "_id" : "03466", "city" : "WEST CHESTERFIEL", "loc" : [ -72.511216, 42.873152 ], "pop" : NumberInt(391), "state" : "NH" } { "_id" : "03602", "city" : "ALSTEAD", "loc" : [ -72.328052, 43.126484 ], "pop" : NumberInt(1721), "state" : "NH" } { "_id" : "03605", "city" : "EAST LEMPSTER", "loc" : [ -72.166205, 43.21863 ], "pop" : NumberInt(323), "state" : "NH" } { "_id" : "03740", "city" : "BATH", "loc" : [ -71.956741, 44.173419 ], "pop" : NumberInt(155), "state" : "NH" } { "_id" : "03741", "city" : "CANAAN", "loc" : [ -72.029724, 43.660092 ], "pop" : NumberInt(3065), "state" : "NH" } { "_id" : "03849", "city" : "MADISON", "loc" : [ -71.125412, 43.915206 ], "pop" : NumberInt(1669), "state" : "NH" } { "_id" : "03870", "city" : "RYE", "loc" : [ -70.765153, 43.009468 ], "pop" : NumberInt(4415), "state" : "NH" } { "_id" : "04006", "city" : "BIDDEFORD POOL", "loc" : [ -70.352024, 43.442722 ], "pop" : NumberInt(269), "state" : "ME" } { "_id" : "04010", "city" : "BROWNFIELD", "loc" : [ -70.903225, 43.971316 ], "pop" : NumberInt(1148), "state" : "ME" } { "_id" : "04020", "city" : "CORNISH", "loc" : [ -70.778433, 43.779612 ], "pop" : NumberInt(1736), "state" : "ME" } { "_id" : "04050", "city" : "LONG ISLAND", "loc" : [ -70.15509, 43.692014 ], "pop" : NumberInt(201), "state" : "ME" } { "_id" : "04217", "city" : "BETHEL", "loc" : [ -70.803685, 44.416176 ], "pop" : NumberInt(2775), "state" : "ME" } { "_id" : "04257", "city" : "MEXICO", "loc" : [ -70.535797, 44.562776 ], "pop" : NumberInt(3316), "state" : "ME" } { "_id" : "04259", "city" : "MONMOUTH", "loc" : [ -70.02627, 44.22083 ], "pop" : NumberInt(1838), "state" : "ME" } { "_id" : "04263", "city" : "LEEDS", "loc" : [ -70.125277, 44.28343 ], "pop" : NumberInt(1669), "state" : "ME" } { "_id" : "04265", "city" : "NORTH MONMOUTH", "loc" : [ -70.036686, 44.275328 ], "pop" : NumberInt(616), "state" : "ME" } { "_id" : "04346", "city" : "RANDOLPH", "loc" : [ -69.774918, 44.228704 ], "pop" : NumberInt(6619), "state" : "ME" } { "_id" : "04363", "city" : "WINDSOR", "loc" : [ -69.580587, 44.300878 ], "pop" : NumberInt(1618), "state" : "ME" } { "_id" : "04401", "city" : "BANGOR", "loc" : [ -68.791839, 44.824199 ], "pop" : NumberInt(40434), "state" : "ME" } { "_id" : "04410", "city" : "BRADFORD", "loc" : [ -68.923491, 45.08552 ], "pop" : NumberInt(1103), "state" : "ME" } { "_id" : "04423", "city" : "COSTIGAN", "loc" : [ -68.612969, 44.975336 ], "pop" : NumberInt(1895), "state" : "ME" } { "_id" : "04456", "city" : "LEVANT", "loc" : [ -68.98367, 44.884279 ], "pop" : NumberInt(1627), "state" : "ME" } { "_id" : "04487", "city" : "SPRINGFIELD", "loc" : [ -68.110756, 45.42638 ], "pop" : NumberInt(985), "state" : "ME" } { "_id" : "04497", "city" : "WYTOPITLOCK", "loc" : [ -68.105541, 45.664476 ], "pop" : NumberInt(384), "state" : "ME" } { "_id" : "04537", "city" : "BOOTHBAY", "loc" : [ -69.627322, 43.894497 ], "pop" : NumberInt(1701), "state" : "ME" } { "_id" : "01236", "city" : "HOUSATONIC", "loc" : [ -73.374544, 42.265296 ], "pop" : NumberInt(802), "state" : "MA" } { "_id" : "04345", "city" : "GARDINER", "loc" : [ -69.785774, 44.207029 ], "pop" : NumberInt(8387), "state" : "ME" } { "_id" : "04353", "city" : "NORTH WHITEFIELD", "loc" : [ -69.602164, 44.217844 ], "pop" : NumberInt(1931), "state" : "ME" } { "_id" : "04358", "city" : "SOUTH CHINA", "loc" : [ -69.58036, 44.395334 ], "pop" : NumberInt(182), "state" : "ME" } { "_id" : "04427", "city" : "EAST CORINTH", "loc" : [ -69.008532, 44.983655 ], "pop" : NumberInt(2177), "state" : "ME" } { "_id" : "04476", "city" : "PENOBSCOT", "loc" : [ -68.757409, 44.434371 ], "pop" : NumberInt(2290), "state" : "ME" } { "_id" : "04492", "city" : "WAITE", "loc" : [ -67.642812, 45.357741 ], "pop" : NumberInt(233), "state" : "ME" } { "_id" : "04530", "city" : "BATH", "loc" : [ -69.826565, 43.906155 ], "pop" : NumberInt(12628), "state" : "ME" } { "_id" : "01255", "city" : "SANDISFIELD", "loc" : [ -73.116285, 42.109429 ], "pop" : NumberInt(651), "state" : "MA" } { "_id" : "01267", "city" : "WILLIAMSTOWN", "loc" : [ -73.20364, 42.708883 ], "pop" : NumberInt(8220), "state" : "MA" } { "_id" : "01344", "city" : "ERVING", "loc" : [ -72.416638, 42.604957 ], "pop" : NumberInt(635), "state" : "MA" } { "_id" : "01350", "city" : "MONROE", "loc" : [ -72.960156, 42.723885 ], "pop" : NumberInt(97), "state" : "MA" } { "_id" : "01451", "city" : "HARVARD", "loc" : [ -71.575293, 42.498565 ], "pop" : NumberInt(4445), "state" : "MA" } { "_id" : "01469", "city" : "TOWNSEND", "loc" : [ -71.689646, 42.652511 ], "pop" : NumberInt(6112), "state" : "MA" } { "_id" : "01607", "city" : "WORCESTER", "loc" : [ -71.793837, 42.230294 ], "pop" : NumberInt(9048), "state" : "MA" } { "_id" : "01747", "city" : "HOPEDALE", "loc" : [ -71.537601, 42.126796 ], "pop" : NumberInt(5649), "state" : "MA" } { "_id" : "01776", "city" : "SUDBURY", "loc" : [ -71.428159, 42.383655 ], "pop" : NumberInt(14358), "state" : "MA" } { "_id" : "01821", "city" : "BILLERICA", "loc" : [ -71.251754, 42.551874 ], "pop" : NumberInt(28899), "state" : "MA" } { "_id" : "01902", "city" : "LYNN", "loc" : [ -70.941989, 42.469814 ], "pop" : NumberInt(41625), "state" : "MA" } { "_id" : "01930", "city" : "GLOUCESTER", "loc" : [ -70.672149, 42.620836 ], "pop" : NumberInt(28716), "state" : "MA" } { "_id" : "01985", "city" : "WEST NEWBURY", "loc" : [ -70.977811, 42.794865 ], "pop" : NumberInt(3421), "state" : "MA" } { "_id" : "02108", "city" : "BOSTON", "loc" : [ -71.068432, 42.357603 ], "pop" : NumberInt(3697), "state" : "MA" } { "_id" : "02110", "city" : "BOSTON", "loc" : [ -71.051417, 42.357636 ], "pop" : NumberInt(957), "state" : "MA" } { "_id" : "02402", "city" : "BROCKTON", "loc" : [ -71.001947, 42.088396 ], "pop" : NumberInt(33290), "state" : "MA" } { "_id" : "02532", "city" : "ONSET", "loc" : [ -70.593168, 41.752918 ], "pop" : NumberInt(12047), "state" : "MA" } { "_id" : "02539", "city" : "EDGARTOWN", "loc" : [ -70.533893, 41.388856 ], "pop" : NumberInt(3062), "state" : "MA" } { "_id" : "02556", "city" : "NORTH FALMOUTH", "loc" : [ -70.623043, 41.641677 ], "pop" : NumberInt(2651), "state" : "MA" } { "_id" : "02630", "city" : "BARNSTABLE", "loc" : [ -70.300067, 41.698289 ], "pop" : NumberInt(1776), "state" : "MA" } { "_id" : "02632", "city" : "CENTERVILLE", "loc" : [ -70.353196, 41.660585 ], "pop" : NumberInt(10636), "state" : "MA" } { "_id" : "02657", "city" : "PROVINCETOWN", "loc" : [ -70.186504, 42.053364 ], "pop" : NumberInt(3561), "state" : "MA" } { "_id" : "02720", "city" : "FALL RIVER", "loc" : [ -71.139991, 41.718221 ], "pop" : NumberInt(30600), "state" : "MA" } { "_id" : "02745", "city" : "NEW BEDFORD", "loc" : [ -70.935545, 41.691337 ], "pop" : NumberInt(23661), "state" : "MA" } { "_id" : "02746", "city" : "NEW BEDFORD", "loc" : [ -70.93243, 41.659972 ], "pop" : NumberInt(16236), "state" : "MA" } { "_id" : "02790", "city" : "WESTPORT", "loc" : [ -71.089003, 41.621127 ], "pop" : NumberInt(14154), "state" : "MA" }

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Finance Professor
Study Master
Top Writing Guru
Professional Accountant
Academic Master
A Grade Exams
Writer Writer Name Offer Chat
Finance Professor

ONLINE

Finance Professor

I reckon that I can perfectly carry this project for you! I am a research writer and have been writing academic papers, business reports, plans, literature review, reports and others for the past 1 decade.

$39 Chat With Writer
Study Master

ONLINE

Study Master

I am an elite class writer with more than 6 years of experience as an academic writer. I will provide you the 100 percent original and plagiarism-free content.

$35 Chat With Writer
Top Writing Guru

ONLINE

Top Writing Guru

After reading your project details, I feel myself as the best option for you to fulfill this project with 100 percent perfection.

$42 Chat With Writer
Professional Accountant

ONLINE

Professional Accountant

I can assist you in plagiarism free writing as I have already done several related projects of writing. I have a master qualification with 5 years’ experience in; Essay Writing, Case Study Writing, Report Writing.

$42 Chat With Writer
Academic Master

ONLINE

Academic Master

I have done dissertations, thesis, reports related to these topics, and I cover all the CHAPTERS accordingly and provide proper updates on the project.

$27 Chat With Writer
A Grade Exams

ONLINE

A Grade Exams

I am a professional and experienced writer and I have written research reports, proposals, essays, thesis and dissertations on a variety of topics.

$21 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Write 83 1 3 as a fraction - Used turnout gear lockers - The company man ellen goodman thesis statement - Cqc registered manager list - Sandtoft 20 20 review - Www myuwatch smart_watch apk - This week we are working on faculty development models for distance learning. - Future of the juvenile justice system proposal presentation - Catechol oxidase in potatoes - Northwestern mutual life longevity game - How does aspect affect vegetation - Chapter 9 Assignment due in 24 hours - Forecasting example problems with solutions - Pharmacy exam past papers - Hive empire pty ltd - Eng 125 - 2016 ap test dates - Kaufman test of educational achievement second edition ktea ii - Chcccs023 pdf - A 10 g marble slides to the left - Discussion Board Questions - Week 5 - Info_Sec_Discussion - Microsoft dynamics sl 2015 - Op-amp integrator ramp generator - Vertical boring machine ppt - Ben and jerry's distribution channels - Bullying presentation for parents - Dawn dupree textile artist - Two ways to belong in america - Eng 125 week 1 discussion 1 - 1960 harold pinter play - Why does methylene blue turn colourless - Il tempo se ne va lyrics english - Box truck body parts - Everyday use dee - Professional capstone and practicum reflective journal and scholarly activities - The spiderwick chronicles theme - Begging the question fallacy advertisement - Effect of acid rain on seed germination lab report - ETCM-Research-1 - Medical check up for confined space - International human resource management 5th edition pdf - Str 581 week 5 quiz - Investor Presentation - Drop if missing stata - Not the assignment/no attachments - Tenable io user guide - Florida southwestern state college online courses - Ocr criminal law for a2 fourth edition - In the movie "the shawshank redemption", warden norton often whistled what hymn song? - Summaries of saudis expand regional power as others falter - Gartner news and insights - Due Tonight - Red white and royal blue pdf - Abbreviated electron configuration iridium - Interpretation of iron studies - Www biologyjunction com cell functions htm - Mind tools stress test - Town and country lovers nadine gordimer pdf - Bluebeam change dimension units - Central coast adventist school staff - El nahra iraq - Mgmt 404 week 4 course project - Www authentichappiness org test - Ms hagen of films crossword clue - The curtain falls bobby darin sheet music - The garden club is designing a garden with 24 cosmos - Everest double glazing advert presenter - Quartus pin assignment tutorial - BUSI510 Week 6 Assignment - The cvp income statement - Research paper - Robust details party wall - Effect of stress on performance ppt - An astronomical measure of distance is called - Health Information Management System Week 1 Discussion - Barack obama nobel peace prize acceptance speech - Halle berry dad and mom - Cost comparison of flexible and rigid pavement - Iacademy oracle 3 - Spanish alphabet letter sounds - Stan lee mr marvel card 1990 value - Pine street family practice - Matt teachout - +971561686603 Abortion pills in Dubai/Abu Dhabi-mifepristone & misoprostol in DUBAI - Harvey norman belrose supa centre - The supply curve slopes upward because - Senior project board examples - Musyokiness - Cisco business edition 6000 installation guide - For a constant returns to scale production function - Torbay amateur radio society - Determination of amount of acetic acid in vinegar - Good morning in sign language bsl - A common tactic in a financial incentive political strategy is - Position Paper - Help 2 - BU204 Assignment 6 - Philosophy Discussion W7