From 87a1bb7851dbcbd5b8eb301db96eb26ed390944a Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 19 Jul 2018 14:18:57 -0700 Subject: [PATCH] Add an option to treat empty CSV columns as nulls, not empty strings --- CHANGELOG.md | 7 + Makefile | 12 + README.md | 3 + geocsv.cpp | 4 + jsontool.cpp | 19 +- main.cpp | 1 + man/tippecanoe.1 | 6 + options.hpp | 1 + tests/csv/out-null.mbtiles.json | 502 ++++ .../join-population/joined-null.mbtiles.json | 2498 +++++++++++++++++ ...ck_06001420-null.json.sort.joined.standard | 260 ++ tile-join.cpp | 8 +- version.hpp | 2 +- 13 files changed, 3320 insertions(+), 3 deletions(-) create mode 100644 tests/csv/out-null.mbtiles.json create mode 100644 tests/join-population/joined-null.mbtiles.json create mode 100644 tests/join-population/tabblock_06001420-null.json.sort.joined.standard diff --git a/CHANGELOG.md b/CHANGELOG.md index 53c6bf6..8301f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.30.1 + +* Ensure that per-feature minzoom and maxzoom are integers +* Report compression errors in tippecanoe-decode +* Add the ability to specify the file format with -L{"format":"…"} +* Add an option to treat empty CSV columns as nulls, not empty strings + ## 1.30.0 * Add a filter extension to allow filtering individual attributes diff --git a/Makefile b/Makefile index 691b0bd..5b94ae3 100644 --- a/Makefile +++ b/Makefile @@ -178,20 +178,24 @@ join-test: tile-join rm -f tests/join-population/macarthur-6-9.mbtiles.json.check tests/join-population/macarthur-6-9.mbtiles ./tippecanoe -q -f -d10 -D10 -Z9 -z11 -o tests/join-population/macarthur2.mbtiles -l macarthur tests/join-population/macarthur2.json ./tile-join --quiet --force -o tests/join-population/joined.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles + ./tile-join --quiet --force -o tests/join-population/joined-null.mbtiles --empty-csv-columns-are-null -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles ./tile-join --quiet --force --no-tile-stats -o tests/join-population/joined-no-tile-stats.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles ./tile-join -q -f -i -o tests/join-population/joined-i.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles ./tile-join -q -f -o tests/join-population/merged.mbtiles tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles ./tile-join -q -f -c tests/join-population/windows.csv -o tests/join-population/windows.mbtiles tests/join-population/macarthur.mbtiles ./tippecanoe-decode -x generator --maximum-zoom=11 --minimum-zoom=4 tests/join-population/joined.mbtiles > tests/join-population/joined.mbtiles.json.check + ./tippecanoe-decode -x generator --maximum-zoom=11 --minimum-zoom=4 tests/join-population/joined-null.mbtiles > tests/join-population/joined-null.mbtiles.json.check ./tippecanoe-decode -x generator --maximum-zoom=11 --minimum-zoom=4 tests/join-population/joined-no-tile-stats.mbtiles > tests/join-population/joined-no-tile-stats.mbtiles.json.check ./tippecanoe-decode -x generator tests/join-population/joined-i.mbtiles > tests/join-population/joined-i.mbtiles.json.check ./tippecanoe-decode -x generator tests/join-population/merged.mbtiles > tests/join-population/merged.mbtiles.json.check ./tippecanoe-decode -x generator tests/join-population/windows.mbtiles > tests/join-population/windows.mbtiles.json.check cmp tests/join-population/joined.mbtiles.json.check tests/join-population/joined.mbtiles.json + cmp tests/join-population/joined-null.mbtiles.json.check tests/join-population/joined-null.mbtiles.json cmp tests/join-population/joined-no-tile-stats.mbtiles.json.check tests/join-population/joined-no-tile-stats.mbtiles.json cmp tests/join-population/joined-i.mbtiles.json.check tests/join-population/joined-i.mbtiles.json cmp tests/join-population/merged.mbtiles.json.check tests/join-population/merged.mbtiles.json cmp tests/join-population/windows.mbtiles.json.check tests/join-population/windows.mbtiles.json + rm -f tests/join-population/joined-null.mbtiles tests/join-population/joined-null.mbtiles.json.check ./tile-join -q -f -l macarthur -n "macarthur name" -N "macarthur description" -A "macarthur attribution" -o tests/join-population/just-macarthur.mbtiles tests/join-population/merged.mbtiles ./tile-join -q -f -L macarthur -o tests/join-population/no-macarthur.mbtiles tests/join-population/merged.mbtiles ./tippecanoe-decode -x generator tests/join-population/just-macarthur.mbtiles > tests/join-population/just-macarthur.mbtiles.json.check @@ -253,8 +257,11 @@ join-filter-test: json-tool-test: tippecanoe-json-tool ./tippecanoe-json-tool -e GEOID10 tests/join-population/tabblock_06001420.json | sort > tests/join-population/tabblock_06001420.json.sort ./tippecanoe-json-tool -c tests/join-population/population.csv tests/join-population/tabblock_06001420.json.sort > tests/join-population/tabblock_06001420.json.sort.joined + ./tippecanoe-json-tool --empty-csv-columns-are-null -c tests/join-population/population.csv tests/join-population/tabblock_06001420.json.sort > tests/join-population/tabblock_06001420-null.json.sort.joined cmp tests/join-population/tabblock_06001420.json.sort.joined tests/join-population/tabblock_06001420.json.sort.joined.standard + cmp tests/join-population/tabblock_06001420-null.json.sort.joined tests/join-population/tabblock_06001420-null.json.sort.joined.standard rm -f tests/join-population/tabblock_06001420.json.sort tests/join-population/tabblock_06001420.json.sort.joined + rm -f tests/join-population/tabblock_06001420-null.json.sort.joined allow-existing-test: # Make a tileset @@ -283,6 +290,11 @@ csv-test: ./tippecanoe-decode -x generator tests/csv/out.mbtiles > tests/csv/out.mbtiles.json.check cmp tests/csv/out.mbtiles.json.check tests/csv/out.mbtiles.json rm -f tests/csv/out.mbtiles.json.check tests/csv/out.mbtiles + # Reading from named CSV, with nulls + ./tippecanoe -q --empty-csv-columns-are-null -zg -f -o tests/csv/out-null.mbtiles tests/csv/ne_110m_populated_places_simple.csv + ./tippecanoe-decode -x generator tests/csv/out-null.mbtiles > tests/csv/out-null.mbtiles.json.check + cmp tests/csv/out-null.mbtiles.json.check tests/csv/out-null.mbtiles.json + rm -f tests/csv/out-null.mbtiles.json.check tests/csv/out-null.mbtiles # Same, but specifying csv with -L format ./tippecanoe -q -zg -f -o tests/csv/out.mbtiles -L'{"file":"", "format":"csv", "layer":"ne_110m_populated_places_simplecsv"}' < tests/csv/ne_110m_populated_places_simple.csv ./tippecanoe-decode -x generator tests/csv/out.mbtiles > tests/csv/out.mbtiles.json.check diff --git a/README.md b/README.md index 26f3815..778bf96 100644 --- a/README.md +++ b/README.md @@ -214,6 +214,7 @@ resolution is obtained than by using a smaller _maxzoom_ or _detail_. that are dropped, coalesced-as-needed, or clustered. The _operation_ may be `sum`, `product`, `mean`, `max`, `min`, `concat`, or `comma` to specify how the named _attribute_ is accumulated onto the attribute of the same name in a feature that does survive. + * `-pe` or `--empty-csv-columns-are-null`: Treat empty CSV columns as nulls rather than as empty strings. ### Filtering features by attributes @@ -561,6 +562,7 @@ The options are: * `-i` or `--if-matched`: Only include features that matched the CSV. * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://www.mapbox.com/mapbox-gl-js/style-spec/#types-filter)) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. * `-J` *filter-file* or `--feature-filter-file`=*filter-file*: Like `-j`, but read the filter from a file. + * `-pe` or `--empty-csv-columns-are-null`: Treat empty CSV columns as nulls rather than as empty strings. ### Setting or disabling tile size limits @@ -686,6 +688,7 @@ something better. The formatting makes excessive use of `\u` quoting so that it follows JSON string rules but will still be sorted correctly by tools that just do ASCII comparisons. * `-c` *file.csv* or `--csv=`*file.csv*: Join attributes from the named sorted CSV file, using its first column as the join key. Geometries will be passed through even if they do not match the CSV; CSV lines that do not match a geometry will be discarded. + * `-pe` or `--empty-csv-columns-are-null`: Treat empty CSV columns as nulls rather than as empty strings. ### Example diff --git a/geocsv.cpp b/geocsv.cpp index 7da7112..9fd2811 100644 --- a/geocsv.cpp +++ b/geocsv.cpp @@ -8,6 +8,7 @@ #include "text.hpp" #include "csv.hpp" #include "milo/dtoa_milo.h" +#include "options.hpp" void parse_geocsv(std::vector &sst, std::string fname, int layer, std::string layername) { FILE *f; @@ -97,6 +98,9 @@ void parse_geocsv(std::vector &sst, std::string fnam serial_val sv; if (is_number(line[i])) { sv.type = mvt_double; + } else if (line[i].size() == 0 && prevent[P_EMPTY_CSV_COLUMNS]) { + sv.type = mvt_null; + line[i] = "null"; } else { sv.type = mvt_string; } diff --git a/jsontool.cpp b/jsontool.cpp index 0ab6e89..35aabff 100644 --- a/jsontool.cpp +++ b/jsontool.cpp @@ -18,6 +18,7 @@ const char *extract = NULL; FILE *csvfile = NULL; std::vector header; std::vector fields; +int pe = false; std::string buffered; int buffered_type = -1; @@ -318,9 +319,11 @@ void join_csv(json_object *j) { } else if (is_number(v)) { attr_type = JSON_NUMBER; } + } else if (pe) { + attr_type = JSON_NULL; } - { + if (attr_type != JSON_NULL) { // This knows more about the structure of JSON objects than it ought to json_object *ko = (json_object *) malloc(sizeof(json_object)); @@ -433,6 +436,8 @@ int main(int argc, char **argv) { {"wrap", no_argument, 0, 'w'}, {"extract", required_argument, 0, 'e'}, {"csv", required_argument, 0, 'c'}, + {"empty-csv-columns-are-null", no_argument, &pe, 1}, + {"prevent", required_argument, 0, 'p'}, {0, 0, 0, 0}, }; @@ -453,6 +458,9 @@ int main(int argc, char **argv) { while ((i = getopt_long(argc, argv, getopt_str.c_str(), long_options, NULL)) != -1) { switch (i) { + case 0: + break; + case 'w': wrap = true; break; @@ -465,6 +473,15 @@ int main(int argc, char **argv) { csv = optarg; break; + case 'p': + if (strcmp(optarg, "e") == 0) { + pe = true; + } else { + fprintf(stderr, "%s: Unknown option for -p%s\n", argv[0], optarg); + exit(EXIT_FAILURE); + } + break; + default: fprintf(stderr, "Unexpected option -%c\n", i); exit(EXIT_FAILURE); diff --git a/main.cpp b/main.cpp index 674d19f..4c55870 100644 --- a/main.cpp +++ b/main.cpp @@ -2517,6 +2517,7 @@ int main(int argc, char **argv) { {"attribute-type", required_argument, 0, 'T'}, {"attribute-description", required_argument, 0, 'Y'}, {"accumulate-attribute", required_argument, 0, 'E'}, + {"empty-csv-columns-are-null", no_argument, &prevent[P_EMPTY_CSV_COLUMNS], 1}, {"Filtering features by attributes", 0, 0, 0}, {"feature-filter-file", required_argument, 0, 'J'}, diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 166192f..d091013 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -244,6 +244,8 @@ If the type is \fB\fCint\fR and the original attribute was floating\-point, it i that are dropped, coalesced\-as\-needed, or clustered. The \fIoperation\fP may be \fB\fCsum\fR, \fB\fCproduct\fR, \fB\fCmean\fR, \fB\fCmax\fR, \fB\fCmin\fR, \fB\fCconcat\fR, or \fB\fCcomma\fR to specify how the named \fIattribute\fP is accumulated onto the attribute of the same name in a feature that does survive. +.IP \(bu 2 +\fB\fC\-pe\fR or \fB\fC\-\-empty\-csv\-columns\-are\-null\fR: Treat empty CSV columns as nulls rather than as empty strings. .RE .SS Filtering features by attributes .RS @@ -675,6 +677,8 @@ The options are: \fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://www.mapbox.com/mapbox-gl-js/style-spec/#types-filter\[ra]) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. .IP \(bu 2 \fB\fC\-J\fR \fIfilter\-file\fP or \fB\fC\-\-feature\-filter\-file\fR=\fIfilter\-file\fP: Like \fB\fC\-j\fR, but read the filter from a file. +.IP \(bu 2 +\fB\fC\-pe\fR or \fB\fC\-\-empty\-csv\-columns\-are\-null\fR: Treat empty CSV columns as nulls rather than as empty strings. .RE .SS Setting or disabling tile size limits .RS @@ -829,6 +833,8 @@ The formatting makes excessive use of \fB\fC\\u\fR quoting so that it follows JS be sorted correctly by tools that just do ASCII comparisons. .IP \(bu 2 \fB\fC\-c\fR \fIfile.csv\fP or \fB\fC\-\-csv=\fR\fIfile.csv\fP: Join attributes from the named sorted CSV file, using its first column as the join key. Geometries will be passed through even if they do not match the CSV; CSV lines that do not match a geometry will be discarded. +.IP \(bu 2 +\fB\fC\-pe\fR or \fB\fC\-\-empty\-csv\-columns\-are\-null\fR: Treat empty CSV columns as nulls rather than as empty strings. .RE .SS Example .PP diff --git a/options.hpp b/options.hpp index 0b113f6..60b028e 100644 --- a/options.hpp +++ b/options.hpp @@ -37,6 +37,7 @@ #define P_TILE_STATS ((int) 'g') #define P_USE_SOURCE_POLYGON_WINDING ((int) 'w') #define P_REVERSE_SOURCE_POLYGON_WINDING ((int) 'W') +#define P_EMPTY_CSV_COLUMNS ((int) 'e') extern int prevent[256]; extern int additional[256]; diff --git a/tests/csv/out-null.mbtiles.json b/tests/csv/out-null.mbtiles.json new file mode 100644 index 0000000..75d46fc --- /dev/null +++ b/tests/csv/out-null.mbtiles.json @@ -0,0 +1,502 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-180.000000,-41.299988,180.000000,85.051129", +"center": "0.000000,0.000000,0", +"description": "tests/csv/out-null.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"ne_110m_populated_places_simplecsv\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"adm0_a3\": \"String\", \"adm0cap\": \"Number\", \"adm0name\": \"String\", \"adm1name\": \"String\", \"capalt\": \"Number\", \"capin\": \"String\", \"changed\": \"Number\", \"checkme\": \"Number\", \"diffascii\": \"Number\", \"diffnote\": \"String\", \"featurecla\": \"String\", \"geonameid\": \"Number\", \"iso_a2\": \"Mixed\", \"labelrank\": \"Number\", \"ls_match\": \"Number\", \"ls_name\": \"String\", \"megacity\": \"Number\", \"meganame\": \"String\", \"min_zoom\": \"Number\", \"name\": \"String\", \"namealt\": \"String\", \"nameascii\": \"String\", \"namediff\": \"Number\", \"namepar\": \"String\", \"natscale\": \"Number\", \"note\": \"String\", \"pop_max\": \"Number\", \"pop_min\": \"Number\", \"pop_other\": \"Number\", \"rank_max\": \"Number\", \"rank_min\": \"Number\", \"scalerank\": \"Number\", \"sov0name\": \"String\", \"sov_a3\": \"String\", \"worldcity\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"ne_110m_populated_places_simplecsv\",\"count\": 247,\"geometry\": \"Point\",\"attributeCount\": 35,\"attributes\": [{\"attribute\": \"adm0_a3\",\"count\": 198,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\": \"adm0cap\",\"count\": 2,\"type\": \"number\",\"values\": [0.00000000000,1.00000000000],\"min\": 0,\"max\": 1},{\"attribute\": \"adm0name\",\"count\": 198,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\": \"adm1name\",\"count\": 204,\"type\": \"string\",\"values\": [\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\": \"capalt\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"capin\",\"count\": 20,\"type\": \"string\",\"values\": [\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\": \"changed\",\"count\": 7,\"type\": \"number\",\"values\": [0.00000000000,1.00000000000,20.00000000000,3.00000000000,4.00000000000,40.00000000000,5.00000000000],\"min\": 0,\"max\": 40},{\"attribute\": \"checkme\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"diffascii\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"diffnote\",\"count\": 12,\"type\": \"string\",\"values\": [\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\": \"featurecla\",\"count\": 6,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\": \"geonameid\",\"count\": 242,\"type\": \"number\",\"values\": [-1.00000000000,1018725.00000000000,1040652.00000000000,1070940.00000000000,108410.00000000000,112931.00000000000,1138958.00000000000,1176615.00000000000,1185241.00000000000,1221874.00000000000,1238992.00000000000,1252416.00000000000,1261481.00000000000,1275004.00000000000,1275339.00000000000,1277333.00000000000,1283240.00000000000,1298824.00000000000,146268.00000000000,1512569.00000000000,1526273.00000000000,1528675.00000000000,1529102.00000000000,1559804.00000000000,1581130.00000000000,160196.00000000000,160263.00000000000,1609350.00000000000,162183.00000000000,1642911.00000000000,1645457.00000000000,1651944.00000000000,1668341.00000000000,1690681.00000000000,1701668.00000000000,170654.00000000000,1728930.00000000000,1730025.00000000000,1735161.00000000000,1796236.00000000000,1815286.00000000000,1816670.00000000000,1819729.00000000000,1820906.00000000000,1821306.00000000000,1835848.00000000000,184745.00000000000,1850147.00000000000,1853909.00000000000,1857910.00000000000,1871859.00000000000,1880252.00000000000,202061.00000000000,2028462.00000000000,2075807.00000000000,2081986.00000000000,2088122.00000000000,2108502.00000000000,2110079.00000000000,2110394.00000000000,2113779.00000000000,2135171.00000000000,2144168.00000000000,2147714.00000000000,2158177.00000000000,2172517.00000000000,2193733.00000000000,2198148.00000000000,2220957.00000000000,223817.00000000000,2240449.00000000000,2253354.00000000000,2260535.00000000000,2267057.00000000000,2274895.00000000000,2279755.00000000000,2293538.00000000000,2306104.00000000000,2309527.00000000000,2314302.00000000000,2322794.00000000000,232422.00000000000,2332459.00000000000,2357048.00000000000,2365267.00000000000,2374775.00000000000,2377450.00000000000,2389853.00000000000,2392087.00000000000,2394819.00000000000,2399697.00000000000,2408770.00000000000,241131.00000000000,2413876.00000000000,2422465.00000000000,2427123.00000000000,2440485.00000000000,2460596.00000000000,2462881.00000000000,2464470.00000000000],\"min\": -1,\"max\": 6697380},{\"attribute\": \"iso_a2\",\"count\": 197,\"type\": \"mixed\",\"values\": [-99,\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"],\"min\": -99,\"max\": -99},{\"attribute\": \"labelrank\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,5,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"ls_match\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,2],\"min\": 0,\"max\": 2},{\"attribute\": \"ls_name\",\"count\": 242,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\": \"megacity\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"meganame\",\"count\": 145,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asuncian\",\"Athnnai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogota\",\"Brasglia\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mdxico\",\"Ciudad de Panam\",\"Conakry\",\"Cotonou\",\"Cramqi (Wulumqi)\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazasr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hh Noi\",\"Hong Kong\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"K\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomi\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djam-na\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\"]},{\"attribute\": \"min_zoom\",\"count\": 15,\"type\": \"number\",\"values\": [1.7,2.0,2.1,2.7,3.0,3.7,4.0,4.7,5.0,5.1,5.6,6.0,6.1,6.7,7.0],\"min\": 1.7,\"max\": 7},{\"attribute\": \"name\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asunción\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasília\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chișinău\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"namealt\",\"count\": 43,\"type\": \"string\",\"values\": [\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asuncion\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogota\",\"Brasilia\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de M\",\"Ciudad de Panam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazacr\",\"H\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lome\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djamnna\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Penh\",\"San Francisco-Oakland\",\"San Jose\",\"Sana'a'\",\"Sao Paulo|Sio Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaiso\",\"Washington D.C.\",\"Yangon\",\"Yaounde\",\"rumqi|Wulumqi\"]},{\"attribute\": \"nameascii\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"namediff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"namepar\",\"count\": 12,\"type\": \"string\",\"values\": [\"Athenai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\": \"natscale\",\"count\": 8,\"type\": \"number\",\"values\": [10,110,20,200,30,300,50,600],\"min\": 10,\"max\": 600},{\"attribute\": \"note\",\"count\": 2,\"type\": \"string\",\"values\": [\"Auckland metropolitan area\",\"Wellington metropolitan area\"]},{\"attribute\": \"pop_max\",\"count\": 240,\"type\": \"number\",\"values\": [10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1377200,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\": 500,\"max\": 35676000},{\"attribute\": \"pop_min\",\"count\": 243,\"type\": \"number\",\"values\": [10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226,2432858],\"min\": 200,\"max\": 14608512},{\"attribute\": \"pop_other\",\"count\": 216,\"type\": \"number\",\"values\": [0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,2456292,2470140,247018,248161],\"min\": 0,\"max\": 16803572},{\"attribute\": \"rank_max\",\"count\": 12,\"type\": \"number\",\"values\": [10,11,12,13,14,2,4,5,6,7,8,9],\"min\": 2,\"max\": 14},{\"attribute\": \"rank_min\",\"count\": 14,\"type\": \"number\",\"values\": [1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 14},{\"attribute\": \"scalerank\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,4,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"sov0name\",\"count\": 197,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\": \"sov_a3\",\"count\": 197,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"IS1\",\"ISL\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\": \"worldcity\",\"count\": 2,\"type\": \"number\",\"values\": [0.00000000000,1.00000000000],\"min\": 0,\"max\": 1}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/csv/out-null.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_110m_populated_places_simplecsv", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 2, "featurecla": "Populated place", "name": "Vancouver", "diffascii": 0, "nameascii": "Vancouver", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "Canada", "sov_a3": "CAN", "adm0name": "Canada", "adm0_a3": "CAN", "adm1name": "British Columbia", "iso_a2": "CA", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2313328, "pop_min": 603502, "pop_other": 482002, "rank_max": 12, "rank_min": 11, "geonameid": 6173331, "meganame": "Vancouver", "ls_name": "Vancouver2", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.325122 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Populated place", "name": "San Francisco", "namealt": "San Francisco-Oakland", "diffascii": 0, "nameascii": "San Francisco", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "California", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 3450000, "pop_min": 732072, "pop_other": 27400, "rank_max": 12, "rank_min": 11, "geonameid": 5391959, "meganame": "San Francisco-Oakland", "ls_name": "San Francisco1", "ls_match": 1, "checkme": 0, "min_zoom": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Populated place", "name": "Los Angeles", "namealt": "Los Angeles-Long Beach-Santa Ana", "diffascii": 0, "nameascii": "Los Angeles", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "California", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 12500000, "pop_min": 3694820, "pop_other": 142265, "rank_max": 14, "rank_min": 12, "geonameid": 5368361, "meganame": "Los Angeles-Long Beach-Santa Ana", "ls_name": "Los Angeles1", "ls_match": 1, "checkme": 0, "min_zoom": 2 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Denver", "namealt": "Denver-Aurora", "diffascii": 0, "nameascii": "Denver", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Colorado", "iso_a2": "US", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2313000, "pop_min": 1548599, "pop_other": 1521278, "rank_max": 12, "rank_min": 12, "geonameid": 5419384, "meganame": "Denver-Aurora", "ls_name": "Denver", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 2, "featurecla": "Admin-1 capital", "name": "Monterrey", "diffascii": 0, "nameascii": "Monterrey", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "Mexico", "sov_a3": "MEX", "adm0name": "Mexico", "adm0_a3": "MEX", "adm1name": "Nuevo León", "iso_a2": "MX", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3712000, "pop_min": 1122874, "pop_other": 3225636, "rank_max": 12, "rank_min": 12, "geonameid": 3995465, "meganame": "Monterrey", "ls_name": "Monterrey", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -100.371094, 25.720735 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Populated place", "name": "Houston", "diffascii": 0, "nameascii": "Houston", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Texas", "iso_a2": "US", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4459000, "pop_min": 3647574, "pop_other": 3607616, "rank_max": 12, "rank_min": 12, "geonameid": 4699066, "meganame": "Houston", "ls_name": "Houston", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Mexico City", "namealt": "Ciudad de M", "diffascii": 0, "nameascii": "Mexico City", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Mexico", "sov_a3": "MEX", "adm0name": "Mexico", "adm0_a3": "MEX", "adm1name": "Distrito Federal", "iso_a2": "MX", "changed": 0, "namediff": 0, "pop_max": 19028000, "pop_min": 10811002, "pop_other": 10018444, "rank_max": 14, "rank_min": 14, "geonameid": 3530597, "meganame": "Ciudad de Mdxico", "ls_name": "Mexico City", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Guatemala", "namealt": "Ciudad de Guatemala (Guatemala City)", "diffascii": 0, "nameascii": "Guatemala", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Guatemala", "sov_a3": "GTM", "adm0name": "Guatemala", "adm0_a3": "GTM", "adm1name": "Guatemala", "iso_a2": "GT", "changed": 0, "namediff": 0, "pop_max": 1024000, "pop_min": 994938, "pop_other": 2391150, "rank_max": 12, "rank_min": 11, "geonameid": 3598132, "meganame": "Ciudad de Guatemala (Guatemala City)", "ls_name": "Guatemala", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.689881 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Populated place", "name": "Chicago", "diffascii": 0, "nameascii": "Chicago", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Illinois", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 8990000, "pop_min": 2841952, "pop_other": 3635101, "rank_max": 13, "rank_min": 12, "geonameid": 4887398, "meganame": "Chicago", "ls_name": "Chicago", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -87.802734, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 2, "featurecla": "Admin-1 capital", "name": "Toronto", "diffascii": 0, "nameascii": "Toronto", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Canada", "sov_a3": "CAN", "adm0name": "Canada", "adm0_a3": "CAN", "adm1name": "Ontario", "iso_a2": "CA", "changed": 0, "namediff": 0, "pop_max": 5213000, "pop_min": 3934421, "pop_other": 3749229, "rank_max": 13, "rank_min": 12, "geonameid": 6167865, "meganame": "Toronto", "ls_name": "Toronto", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Ottawa", "namealt": "Ottawa-Gatineau", "diffascii": 0, "nameascii": "Ottawa", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Canada", "sov_a3": "CAN", "adm0name": "Canada", "adm0_a3": "CAN", "adm1name": "Ontario", "iso_a2": "CA", "changed": 0, "namediff": 0, "pop_max": 1145000, "pop_min": 812129, "pop_other": 872781, "rank_max": 12, "rank_min": 11, "geonameid": 6094817, "meganame": "Ottawa-Gatineau", "ls_name": "Ottawa", "ls_match": 1, "checkme": 5, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -75.761719, 45.460131 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Atlanta", "diffascii": 0, "nameascii": "Atlanta", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Georgia", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 4506000, "pop_min": 422908, "pop_other": 2874096, "rank_max": 12, "rank_min": 10, "geonameid": 4180439, "meganame": "Atlanta", "ls_name": "Atlanta", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -84.462891, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Havana", "namealt": "La Habana", "diffascii": 0, "nameascii": "Havana", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Cuba", "sov_a3": "CUB", "adm0name": "Cuba", "adm0_a3": "CUB", "adm1name": "Ciudad de la Habana", "iso_a2": "CU", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2174000, "pop_min": 1990917, "pop_other": 1930305, "rank_max": 12, "rank_min": 12, "geonameid": 3553478, "meganame": "La Habana", "ls_name": "Havana", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -82.441406, 23.160563 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Populated place", "name": "Miami", "diffascii": 0, "nameascii": "Miami", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Florida", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 5585000, "pop_min": 382894, "pop_other": 1037811, "rank_max": 13, "rank_min": 10, "geonameid": 4164138, "meganame": "Miami", "ls_name": "Miami", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Washington, D.C.", "namealt": "Washington D.C.", "diffascii": 0, "nameascii": "Washington, D.C.", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "District of Columbia", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 4338000, "pop_min": 552433, "pop_other": 2175991, "rank_max": 12, "rank_min": 11, "geonameid": 4140963, "meganame": "Washington, D.C.", "ls_name": "Washington, D.C.", "ls_match": 1, "checkme": 5, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -77.080078, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Populated place", "name": "New York", "namealt": "New York-Newark", "diffascii": 0, "nameascii": "New York", "adm0cap": 0, "capin": "UN Headquarters", "worldcity": 1, "megacity": 1, "sov0name": "United States", "sov_a3": "USA", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "New York", "iso_a2": "US", "changed": 0, "namediff": 0, "pop_max": 19040000, "pop_min": 8008278, "pop_other": 9292603, "rank_max": 14, "rank_min": 13, "geonameid": 5128581, "meganame": "New York-Newark", "ls_name": "New York", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Nassau", "diffascii": 0, "nameascii": "Nassau", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Bahamas, The", "sov_a3": "BHS", "adm0name": "The Bahamas", "adm0_a3": "BHS", "iso_a2": "BS", "changed": 0, "namediff": 0, "pop_max": 227940, "pop_min": 160966, "pop_other": 0, "rank_max": 10, "rank_min": 9, "geonameid": 3571824, "ls_name": "Nassau", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.431641, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Belmopan", "diffascii": 0, "nameascii": "Belmopan", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Belize", "sov_a3": "BLZ", "adm0name": "Belize", "adm0_a3": "BLZ", "adm1name": "Cayo", "iso_a2": "BZ", "changed": 0, "namediff": 0, "pop_max": 15220, "pop_min": 13381, "pop_other": 15220, "rank_max": 6, "rank_min": 6, "geonameid": 3582672, "ls_name": "Belmopan", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tegucigalpa", "diffascii": 0, "nameascii": "Tegucigalpa", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Honduras", "sov_a3": "HND", "adm0name": "Honduras", "adm0_a3": "HND", "adm1name": "Francisco Morazán", "iso_a2": "HN", "changed": 0, "namediff": 0, "pop_max": 946000, "pop_min": 850848, "pop_other": 1014546, "rank_max": 11, "rank_min": 11, "geonameid": 3600949, "meganame": "Tegucigalpa", "ls_name": "Tegucigalpa", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.275391, 14.179186 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "San Salvador", "diffascii": 0, "nameascii": "San Salvador", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "El Salvador", "sov_a3": "SLV", "adm0name": "El Salvador", "adm0_a3": "SLV", "adm1name": "San Salvador", "iso_a2": "SV", "changed": 0, "namediff": 0, "pop_max": 1433000, "pop_min": 2807, "pop_other": 2139587, "rank_max": 12, "rank_min": 4, "geonameid": 1690681, "meganame": "San Salvador", "ls_name": "San Salvador", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Managua", "diffascii": 0, "nameascii": "Managua", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Nicaragua", "sov_a3": "NIC", "adm0name": "Nicaragua", "adm0_a3": "NIC", "adm1name": "Managua", "iso_a2": "NI", "changed": 0, "namediff": 0, "pop_max": 920000, "pop_min": 920000, "pop_other": 1088194, "rank_max": 11, "rank_min": 11, "geonameid": 3617763, "meganame": "Managua", "ls_name": "Managua", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.211180 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "San José", "namealt": "San Jose", "diffascii": 1, "nameascii": "San Jose", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Costa Rica", "sov_a3": "CRI", "adm0name": "Costa Rica", "adm0_a3": "CRI", "adm1name": "San José", "iso_a2": "CR", "changed": 0, "namediff": 0, "pop_max": 1284000, "pop_min": 1724, "pop_other": 1434681, "rank_max": 12, "rank_min": 3, "geonameid": 3669623, "meganame": "San Josi", "ls_name": "San Jose1", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Panama City", "namealt": "Ciudad de Panam", "diffascii": 0, "nameascii": "Panama City", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Panama", "sov_a3": "PAN", "adm0name": "Panama", "adm0_a3": "PAN", "adm1name": "Panama", "iso_a2": "PA", "changed": 0, "namediff": 0, "pop_max": 1281000, "pop_min": 408168, "pop_other": 939725, "rank_max": 12, "rank_min": 10, "geonameid": 3703443, "meganame": "Ciudad de Panam", "ls_name": "Panama City1", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 9.015302 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Kingston", "diffascii": 0, "nameascii": "Kingston", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Jamaica", "sov_a3": "JAM", "adm0name": "Jamaica", "adm0_a3": "JAM", "adm1name": "Kingston", "iso_a2": "JM", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 937700, "pop_min": 664973, "pop_other": 18171, "rank_max": 11, "rank_min": 11, "geonameid": 3489854, "ls_name": "Kingston1", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -76.816406, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port-au-Prince", "diffascii": 0, "nameascii": "Port-au-Prince", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Haiti", "sov_a3": "HTI", "adm0name": "Haiti", "adm0_a3": "HTI", "adm1name": "Ouest", "iso_a2": "HT", "changed": 0, "namediff": 0, "pop_max": 1998000, "pop_min": 1234742, "pop_other": 2385397, "rank_max": 12, "rank_min": 12, "geonameid": 3718426, "meganame": "Port-au-Prince", "ls_name": "Port-au-Prince", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -72.421875, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Santo Domingo", "diffascii": 0, "nameascii": "Santo Domingo", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Dominican Republic", "sov_a3": "DOM", "adm0name": "Dominican Republic", "adm0_a3": "DOM", "adm1name": "Distrito Nacional", "iso_a2": "DO", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2154000, "pop_min": 2873, "pop_other": 3322037, "rank_max": 12, "rank_min": 4, "geonameid": 3668373, "meganame": "Santo Domingo", "ls_name": "Santo Domingo", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -69.960938, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Bogota", "namealt": "Bogota", "diffascii": 0, "nameascii": "Bogota", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Colombia", "sov_a3": "COL", "adm0name": "Colombia", "adm0_a3": "COL", "adm1name": "Bogota", "iso_a2": "CO", "changed": 0, "namediff": 0, "pop_max": 7772000, "pop_min": 6333661, "pop_other": 5754084, "rank_max": 13, "rank_min": 13, "geonameid": 3688689, "meganame": "Bogota", "ls_name": "Bogota", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.653080 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Basseterre", "diffascii": 0, "nameascii": "Basseterre", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Saint Kitts and Nevis", "sov_a3": "KNA", "adm0name": "Saint Kitts and Nevis", "adm0_a3": "KNA", "iso_a2": "KN", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 21887, "pop_min": 15500, "pop_other": 21887, "rank_max": 7, "rank_min": 6, "geonameid": 3575551, "ls_name": "Basseterre", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Saint John's", "diffascii": 0, "nameascii": "Saint John's", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Antigua and Barbuda", "sov_a3": "ATG", "adm0name": "Antigua and Barbuda", "adm0_a3": "ATG", "iso_a2": "AG", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 35499, "pop_min": 24226, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 3576022, "ls_name": "Saint John's", "ls_match": 1, "checkme": 5, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -61.875000, 17.140790 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Roseau", "diffascii": 0, "nameascii": "Roseau", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Dominica", "sov_a3": "DMA", "adm0name": "Dominica", "adm0_a3": "DMA", "adm1name": "Saint George", "iso_a2": "DM", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 23336, "pop_min": 16571, "pop_other": 23336, "rank_max": 7, "rank_min": 6, "geonameid": 3575635, "ls_name": "Roseau", "ls_match": 1, "checkme": 5, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -61.435547, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Castries", "diffascii": 0, "nameascii": "Castries", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Saint Lucia", "sov_a3": "LCA", "adm0name": "Saint Lucia", "adm0_a3": "LCA", "iso_a2": "LC", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 37963, "pop_min": 10634, "pop_other": 0, "rank_max": 7, "rank_min": 6, "geonameid": 3028258, "ls_name": "Castries", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -61.083984, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Kingstown", "diffascii": 0, "nameascii": "Kingstown", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Saint Vincent and the Grenadines", "sov_a3": "VCT", "adm0name": "Saint Vincent and the Grenadines", "adm0_a3": "VCT", "iso_a2": "VC", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 49485, "pop_min": 24518, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 4359981, "ls_name": "Kingstown", "ls_match": 1, "checkme": 5, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -61.259766, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Saint George's", "diffascii": 0, "nameascii": "Saint George's", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Grenada", "sov_a3": "GRD", "adm0name": "Grenada", "adm0_a3": "GRD", "iso_a2": "GD", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 33734, "pop_min": 27343, "pop_other": 27343, "rank_max": 7, "rank_min": 7, "geonameid": 3579925, "ls_name": "Saint Georgee۪s", "ls_match": 1, "checkme": 5, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -61.787109, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bridgetown", "diffascii": 0, "nameascii": "Bridgetown", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Barbados", "sov_a3": "BRB", "adm0name": "Barbados", "adm0_a3": "BRB", "adm1name": "Saint Michael", "iso_a2": "BB", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 191152, "pop_min": 96578, "pop_other": 191814, "rank_max": 9, "rank_min": 8, "geonameid": 2075807, "ls_name": "Bridgetown", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -59.677734, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Caracas", "diffascii": 0, "nameascii": "Caracas", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Venezuela", "sov_a3": "VEN", "adm0name": "Venezuela", "adm0_a3": "VEN", "adm1name": "Distrito Capital", "iso_a2": "VE", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2985000, "pop_min": 1815679, "pop_other": 2764555, "rank_max": 12, "rank_min": 12, "geonameid": 3646738, "meganame": "Caracas", "ls_name": "Caracas", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -66.972656, 10.574222 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port-of-Spain", "diffascii": 0, "nameascii": "Port-of-Spain", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Trinidad and Tobago", "sov_a3": "TTO", "adm0name": "Trinidad and Tobago", "adm0_a3": "TTO", "adm1name": "Port of Spain", "iso_a2": "TT", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 294934, "pop_min": 49031, "pop_other": 419082, "rank_max": 10, "rank_min": 7, "geonameid": 3573890, "ls_name": "Port-of-Spain", "ls_match": 1, "checkme": 5, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Georgetown", "diffascii": 0, "nameascii": "Georgetown", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Guyana", "sov_a3": "GUY", "adm0name": "Guyana", "adm0_a3": "GUY", "adm1name": "East Berbice-Corentyne", "iso_a2": "GY", "changed": 0, "namediff": 0, "pop_max": 264350, "pop_min": 235017, "pop_other": 264350, "rank_max": 10, "rank_min": 10, "geonameid": 3378644, "ls_name": "Georgetown1", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Paramaribo", "diffascii": 0, "nameascii": "Paramaribo", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Suriname", "sov_a3": "SUR", "adm0name": "Suriname", "adm0_a3": "SUR", "adm1name": "Paramaribo", "iso_a2": "SR", "changed": 0, "namediff": 0, "pop_max": 254169, "pop_min": 223757, "pop_other": 248161, "rank_max": 10, "rank_min": 10, "geonameid": 3383330, "ls_name": "Paramaribo", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Reykjavík", "diffascii": 1, "nameascii": "Reykjavik", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Iceland", "sov_a3": "ISL", "adm0name": "Iceland", "adm0_a3": "ISL", "adm1name": "Suðurnes", "iso_a2": "IS", "changed": 0, "namediff": 0, "pop_max": 166212, "pop_min": 113906, "pop_other": 160116, "rank_max": 9, "rank_min": 9, "geonameid": 3413829, "ls_name": "Reykjavik", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dublin", "diffascii": 0, "nameascii": "Dublin", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Ireland", "sov_a3": "IRL", "adm0name": "Ireland", "adm0_a3": "IRL", "adm1name": "Dublin", "iso_a2": "IE", "changed": 0, "namediff": 0, "pop_max": 1059000, "pop_min": 968976, "pop_other": 22478, "rank_max": 12, "rank_min": 11, "geonameid": 2964574, "meganame": "Dublin", "ls_name": "Dublin2", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -6.328125, 53.383328 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "London", "diffascii": 0, "nameascii": "London", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "United Kingdom", "sov_a3": "GBR", "adm0name": "United Kingdom", "adm0_a3": "GBR", "adm1name": "Westminster", "iso_a2": "GB", "changed": 0, "namediff": 0, "pop_max": 8567000, "pop_min": 7421209, "pop_other": 326670, "rank_max": 13, "rank_min": 13, "geonameid": 2643743, "meganame": "London", "ls_name": "London2", "ls_match": 1, "checkme": 5, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -0.175781, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Praia", "diffascii": 0, "nameascii": "Praia", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Cape Verde", "sov_a3": "CPV", "adm0name": "Cape Verde", "adm0_a3": "CPV", "iso_a2": "CV", "changed": 0, "namediff": 0, "pop_max": 113364, "pop_min": 88859, "pop_other": 89205, "rank_max": 9, "rank_min": 8, "geonameid": 3374333, "ls_name": "Praia", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 5, "featurecla": "Admin-0 capital alt", "name": "Laayoune", "diffascii": 0, "nameascii": "Laayoune", "adm0cap": 0, "capalt": 1, "capin": "Claimed as capi", "worldcity": 0, "megacity": 0, "sov0name": "Morocco", "sov_a3": "MAR", "adm0name": "Morocco", "adm0_a3": "MAR", "adm1name": "Laâyoune - Boujdour - Sakia El Hamra", "iso_a2": "MA", "changed": 0, "namediff": 0, "pop_max": 188084, "pop_min": 176365, "pop_other": 176365, "rank_max": 9, "rank_min": 9, "geonameid": 2462881, "ls_name": "Laayoune", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 27.215556 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Lisbon", "namepar": "Lisboa", "diffascii": 0, "nameascii": "Lisbon", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Portugal", "sov_a3": "PRT", "adm0name": "Portugal", "adm0_a3": "PRT", "adm1name": "Lisboa", "iso_a2": "PT", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 2812000, "pop_min": 517802, "pop_other": 1795582, "rank_max": 12, "rank_min": 11, "geonameid": 2267057, "meganame": "Lisboa", "ls_name": "Lisbon", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -9.228516, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-1 capital", "name": "Casablanca", "namealt": "Dar-el-Beida", "diffascii": 0, "nameascii": "Casablanca", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Morocco", "sov_a3": "MAR", "adm0name": "Morocco", "adm0_a3": "MAR", "adm1name": "Grand Casablanca", "iso_a2": "MA", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3181000, "pop_min": 3144909, "pop_other": 3718797, "rank_max": 12, "rank_min": 12, "geonameid": 2553604, "meganame": "Dar-el-Beida", "ls_name": "Casablanca", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -7.646484, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Rabat", "diffascii": 0, "nameascii": "Rabat", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Morocco", "sov_a3": "MAR", "adm0name": "Morocco", "adm0_a3": "MAR", "adm1name": "Rabat - Salé - Zemmour - Zaer", "iso_a2": "MA", "changed": 0, "namediff": 0, "pop_max": 1705000, "pop_min": 1655753, "pop_other": 2029349, "rank_max": 12, "rank_min": 12, "geonameid": 2538475, "meganame": "Rabat", "ls_name": "Rabat", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Madrid", "diffascii": 0, "nameascii": "Madrid", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Kingdom of Spain", "sov_a3": "ESP", "adm0name": "Spain", "adm0_a3": "ESP", "adm1name": "Comunidad de Madrid", "iso_a2": "ES", "changed": 0, "namediff": 0, "pop_max": 5567000, "pop_min": 50437, "pop_other": 3673427, "rank_max": 13, "rank_min": 8, "geonameid": 3117735, "meganame": "Madrid", "ls_name": "Madrid", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.446947 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital alt", "name": "Bir Lehlou", "diffascii": 0, "nameascii": "Bir Lehlou", "adm0cap": 0, "capalt": 1, "capin": "Claimed as inte", "worldcity": 0, "megacity": 0, "sov0name": "Western Sahara", "sov_a3": "SAH", "adm0name": "Western Sahara", "adm0_a3": "SAH", "iso_a2": "EH", "changed": 4, "namediff": 1, "diffnote": "Added place.", "pop_max": 500, "pop_min": 200, "pop_other": 0, "rank_max": 2, "rank_min": 1, "geonameid": -1, "ls_match": 2, "checkme": 0, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.194877 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dakar", "diffascii": 0, "nameascii": "Dakar", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Senegal", "sov_a3": "SEN", "adm0name": "Senegal", "adm0_a3": "SEN", "adm1name": "Dakar", "iso_a2": "SN", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2604000, "pop_min": 2476400, "pop_other": 2470140, "rank_max": 12, "rank_min": 12, "geonameid": 2253354, "meganame": "Dakar", "ls_name": "Dakar", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.774883 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Nouakchott", "diffascii": 0, "nameascii": "Nouakchott", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Mauritania", "sov_a3": "MRT", "adm0name": "Mauritania", "adm0_a3": "MRT", "adm1name": "Nouakchott", "iso_a2": "MR", "changed": 0, "namediff": 0, "pop_max": 742144, "pop_min": 661400, "pop_other": 742144, "rank_max": 11, "rank_min": 11, "geonameid": 2377450, "ls_name": "Nouakchott", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.145852 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Banjul", "diffascii": 0, "nameascii": "Banjul", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Gambia, The", "sov_a3": "GMB", "adm0name": "The Gambia", "adm0_a3": "GMB", "adm1name": "Banjul", "iso_a2": "GM", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 43094, "pop_min": 34589, "pop_other": 581300, "rank_max": 7, "rank_min": 7, "geonameid": 2413876, "ls_name": "Banjul", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bissau", "diffascii": 0, "nameascii": "Bissau", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Guinea Bissau", "sov_a3": "GNB", "adm0name": "Guinea Bissau", "adm0_a3": "GNB", "adm1name": "Bissau", "iso_a2": "GW", "changed": 0, "namediff": 0, "pop_max": 403339, "pop_min": 388028, "pop_other": 403339, "rank_max": 10, "rank_min": 10, "geonameid": 2374775, "ls_name": "Bissau", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -15.644531, 11.867351 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Conakry", "diffascii": 0, "nameascii": "Conakry", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Guinea", "sov_a3": "GIN", "adm0name": "Guinea", "adm0_a3": "GIN", "adm1name": "Conakry", "iso_a2": "GN", "changed": 0, "namediff": 0, "pop_max": 1494000, "pop_min": 1494000, "pop_other": 1498020, "rank_max": 12, "rank_min": 12, "geonameid": 2422465, "meganame": "Conakry", "ls_name": "Conakry", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Freetown", "diffascii": 0, "nameascii": "Freetown", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Sierra Leone", "sov_a3": "SLE", "adm0name": "Sierra Leone", "adm0_a3": "SLE", "adm1name": "Western", "iso_a2": "SL", "changed": 0, "namediff": 0, "pop_max": 827000, "pop_min": 13768, "pop_other": 1074640, "rank_max": 11, "rank_min": 6, "geonameid": 2408770, "meganame": "Freetown", "ls_name": "Freetown", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Bamako", "diffascii": 0, "nameascii": "Bamako", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Mali", "sov_a3": "MLI", "adm0name": "Mali", "adm0_a3": "MLI", "adm1name": "Bamako", "iso_a2": "ML", "changed": 0, "namediff": 0, "pop_max": 1494000, "pop_min": 1297281, "pop_other": 1301407, "rank_max": 12, "rank_min": 12, "geonameid": 2460596, "meganame": "Bamako", "ls_name": "Bamako", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -8.085938, 12.726084 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Ouagadougou", "diffascii": 0, "nameascii": "Ouagadougou", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Burkina Faso", "sov_a3": "BFA", "adm0name": "Burkina Faso", "adm0_a3": "BFA", "adm1name": "Kadiogo", "iso_a2": "BF", "changed": 0, "namediff": 0, "pop_max": 1149000, "pop_min": 835457, "pop_other": 713874, "rank_max": 12, "rank_min": 11, "geonameid": 2357048, "meganame": "Ouagadougou", "ls_name": "Ouagadougou", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -1.582031, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Monrovia", "diffascii": 0, "nameascii": "Monrovia", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Liberia", "sov_a3": "LBR", "adm0name": "Liberia", "adm0_a3": "LBR", "adm1name": "Montserrado", "iso_a2": "LR", "changed": 0, "namediff": 0, "pop_max": 1041000, "pop_min": 785662, "pop_other": 806416, "rank_max": 12, "rank_min": 11, "geonameid": 2274895, "meganame": "Monrovia", "ls_name": "Monrovia", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Yamoussoukro", "diffascii": 0, "nameascii": "Yamoussoukro", "adm0cap": 1, "capalt": 1, "capin": "Official capita", "worldcity": 0, "megacity": 0, "sov0name": "Ivory Coast", "sov_a3": "CIV", "adm0name": "Ivory Coast", "adm0_a3": "CIV", "adm1name": "Lacs", "iso_a2": "CI", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 206499, "pop_min": 194530, "pop_other": 206499, "rank_max": 10, "rank_min": 9, "geonameid": 2279755, "ls_name": "Yamoussoukro", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -5.361328, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Abidjan", "diffascii": 0, "nameascii": "Abidjan", "adm0cap": 1, "capin": "De facto, admin", "worldcity": 0, "megacity": 1, "sov0name": "Ivory Coast", "sov_a3": "CIV", "adm0name": "Ivory Coast", "adm0_a3": "CIV", "adm1name": "Lagunes", "iso_a2": "CI", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3802000, "pop_min": 3190395, "pop_other": 3181637, "rank_max": 12, "rank_min": 12, "geonameid": 2293538, "meganame": "Abidjan", "ls_name": "Abidjan", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Accra", "diffascii": 0, "nameascii": "Accra", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Ghana", "sov_a3": "GHA", "adm0name": "Ghana", "adm0_a3": "GHA", "adm1name": "Greater Accra", "iso_a2": "GH", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2121000, "pop_min": 1963264, "pop_other": 2334371, "rank_max": 12, "rank_min": 12, "geonameid": 2306104, "meganame": "Accra", "ls_name": "Accra", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, 5.615986 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Nukualofa", "diffascii": 0, "nameascii": "Nukualofa", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Tonga", "sov_a3": "TON", "adm0name": "Tonga", "adm0_a3": "TON", "iso_a2": "TO", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 42620, "pop_min": 23658, "pop_other": 42620, "rank_max": 7, "rank_min": 7, "geonameid": 4032402, "ls_name": "Nukualofa", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -175.253906, -21.125498 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Apia", "diffascii": 0, "nameascii": "Apia", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Samoa", "sov_a3": "WSM", "adm0name": "Samoa", "adm0_a3": "WSM", "iso_a2": "WS", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 61916, "pop_min": 37708, "pop_other": 0, "rank_max": 8, "rank_min": 7, "geonameid": 3689793, "ls_name": "Apia", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -171.826172, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Quito", "diffascii": 0, "nameascii": "Quito", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Ecuador", "sov_a3": "ECU", "adm0name": "Ecuador", "adm0_a3": "ECU", "adm1name": "Pichincha", "iso_a2": "EC", "changed": 0, "namediff": 0, "pop_max": 1701000, "pop_min": 1399814, "pop_other": 1435528, "rank_max": 12, "rank_min": 12, "geonameid": 3652462, "meganame": "Quito", "ls_name": "Quito", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -78.574219, -0.175781 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Lima", "diffascii": 0, "nameascii": "Lima", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Peru", "sov_a3": "PER", "adm0name": "Peru", "adm0_a3": "PER", "adm1name": "Lima", "iso_a2": "PE", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 8012000, "pop_min": 6758234, "pop_other": 6068380, "rank_max": 13, "rank_min": 13, "geonameid": 3936456, "meganame": "Lima", "ls_name": "Lima2", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "La Paz", "diffascii": 0, "nameascii": "La Paz", "adm0cap": 1, "capin": "Administrative", "worldcity": 0, "megacity": 1, "sov0name": "Bolivia", "sov_a3": "BOL", "adm0name": "Bolivia", "adm0_a3": "BOL", "adm1name": "La Paz", "iso_a2": "BO", "changed": 0, "namediff": 0, "pop_max": 1590000, "pop_min": 812799, "pop_other": 4400, "rank_max": 12, "rank_min": 11, "geonameid": 3911925, "meganame": "La Paz", "ls_name": "La Paz3", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -68.203125, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 3, "featurecla": "Admin-0 capital alt", "name": "Valparaíso", "namealt": "Valparaiso", "diffascii": 1, "nameascii": "Valparaiso", "adm0cap": 0, "capalt": 1, "capin": "Legislative cap", "worldcity": 0, "megacity": 1, "sov0name": "Chile", "sov_a3": "CHL", "adm0name": "Chile", "adm0_a3": "CHL", "adm1name": "Valparaíso", "iso_a2": "CL", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 854000, "pop_min": 15938, "pop_other": 130815, "rank_max": 11, "rank_min": 6, "geonameid": 3445575, "meganame": "Valpara so", "ls_name": "Valparaiso2", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -32.990236 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Santiago", "diffascii": 0, "nameascii": "Santiago", "adm0cap": 1, "capin": "Official, admin", "worldcity": 1, "megacity": 1, "sov0name": "Chile", "sov_a3": "CHL", "adm0name": "Chile", "adm0_a3": "CHL", "adm1name": "Región Metropolitana de Santiago", "iso_a2": "CL", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 5720000, "pop_min": 46611, "pop_other": 3066651, "rank_max": 13, "rank_min": 7, "geonameid": 3449741, "meganame": "Santiago", "ls_name": "Santiago3", "ls_match": 1, "checkme": 0, "min_zoom": 2 }, "geometry": { "type": "Point", "coordinates": [ -70.751953, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Sucre", "diffascii": 0, "nameascii": "Sucre", "adm0cap": 1, "capin": "Official (const", "worldcity": 0, "megacity": 0, "sov0name": "Bolivia", "sov_a3": "BOL", "adm0name": "Bolivia", "adm0_a3": "BOL", "adm1name": "Chuquisaca", "iso_a2": "BO", "changed": 0, "namediff": 0, "pop_max": 224838, "pop_min": 221736, "pop_other": 221736, "rank_max": 10, "rank_min": 10, "geonameid": 3903987, "ls_name": "Sucre", "ls_match": 1, "checkme": 0, "min_zoom": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -65.302734, -18.979026 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Brasília", "namealt": "Brasilia", "diffascii": 0, "nameascii": "Brasilia", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Brazil", "sov_a3": "BRA", "adm0name": "Brazil", "adm0_a3": "BRA", "adm1name": "Distrito Federal", "iso_a2": "BR", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3716996, "pop_min": 2562963, "pop_other": 1772679, "rank_max": 12, "rank_min": 12, "geonameid": 3469058, "meganame": "Brasglia", "ls_name": "Brasilia", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -47.988281, -15.707663 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Asunción", "namealt": "Asuncion", "diffascii": 1, "nameascii": "Asuncion", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Paraguay", "sov_a3": "PRY", "adm0name": "Paraguay", "adm0_a3": "PRY", "adm1name": "Asunción", "iso_a2": "PY", "changed": 0, "namediff": 0, "pop_max": 1870000, "pop_min": 11693, "pop_other": 636771, "rank_max": 12, "rank_min": 6, "geonameid": 1730025, "meganame": "Asuncian", "ls_name": "Asuncion", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.244696 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Buenos Aires", "diffascii": 0, "nameascii": "Buenos Aires", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Argentina", "sov_a3": "ARG", "adm0name": "Argentina", "adm0_a3": "ARG", "adm1name": "Ciudad de Buenos Aires", "iso_a2": "AR", "changed": 0, "namediff": 0, "pop_max": 12795000, "pop_min": 10929146, "pop_other": 10271457, "rank_max": 14, "rank_min": 14, "geonameid": 3435910, "meganame": "Buenos Aires", "ls_name": "Buenos Aires", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -58.447266, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "São Paulo", "namealt": "Sao Paulo|Sio Paulo", "diffascii": 0, "nameascii": "Sao Paulo", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Brazil", "sov_a3": "BRA", "adm0name": "Brazil", "adm0_a3": "BRA", "adm1name": "São Paulo", "iso_a2": "BR", "changed": 0, "namediff": 0, "pop_max": 18845000, "pop_min": 10021295, "pop_other": 11522944, "rank_max": 14, "rank_min": 14, "geonameid": 3448439, "meganame": "S", "ls_name": "Sao Paolo", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.483401 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Montevideo", "diffascii": 0, "nameascii": "Montevideo", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Uruguay", "sov_a3": "URY", "adm0name": "Uruguay", "adm0_a3": "URY", "adm1name": "Montevideo", "iso_a2": "UY", "changed": 0, "namediff": 0, "pop_max": 1513000, "pop_min": 5324, "pop_other": 1276128, "rank_max": 12, "rank_min": 5, "geonameid": 5038018, "meganame": "Montevideo", "ls_name": "Montevideo", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ -56.250000, -34.813803 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Rio de Janeiro", "diffascii": 0, "nameascii": "Rio de Janeiro", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Brazil", "sov_a3": "BRA", "adm0name": "Brazil", "adm0_a3": "BRA", "adm1name": "Rio de Janeiro", "iso_a2": "BR", "changed": 0, "namediff": 0, "pop_max": 11748000, "pop_min": 2010175, "pop_other": 1821489, "rank_max": 14, "rank_min": 12, "geonameid": 3451190, "meganame": "Rio de Janeiro", "ls_name": "Rio de Janeiro", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Oslo", "diffascii": 0, "nameascii": "Oslo", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Kingdom of Norway", "sov_a3": "NOR", "adm0name": "Norway", "adm0_a3": "NOR", "adm1name": "Oslo", "iso_a2": "NO", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 835000, "pop_min": 580000, "pop_other": 701804, "rank_max": 11, "rank_min": 11, "geonameid": 3143244, "meganame": "Oslo", "ls_name": "Oslo", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 10.722656, 59.933000 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Stockholm", "diffascii": 0, "nameascii": "Stockholm", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Sweden", "sov_a3": "SWE", "adm0name": "Sweden", "adm0_a3": "SWE", "adm1name": "Stockholm", "iso_a2": "SE", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 1264000, "pop_min": 1253309, "pop_other": 0, "rank_max": 12, "rank_min": 12, "geonameid": 2673730, "meganame": "Stockholm", "ls_name": "Stockholm", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 18.017578, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "The Hague", "diffascii": 0, "nameascii": "The Hague", "adm0cap": 0, "capalt": 1, "capin": "Official, legis", "worldcity": 0, "megacity": 0, "sov0name": "Kingdom of the Netherlands", "sov_a3": "NLD", "adm0name": "Netherlands", "adm0_a3": "NLD", "adm1name": "Zuid-Holland", "iso_a2": "NL", "changed": 0, "namediff": 0, "pop_max": 1406000, "pop_min": 501725, "pop_other": 688599, "rank_max": 12, "rank_min": 11, "geonameid": 2747373, "ls_name": "The Hague", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 4.218750, 52.106505 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Amsterdam", "diffascii": 0, "nameascii": "Amsterdam", "adm0cap": 1, "capin": "De facto capita", "worldcity": 1, "megacity": 1, "sov0name": "Kingdom of the Netherlands", "sov_a3": "NLD", "adm0name": "Netherlands", "adm0_a3": "NLD", "adm1name": "Noord-Holland", "iso_a2": "NL", "changed": 0, "namediff": 0, "pop_max": 1031000, "pop_min": 741636, "pop_other": 962488, "rank_max": 12, "rank_min": 11, "geonameid": 2759794, "meganame": "Amsterdam", "ls_name": "Amsterdam", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 4.833984, 52.375599 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Brussels", "namealt": "Bruxelles-Brussel", "diffascii": 0, "nameascii": "Brussels", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Belgium", "sov_a3": "BEL", "adm0name": "Belgium", "adm0_a3": "BEL", "adm1name": "Brussels", "iso_a2": "BE", "changed": 0, "namediff": 0, "pop_max": 1743000, "pop_min": 1019022, "pop_other": 1490164, "rank_max": 12, "rank_min": 12, "geonameid": 2800866, "meganame": "Bruxelles-Brussel", "ls_name": "Brussels", "ls_match": 1, "checkme": 5, "min_zoom": 4.7 }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Luxembourg", "diffascii": 0, "nameascii": "Luxembourg", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Luxembourg", "sov_a3": "LUX", "adm0name": "Luxembourg", "adm0_a3": "LUX", "adm1name": "Luxembourg", "iso_a2": "LU", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 107260, "pop_min": 76684, "pop_other": 106219, "rank_max": 9, "rank_min": 8, "geonameid": 2960316, "ls_name": "Luxembourg", "ls_match": 1, "checkme": 0, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 6.064453, 49.667628 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Paris", "diffascii": 0, "nameascii": "Paris", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "French Republic", "sov_a3": "FRA", "adm0name": "France", "adm0_a3": "FRA", "adm1name": "Île-de-France", "iso_a2": "FR", "changed": 0, "namediff": 0, "pop_max": 9904000, "pop_min": 11177, "pop_other": 7142744, "rank_max": 13, "rank_min": 6, "geonameid": 2988507, "meganame": "Paris", "ls_name": "Paris", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 2.285156, 48.922499 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Andorra", "diffascii": 0, "nameascii": "Andorra", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Andorra", "sov_a3": "AND", "adm0name": "Andorra", "adm0_a3": "AND", "iso_a2": "AD", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 53998, "pop_min": 22256, "pop_other": 53371, "rank_max": 8, "rank_min": 7, "geonameid": 3130067, "ls_name": "Andorra", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.553080 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 7, "featurecla": "Admin-1 capital", "name": "Geneva", "diffascii": 0, "nameascii": "Geneva", "adm0cap": 0, "worldcity": 1, "megacity": 0, "sov0name": "Switzerland", "sov_a3": "CHE", "adm0name": "Switzerland", "adm0_a3": "CHE", "adm1name": "Genève", "iso_a2": "CH", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1240000, "pop_min": 192385, "pop_other": 508284, "rank_max": 12, "rank_min": 9, "geonameid": 2660646, "ls_name": "Geneva", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 6.064453, 46.255847 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Bern", "diffascii": 0, "nameascii": "Bern", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Switzerland", "sov_a3": "CHE", "adm0name": "Switzerland", "adm0_a3": "CHE", "adm1name": "Bern", "iso_a2": "CH", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 275329, "pop_min": 121631, "pop_other": 267814, "rank_max": 10, "rank_min": 9, "geonameid": 2661552, "ls_name": "Bern", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 7, "natscale": 20, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Vaduz", "diffascii": 0, "nameascii": "Vaduz", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Liechtenstein", "sov_a3": "LIE", "adm0name": "Liechtenstein", "adm0_a3": "LIE", "iso_a2": "LI", "changed": 0, "namediff": 0, "pop_max": 36281, "pop_min": 5342, "pop_other": 33009, "rank_max": 7, "rank_min": 5, "geonameid": 3042030, "ls_name": "Vaduz", "ls_match": 1, "checkme": 0, "min_zoom": 6.7 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 47.159840 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Monaco", "diffascii": 0, "nameascii": "Monaco", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Monaco", "sov_a3": "MCO", "adm0name": "Monaco", "adm0_a3": "MCO", "iso_a2": "MC", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 36371, "pop_min": 36371, "pop_other": 102371, "rank_max": 7, "rank_min": 7, "geonameid": 2993458, "ls_name": "Monaco", "ls_match": 1, "checkme": 0, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.771094 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "København", "namepar": "Copenhagen", "diffascii": 1, "nameascii": "Kobenhavn", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Denmark", "sov_a3": "DNK", "adm0name": "Denmark", "adm0_a3": "DNK", "adm1name": "Hovedstaden", "iso_a2": "DK", "changed": 0, "namediff": 0, "pop_max": 1085000, "pop_min": 1085000, "pop_other": 1038288, "rank_max": 12, "rank_min": 12, "geonameid": 2618425, "meganame": "K", "ls_name": "Copenhagen", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 55.727110 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Berlin", "diffascii": 0, "nameascii": "Berlin", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Germany", "sov_a3": "DEU", "adm0name": "Germany", "adm0_a3": "DEU", "adm1name": "Berlin", "iso_a2": "DE", "changed": 0, "namediff": 0, "pop_max": 3406000, "pop_min": 3094014, "pop_other": 3013258, "rank_max": 12, "rank_min": 12, "geonameid": 2950159, "meganame": "Berlin", "ls_name": "Berlin", "ls_match": 1, "checkme": 0, "min_zoom": 2.7 }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Prague", "namepar": "Praha", "diffascii": 0, "nameascii": "Prague", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Czech Republic", "sov_a3": "CZE", "adm0name": "Czech Republic", "adm0_a3": "CZE", "adm1name": "Prague", "iso_a2": "CZ", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1162000, "pop_min": 2087, "pop_other": 1088042, "rank_max": 12, "rank_min": 4, "geonameid": 4548393, "meganame": "Praha", "ls_name": "Prague", "ls_match": 1, "checkme": 0, "min_zoom": 4.7 }, "geometry": { "type": "Point", "coordinates": [ 14.414062, 50.120578 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Warsaw", "namepar": "Warszawa", "diffascii": 0, "nameascii": "Warsaw", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Poland", "sov_a3": "POL", "adm0name": "Poland", "adm0_a3": "POL", "adm1name": "Masovian", "iso_a2": "PL", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1707000, "pop_min": 1702139, "pop_other": 2012431, "rank_max": 12, "rank_min": 12, "geonameid": 756135, "meganame": "Warszawa", "ls_name": "Warsaw", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 20.917969, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Vienna", "namepar": "Wien", "diffascii": 0, "nameascii": "Vienna", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Austria", "sov_a3": "AUT", "adm0name": "Austria", "adm0_a3": "AUT", "adm1name": "Wien", "iso_a2": "AT", "changed": 0, "namediff": 0, "pop_max": 2400000, "pop_min": 1731000, "pop_other": 1480886, "rank_max": 12, "rank_min": 12, "geonameid": 2761369, "meganame": "Wien", "ls_name": "Vienna", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.224673 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Ljubljana", "diffascii": 0, "nameascii": "Ljubljana", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Slovenia", "sov_a3": "SVN", "adm0name": "Slovenia", "adm0_a3": "SVN", "adm1name": "Osrednjeslovenska", "iso_a2": "SI", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 314807, "pop_min": 255115, "pop_other": 256316, "rank_max": 10, "rank_min": 10, "geonameid": 3196359, "ls_name": "Ljubljana", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Zagreb", "diffascii": 0, "nameascii": "Zagreb", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Croatia", "sov_a3": "HRV", "adm0name": "Croatia", "adm0_a3": "HRV", "adm1name": "Grad Zagreb", "iso_a2": "HR", "changed": 0, "namediff": 0, "pop_max": 722526, "pop_min": 698966, "pop_other": 690638, "rank_max": 11, "rank_min": 11, "geonameid": 3186886, "ls_name": "Zagreb", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 7, "natscale": 20, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "San Marino", "diffascii": 0, "nameascii": "San Marino", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "San Marino", "sov_a3": "SMR", "adm0name": "San Marino", "adm0_a3": "SMR", "iso_a2": "SM", "changed": 0, "namediff": 0, "pop_max": 29579, "pop_min": 29000, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 3168070, "ls_name": "San Marino", "ls_match": 1, "checkme": 5, "min_zoom": 6.1 }, "geometry": { "type": "Point", "coordinates": [ 12.392578, 43.961191 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 8, "natscale": 10, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Vatican City", "diffascii": 0, "nameascii": "Vatican City", "adm0cap": 1, "worldcity": 1, "megacity": 0, "sov0name": "Vatican (Holy Sea)", "sov_a3": "VAT", "adm0name": "Vatican (Holy See)", "adm0_a3": "VAT", "adm1name": "Lazio", "iso_a2": "VA", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 832, "pop_min": 832, "pop_other": 562430, "rank_max": 2, "rank_min": 2, "geonameid": 6691831, "ls_name": "Vatican City", "ls_match": 1, "checkme": 0, "min_zoom": 7 }, "geometry": { "type": "Point", "coordinates": [ 12.392578, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Rome", "diffascii": 0, "nameascii": "Rome", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Italy", "sov_a3": "ITA", "adm0name": "Italy", "adm0_a3": "ITA", "adm1name": "Lazio", "iso_a2": "IT", "changed": 0, "namediff": 0, "pop_max": 3339000, "pop_min": 35452, "pop_other": 2050212, "rank_max": 12, "rank_min": 7, "geonameid": 3169070, "meganame": "Rome", "ls_name": "Rome", "ls_match": 1, "checkme": 0, "min_zoom": 2.7 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Bratislava", "diffascii": 0, "nameascii": "Bratislava", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Slovakia", "sov_a3": "SVK", "adm0name": "Slovakia", "adm0_a3": "SVK", "adm1name": "Bratislavský", "iso_a2": "SK", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 423737, "pop_min": 373687, "pop_other": 361489, "rank_max": 10, "rank_min": 10, "geonameid": 3060972, "ls_name": "Bratislava", "ls_match": 1, "checkme": 0, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, 48.166085 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Budapest", "diffascii": 0, "nameascii": "Budapest", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Hungary", "sov_a3": "HUN", "adm0name": "Hungary", "adm0_a3": "HUN", "adm1name": "Budapest", "iso_a2": "HU", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1679000, "pop_min": 1679000, "pop_other": 1718895, "rank_max": 12, "rank_min": 12, "geonameid": 3054643, "meganame": "Budapest", "ls_name": "Budapest", "ls_match": 1, "checkme": 0, "min_zoom": 4.7 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Sarajevo", "diffascii": 0, "nameascii": "Sarajevo", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0name": "Bosnia and Herzegovina", "adm0_a3": "BIH", "adm1name": "Sarajevo", "iso_a2": "BA", "changed": 0, "namediff": 0, "pop_max": 696731, "pop_min": 628902, "pop_other": 627065, "rank_max": 11, "rank_min": 11, "geonameid": 3191281, "ls_name": "Sarajevo", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.897892 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Podgorica", "diffascii": 0, "nameascii": "Podgorica", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Montenegro", "sov_a3": "MNE", "adm0name": "Montenegro", "adm0_a3": "MNE", "adm1name": "Podgorica", "iso_a2": "ME", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 145850, "pop_min": 136473, "pop_other": 0, "rank_max": 9, "rank_min": 9, "geonameid": 3193044, "ls_name": "Podgorica", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 19.248047, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Belgrade", "namepar": "Beograd", "diffascii": 0, "nameascii": "Belgrade", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Republic of Serbia", "sov_a3": "SRB", "adm0name": "Serbia", "adm0_a3": "SRB", "adm1name": "Grad Beograd", "iso_a2": "RS", "changed": 0, "namediff": 0, "pop_max": 1099000, "pop_min": 1099000, "pop_other": 1271541, "rank_max": 12, "rank_min": 12, "geonameid": 792680, "meganame": "Beograd", "ls_name": "Belgrade", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 20.390625, 44.840291 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tirana", "diffascii": 0, "nameascii": "Tirana", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Albania", "sov_a3": "ALB", "adm0name": "Albania", "adm0_a3": "ALB", "adm1name": "Durrës", "iso_a2": "AL", "changed": 0, "namediff": 0, "pop_max": 895350, "pop_min": 421286, "pop_other": 517792, "rank_max": 11, "rank_min": 10, "geonameid": 3183875, "ls_name": "Tirana", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 19.775391, 41.376809 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Pristina", "diffascii": 0, "nameascii": "Pristina", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Kosovo", "sov_a3": "KOS", "adm0name": "Kosovo", "adm0_a3": "KOS", "adm1name": "Pristina", "iso_a2": -99, "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 465186, "pop_min": 198214, "pop_other": 261783, "rank_max": 10, "rank_min": 9, "geonameid": 786714, "ls_name": "Pristina", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 21.093750, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Skopje", "diffascii": 0, "nameascii": "Skopje", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Macedonia", "sov_a3": "MKD", "adm0name": "Macedonia", "adm0_a3": "MKD", "adm1name": "Centar", "iso_a2": "MK", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 494087, "pop_min": 474889, "pop_other": 491890, "rank_max": 10, "rank_min": 10, "geonameid": 785842, "ls_name": "Skopje", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 21.357422, 42.032974 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Helsinki", "diffascii": 0, "nameascii": "Helsinki", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Finland", "sov_a3": "FIN", "adm0name": "Finland", "adm0_a3": "FIN", "adm1name": "Southern Finland", "iso_a2": "FI", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1115000, "pop_min": 558457, "pop_other": 762958, "rank_max": 12, "rank_min": 11, "geonameid": 658225, "meganame": "Helsinki", "ls_name": "Helsinki", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 24.873047, 60.196156 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tallinn", "diffascii": 0, "nameascii": "Tallinn", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Estonia", "sov_a3": "EST", "adm0name": "Estonia", "adm0_a3": "EST", "adm1name": "Harju", "iso_a2": "EE", "changed": 0, "namediff": 0, "pop_max": 394024, "pop_min": 340027, "pop_other": 317949, "rank_max": 10, "rank_min": 10, "geonameid": 588409, "ls_name": "Tallinn", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Riga", "diffascii": 0, "nameascii": "Riga", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Latvia", "sov_a3": "LVA", "adm0name": "Latvia", "adm0_a3": "LVA", "adm1name": "Riga", "iso_a2": "LV", "changed": 0, "namediff": 0, "pop_max": 742572, "pop_min": 705033, "pop_other": 0, "rank_max": 11, "rank_min": 11, "geonameid": 456172, "ls_name": "Riga", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.992883 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Vilnius", "diffascii": 0, "nameascii": "Vilnius", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Lithuania", "sov_a3": "LTU", "adm0name": "Lithuania", "adm0_a3": "LTU", "adm1name": "Vilniaus", "iso_a2": "LT", "changed": 0, "namediff": 0, "pop_max": 542366, "pop_min": 507029, "pop_other": 494356, "rank_max": 11, "rank_min": 11, "geonameid": 593116, "ls_name": "Vilnius", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.724620 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Minsk", "diffascii": 0, "nameascii": "Minsk", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Belarus", "sov_a3": "BLR", "adm0name": "Belarus", "adm0_a3": "BLR", "adm1name": "Minsk", "iso_a2": "BY", "changed": 0, "namediff": 0, "pop_max": 1805000, "pop_min": 1577138, "pop_other": 1557919, "rank_max": 12, "rank_min": 12, "geonameid": 625144, "meganame": "Minsk", "ls_name": "Minsk", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 27.509766, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Kiev", "namealt": "Kyiv", "diffascii": 0, "nameascii": "Kiev", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Ukraine", "sov_a3": "UKR", "adm0name": "Ukraine", "adm0_a3": "UKR", "adm1name": "Kiev", "iso_a2": "UA", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2709000, "pop_min": 1662508, "pop_other": 1611692, "rank_max": 12, "rank_min": 12, "geonameid": 703448, "meganame": "Kyiv", "ls_name": "Kiev", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Sofia", "diffascii": 0, "nameascii": "Sofia", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Bulgaria", "sov_a3": "BGR", "adm0name": "Bulgaria", "adm0_a3": "BGR", "adm1name": "Grad Sofiya", "iso_a2": "BG", "changed": 0, "namediff": 0, "pop_max": 1185000, "pop_min": 874827, "pop_other": 871735, "rank_max": 12, "rank_min": 11, "geonameid": 727011, "meganame": "Sofia", "ls_name": "Sofia", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.747012 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Bucharest", "namepar": "Bucuresti", "diffascii": 0, "nameascii": "Bucharest", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Romania", "sov_a3": "ROU", "adm0name": "Romania", "adm0_a3": "ROU", "adm1name": "Bucharest", "iso_a2": "RO", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1942000, "pop_min": 1742194, "pop_other": 1636574, "rank_max": 12, "rank_min": 12, "geonameid": 683506, "meganame": "Bucuresti", "ls_name": "Bucharest", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 26.015625, 44.465151 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Chișinău", "diffascii": 0, "nameascii": "Chisinau", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Moldova", "sov_a3": "MDA", "adm0name": "Moldova", "adm0_a3": "MDA", "adm1name": "Chisinau", "iso_a2": "MD", "changed": 0, "namediff": 0, "pop_max": 688134, "pop_min": 635994, "pop_other": 664472, "rank_max": 11, "rank_min": 11, "geonameid": 618426, "ls_name": "Chisinau", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 47.040182 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 5, "featurecla": "Admin-1 capital", "name": "Istanbul", "diffascii": 0, "nameascii": "Istanbul", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Turkey", "sov_a3": "TUR", "adm0name": "Turkey", "adm0_a3": "TUR", "adm1name": "Istanbul", "iso_a2": "TR", "changed": 0, "namediff": 0, "pop_max": 10061000, "pop_min": 9945610, "pop_other": 9651488, "rank_max": 14, "rank_min": 13, "geonameid": 745044, "meganame": "Istanbul", "ls_name": "Istanbul", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Moscow", "namepar": "Moskva", "diffascii": 0, "nameascii": "Moscow", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Russia", "sov_a3": "RUS", "adm0name": "Russia", "adm0_a3": "RUS", "adm1name": "Moskva", "iso_a2": "RU", "changed": 0, "namediff": 0, "pop_max": 10452000, "pop_min": 10452000, "pop_other": 10585385, "rank_max": 14, "rank_min": 14, "geonameid": 524901, "meganame": "Moskva", "ls_name": "Moscow", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 37.529297, 55.776573 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tbilisi", "namealt": "T'Bilisi", "diffascii": 0, "nameascii": "Tbilisi", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Georgia", "sov_a3": "GEO", "adm0name": "Georgia", "adm0_a3": "GEO", "adm1name": "Tbilisi", "iso_a2": "GE", "changed": 0, "namediff": 0, "pop_max": 1100000, "pop_min": 1005257, "pop_other": 977179, "rank_max": 12, "rank_min": 12, "geonameid": 611717, "meganame": "Tbilisi", "ls_name": "Tbilisi", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 44.736328, 41.771312 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Algiers", "namealt": "El Djazacr", "diffascii": 0, "nameascii": "Algiers", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Algeria", "sov_a3": "DZA", "adm0name": "Algeria", "adm0_a3": "DZA", "adm1name": "Alger", "iso_a2": "DZ", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3354000, "pop_min": 1977663, "pop_other": 3332619, "rank_max": 12, "rank_min": 12, "geonameid": 2507480, "meganame": "El Djazasr", "ls_name": "Algiers", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Tunis", "diffascii": 0, "nameascii": "Tunis", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Tunisia", "sov_a3": "TUN", "adm0name": "Tunisia", "adm0_a3": "TUN", "adm1name": "Tunis", "iso_a2": "TN", "changed": 0, "namediff": 0, "pop_max": 2412500, "pop_min": 728453, "pop_other": 1675117, "rank_max": 12, "rank_min": 11, "geonameid": 2464470, "ls_name": "Tunis", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 10.107422, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Tripoli", "diffascii": 0, "nameascii": "Tripoli", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Libya", "sov_a3": "LBY", "adm0name": "Libya", "adm0_a3": "LBY", "adm1name": "Tajura' wa an Nawahi al Arba", "iso_a2": "LY", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2189000, "pop_min": 229398, "pop_other": 1149981, "rank_max": 12, "rank_min": 10, "geonameid": -1, "meganame": "Tarabulus", "ls_name": "Tripoli1", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 13.095703, 32.916485 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Valletta", "diffascii": 0, "nameascii": "Valletta", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Malta", "sov_a3": "MLT", "adm0name": "Malta", "adm0_a3": "MLT", "iso_a2": "MT", "changed": 0, "namediff": 0, "pop_max": 368250, "pop_min": 6966, "pop_other": 336174, "rank_max": 10, "rank_min": 5, "geonameid": 2562305, "ls_name": "Valletta", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Niamey", "diffascii": 0, "nameascii": "Niamey", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Niger", "sov_a3": "NER", "adm0name": "Niger", "adm0_a3": "NER", "adm1name": "Niamey", "iso_a2": "NE", "changed": 0, "namediff": 0, "pop_max": 915000, "pop_min": 742791, "pop_other": 715325, "rank_max": 11, "rank_min": 11, "geonameid": 2440485, "meganame": "Niamey", "ls_name": "Niamey", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.581921 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Lomé", "namealt": "Lome", "diffascii": 0, "nameascii": "Lome", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Togo", "sov_a3": "TGO", "adm0name": "Togo", "adm0_a3": "TGO", "adm1name": "Maritime", "iso_a2": "TG", "changed": 0, "namediff": 0, "pop_max": 1452000, "pop_min": 749700, "pop_other": 1256715, "rank_max": 12, "rank_min": 11, "geonameid": 2365267, "meganame": "Lomi", "ls_name": "Lome", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 1.142578, 6.140555 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Cotonou", "diffascii": 0, "nameascii": "Cotonou", "adm0cap": 1, "capin": "De facto, admin", "worldcity": 0, "megacity": 1, "sov0name": "Benin", "sov_a3": "BEN", "adm0name": "Benin", "adm0_a3": "BEN", "adm1name": "Ouémé", "iso_a2": "BJ", "changed": 0, "namediff": 0, "pop_max": 762000, "pop_min": 690584, "pop_other": 1060640, "rank_max": 11, "rank_min": 11, "geonameid": 2394819, "meganame": "Cotonou", "ls_name": "Cotonou", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 2.460938, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "Porto-Novo", "diffascii": 0, "nameascii": "Porto-Novo", "adm0cap": 0, "capalt": 1, "capin": "Official capita", "worldcity": 0, "megacity": 0, "sov0name": "Benin", "sov_a3": "BEN", "adm0name": "Benin", "adm0_a3": "BEN", "adm1name": "Ouémé", "iso_a2": "BJ", "changed": 0, "namediff": 0, "pop_max": 300000, "pop_min": 234168, "pop_other": 806945, "rank_max": 10, "rank_min": 10, "geonameid": 2392087, "ls_name": "Porto-Novo", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 2.548828, 6.489983 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 2, "featurecla": "Admin-0 capital alt", "name": "Lagos", "diffascii": 0, "nameascii": "Lagos", "adm0cap": 0, "capalt": 1, "capin": "Former capital", "worldcity": 1, "megacity": 1, "sov0name": "Nigeria", "sov_a3": "NGA", "adm0name": "Nigeria", "adm0_a3": "NGA", "adm1name": "Lagos", "iso_a2": "NG", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 9466000, "pop_min": 1536, "pop_other": 6567892, "rank_max": 13, "rank_min": 3, "geonameid": 2332459, "meganame": "Lagos", "ls_name": "Lagos", "ls_match": 1, "checkme": 0, "min_zoom": 2 }, "geometry": { "type": "Point", "coordinates": [ 3.339844, 6.489983 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Abuja", "diffascii": 0, "nameascii": "Abuja", "adm0cap": 1, "capin": "Official and ad", "worldcity": 0, "megacity": 1, "sov0name": "Nigeria", "sov_a3": "NGA", "adm0name": "Nigeria", "adm0_a3": "NGA", "adm1name": "Federal Capital Territory", "iso_a2": "NG", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1576000, "pop_min": 162135, "pop_other": 0, "rank_max": 12, "rank_min": 9, "geonameid": 2322794, "meganame": "Abuja", "ls_name": "Abuja", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 9.102097 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "São Tomé", "diffascii": 1, "nameascii": "Sao Tome", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Sao Tome and Principe", "sov_a3": "STP", "adm0name": "Sao Tome and Principe", "adm0_a3": "STP", "iso_a2": "ST", "changed": 0, "namediff": 0, "pop_max": 88219, "pop_min": 56166, "pop_other": 88219, "rank_max": 8, "rank_min": 8, "geonameid": 3388092, "ls_name": "Sao Tome", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 6.679688, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Malabo", "diffascii": 0, "nameascii": "Malabo", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Equatorial Guinea", "sov_a3": "GNQ", "adm0name": "Equatorial Guinea", "adm0_a3": "GNQ", "adm1name": "Bioko Norte", "iso_a2": "GQ", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 155963, "pop_min": 155963, "pop_other": 0, "rank_max": 9, "rank_min": 9, "geonameid": 2309527, "ls_name": "Malabo", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 8.701172, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Libreville", "diffascii": 0, "nameascii": "Libreville", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Gabon", "sov_a3": "GAB", "adm0name": "Gabon", "adm0_a3": "GAB", "adm1name": "Estuaire", "iso_a2": "GA", "changed": 0, "namediff": 0, "pop_max": 578156, "pop_min": 483355, "pop_other": 483522, "rank_max": 11, "rank_min": 10, "geonameid": 2399697, "ls_name": "Libreville", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 9.404297, 0.439449 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Ndjamena", "namealt": "N'Djamnna", "diffascii": 0, "nameascii": "Ndjamena", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Chad", "sov_a3": "TCD", "adm0name": "Chad", "adm0_a3": "TCD", "adm1name": "Hadjer-Lamis", "iso_a2": "TD", "changed": 0, "namediff": 0, "pop_max": 989000, "pop_min": 681387, "pop_other": 686347, "rank_max": 11, "rank_min": 11, "geonameid": 2427123, "meganame": "N'Djam-na", "ls_name": "Ndjamena", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Yaounde", "namealt": "Yaounde", "diffascii": 0, "nameascii": "Yaounde", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Cameroon", "sov_a3": "CMR", "adm0name": "Cameroon", "adm0_a3": "CMR", "adm1name": "Centre", "iso_a2": "CM", "changed": 0, "namediff": 0, "pop_max": 1611000, "pop_min": 1060587, "pop_other": 1060747, "rank_max": 12, "rank_min": 12, "geonameid": 2220957, "meganame": "Yaound", "ls_name": "Yaounde", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.951941 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Bangui", "diffascii": 0, "nameascii": "Bangui", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Central African Republic", "sov_a3": "CAF", "adm0name": "Central African Republic", "adm0_a3": "CAF", "adm1name": "Bangui", "iso_a2": "CF", "changed": 0, "namediff": 0, "pop_max": 831925, "pop_min": 622771, "pop_other": 782274, "rank_max": 11, "rank_min": 11, "geonameid": 2389853, "ls_name": "Bangui", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Athens", "namepar": "Athenai", "namealt": "Athinai", "diffascii": 0, "nameascii": "Athens", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Greece", "sov_a3": "GRC", "adm0name": "Greece", "adm0_a3": "GRC", "adm1name": "Attiki", "iso_a2": "GR", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3242000, "pop_min": 729137, "pop_other": 112572, "rank_max": 12, "rank_min": 11, "geonameid": 264371, "meganame": "Athnnai", "ls_name": "Athens2", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Ankara", "diffascii": 0, "nameascii": "Ankara", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Turkey", "sov_a3": "TUR", "adm0name": "Turkey", "adm0_a3": "TUR", "adm1name": "Ankara", "iso_a2": "TR", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3716000, "pop_min": 3307379, "pop_other": 3267576, "rank_max": 12, "rank_min": 12, "geonameid": 323786, "meganame": "Ankara", "ls_name": "Ankara", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 32.783203, 39.977120 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Nicosia", "diffascii": 0, "nameascii": "Nicosia", "adm0cap": 1, "capin": "Capital of both", "worldcity": 0, "megacity": 0, "sov0name": "Cyprus", "sov_a3": "CYP", "adm0name": "Cyprus", "adm0_a3": "CYP", "iso_a2": "CY", "changed": 0, "namediff": 0, "pop_max": 224300, "pop_min": 200452, "pop_other": 222985, "rank_max": 10, "rank_min": 10, "geonameid": 146268, "ls_name": "Nicosia", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 33.310547, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Cairo", "namealt": "Al-Qahirah", "diffascii": 0, "nameascii": "Cairo", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Egypt", "sov_a3": "EGY", "adm0name": "Egypt", "adm0_a3": "EGY", "adm1name": "Al Qahirah", "iso_a2": "EG", "changed": 0, "namediff": 0, "pop_max": 11893000, "pop_min": 7734614, "pop_other": 13720557, "rank_max": 14, "rank_min": 13, "geonameid": 360630, "meganame": "Al-Qahirah", "ls_name": "Cairo", "ls_match": 1, "checkme": 5, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, 30.069094 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "Tel Aviv-Yafo", "namealt": "Tel Aviv-Jaffa", "diffascii": 0, "nameascii": "Tel Aviv-Yafo", "adm0cap": 0, "capalt": 1, "capin": "While Jerulsale", "worldcity": 0, "megacity": 1, "sov0name": "Israel", "sov_a3": "IS1", "adm0name": "Israel", "adm0_a3": "ISR", "adm1name": "Tel Aviv", "iso_a2": "IL", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3112000, "pop_min": 378358, "pop_other": 2306851, "rank_max": 12, "rank_min": 10, "geonameid": 293394, "meganame": "Tel Aviv-Yafo", "ls_name": "Tel Aviv-Yafo", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 34.716797, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Beirut", "namealt": "Bayrut", "diffascii": 0, "nameascii": "Beirut", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Lebanon", "sov_a3": "LBN", "adm0name": "Lebanon", "adm0_a3": "LBN", "adm1name": "Beirut", "iso_a2": "LB", "changed": 0, "namediff": 0, "pop_max": 1846000, "pop_min": 1712125, "pop_other": 1661980, "rank_max": 12, "rank_min": 12, "geonameid": 276781, "meganame": "Bayrut", "ls_name": "Beirut", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Damascus", "namealt": "Dimashq", "diffascii": 0, "nameascii": "Damascus", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Syria", "sov_a3": "SYR", "adm0name": "Syria", "adm0_a3": "SYR", "adm1name": "Damascus", "iso_a2": "SY", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2466000, "pop_min": 2466000, "pop_other": 3344577, "rank_max": 12, "rank_min": 12, "geonameid": 170654, "meganame": "Dimashq", "ls_name": "Damascus", "ls_match": 1, "checkme": 0, "min_zoom": 4.7 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Yerevan", "diffascii": 0, "nameascii": "Yerevan", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Armenia", "sov_a3": "ARM", "adm0name": "Armenia", "adm0_a3": "ARM", "adm1name": "Erevan", "iso_a2": "AM", "changed": 0, "namediff": 0, "pop_max": 1102000, "pop_min": 1093485, "pop_other": 1154748, "rank_max": 12, "rank_min": 12, "geonameid": 616052, "meganame": "Yerevan", "ls_name": "Yerevan", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Baghdad", "diffascii": 0, "nameascii": "Baghdad", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Iraq", "sov_a3": "IRQ", "adm0name": "Iraq", "adm0_a3": "IRQ", "adm1name": "Baghdad", "iso_a2": "IQ", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 5054000, "pop_min": 5054000, "pop_other": 4959534, "rank_max": 13, "rank_min": 13, "geonameid": 98182, "meganame": "Baghdad", "ls_name": "Baghdad", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Jerusalem", "diffascii": 0, "nameascii": "Jerusalem", "adm0cap": 1, "capin": "De facto capita", "worldcity": 0, "megacity": 0, "sov0name": "Israel", "sov_a3": "IS1", "adm0name": "Israel", "adm0_a3": "ISR", "adm1name": "Jerusalem", "iso_a2": "IL", "changed": 0, "namediff": 0, "pop_max": 1029300, "pop_min": 801000, "pop_other": 1072567, "rank_max": 12, "rank_min": 11, "geonameid": 281184, "ls_name": "Jerusalem", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 35.156250, 31.802893 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Amman", "diffascii": 0, "nameascii": "Amman", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Jordan", "sov_a3": "JOR", "adm0name": "Jordan", "adm0_a3": "JOR", "adm1name": "Amman", "iso_a2": "JO", "changed": 0, "namediff": 0, "pop_max": 1060000, "pop_min": 1060000, "pop_other": 2633729, "rank_max": 12, "rank_min": 12, "geonameid": 250441, "meganame": "Amman", "ls_name": "Amman", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 35.859375, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Khartoum", "namealt": "Al-Khartum", "diffascii": 0, "nameascii": "Khartoum", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Sudan", "sov_a3": "SDN", "adm0name": "Sudan", "adm0_a3": "SDN", "adm1name": "Khartoum", "iso_a2": "SD", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4754000, "pop_min": 1974647, "pop_other": 2325931, "rank_max": 12, "rank_min": 12, "geonameid": 379252, "meganame": "Al-Khartum", "ls_name": "Khartoum", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Juba", "diffascii": 0, "nameascii": "Juba", "adm0cap": 0, "worldcity": 0, "megacity": 0, "sov0name": "South Sudan", "sov_a3": "SSD", "adm0name": "South Sudan", "adm0_a3": "SSD", "adm1name": "Central Equatoria", "iso_a2": "SS", "changed": 20, "namediff": 0, "diffnote": "Changed country.", "pop_max": 111975, "pop_min": 111975, "pop_other": 111975, "rank_max": 9, "rank_min": 9, "geonameid": 373303, "ls_name": "Juba", "ls_match": 1, "checkme": 0, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.915833 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Kampala", "diffascii": 0, "nameascii": "Kampala", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Uganda", "sov_a3": "UGA", "adm0name": "Uganda", "adm0_a3": "UGA", "adm1name": "Kampala", "iso_a2": "UG", "changed": 0, "namediff": 0, "pop_max": 1420000, "pop_min": 1353189, "pop_other": 2153702, "rank_max": 12, "rank_min": 12, "geonameid": 232422, "meganame": "Kampala", "ls_name": "Kampala", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Asmara", "diffascii": 0, "nameascii": "Asmara", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Eritrea", "sov_a3": "ERI", "adm0name": "Eritrea", "adm0_a3": "ERI", "adm1name": "Anseba", "iso_a2": "ER", "changed": 0, "namediff": 0, "pop_max": 620802, "pop_min": 563930, "pop_other": 587094, "rank_max": 11, "rank_min": 11, "geonameid": 343300, "ls_name": "Asmara", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 38.847656, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Sanaa", "namealt": "Sana'a'", "diffascii": 0, "nameascii": "Sanaa", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Yemen", "sov_a3": "YEM", "adm0name": "Yemen", "adm0_a3": "YEM", "adm1name": "Amanat Al Asimah", "iso_a2": "YE", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2008000, "pop_min": 1835853, "pop_other": 1742507, "rank_max": 12, "rank_min": 12, "geonameid": 71137, "meganame": "Sana'a'", "ls_name": "Sanaa", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 44.121094, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Djibouti", "diffascii": 0, "nameascii": "Djibouti", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Djibouti", "sov_a3": "DJI", "adm0name": "Djibouti", "adm0_a3": "DJI", "adm1name": "Djibouti", "iso_a2": "DJ", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 923000, "pop_min": 604013, "pop_other": 335001, "rank_max": 11, "rank_min": 11, "geonameid": 223817, "ls_name": "Djibouti", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 43.066406, 11.609193 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Addis Ababa", "diffascii": 0, "nameascii": "Addis Ababa", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Ethiopia", "sov_a3": "ETH", "adm0name": "Ethiopia", "adm0_a3": "ETH", "adm1name": "Addis Ababa", "iso_a2": "ET", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3100000, "pop_min": 2757729, "pop_other": 3013653, "rank_max": 12, "rank_min": 12, "geonameid": 344979, "meganame": "Addis Ababa", "ls_name": "Addis Ababa", "ls_match": 1, "checkme": 5, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 38.671875, 9.102097 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Hargeysa", "diffascii": 0, "nameascii": "Hargeysa", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Somaliland", "sov_a3": "SOL", "adm0name": "Somaliland", "adm0_a3": "SOL", "iso_a2": -99, "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 477876, "pop_min": 247018, "pop_other": 247018, "rank_max": 10, "rank_min": 10, "geonameid": 57289, "ls_name": "Hargeysa", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.622414 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Astana", "diffascii": 0, "nameascii": "Astana", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Kazakhstan", "sov_a3": "KAZ", "adm0name": "Kazakhstan", "adm0_a3": "KAZ", "adm1name": "Aqmola", "iso_a2": "KZ", "changed": 0, "namediff": 0, "pop_max": 345604, "pop_min": 325021, "pop_other": 317445, "rank_max": 10, "rank_min": 10, "geonameid": 1526273, "ls_name": "Astana", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 71.367188, 51.234407 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Tashkent", "diffascii": 0, "nameascii": "Tashkent", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Uzbekistan", "sov_a3": "UZB", "adm0name": "Uzbekistan", "adm0_a3": "UZB", "adm1name": "Tashkent", "iso_a2": "UZ", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2184000, "pop_min": 1978028, "pop_other": 2806287, "rank_max": 12, "rank_min": 12, "geonameid": 1512569, "meganame": "Tashkent", "ls_name": "Tashkent", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.376809 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bishkek", "diffascii": 0, "nameascii": "Bishkek", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Kyrgyzstan", "sov_a3": "KGZ", "adm0name": "Kyrgyzstan", "adm0_a3": "KGZ", "adm1name": "Bishkek", "iso_a2": "KG", "changed": 0, "namediff": 0, "pop_max": 837000, "pop_min": 804212, "pop_other": 781714, "rank_max": 11, "rank_min": 11, "geonameid": 1528675, "meganame": "Bishkek", "ls_name": "Bishkek", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 74.531250, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Ürümqi", "namealt": "rumqi|Wulumqi", "diffascii": 0, "nameascii": "Urumqi", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "China", "sov_a3": "CHN", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Xinjiang Uygur", "iso_a2": "CN", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2151000, "pop_min": 1508225, "pop_other": 2044401, "rank_max": 12, "rank_min": 12, "geonameid": 1529102, "meganame": "Cramqi (Wulumqi)", "ls_name": "Urumqi", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 87.539062, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Baku", "diffascii": 0, "nameascii": "Baku", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Azerbaijan", "sov_a3": "AZE", "adm0name": "Azerbaijan", "adm0_a3": "AZE", "adm1name": "Baki", "iso_a2": "AZ", "changed": 0, "namediff": 0, "pop_max": 2122300, "pop_min": 1892000, "pop_other": 1518801, "rank_max": 12, "rank_min": 12, "geonameid": 587084, "meganame": "Baku", "ls_name": "Baku", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 49.833984, 40.446947 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Tehran", "diffascii": 0, "nameascii": "Tehran", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Iran", "sov_a3": "IRN", "adm0name": "Iran", "adm0_a3": "IRN", "adm1name": "Tehran", "iso_a2": "IR", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 7873000, "pop_min": 7153309, "pop_other": 8209012, "rank_max": 13, "rank_min": 13, "geonameid": 112931, "meganame": "Tehran", "ls_name": "Tehran", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Kuwait", "namealt": "Al Kuwayt|Kuwait City", "diffascii": 0, "nameascii": "Kuwait", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Kuwait", "sov_a3": "KWT", "adm0name": "Kuwait", "adm0_a3": "KWT", "adm1name": "Al Kuwayt", "iso_a2": "KW", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2063000, "pop_min": 60064, "pop_other": 1682968, "rank_max": 12, "rank_min": 8, "geonameid": 285787, "meganame": "Al Kuwayt (Kuwait City)", "ls_name": "Kuwait", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 47.900391, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Riyadh", "namealt": "Ar-Riyadh", "diffascii": 0, "nameascii": "Riyadh", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Saudi Arabia", "sov_a3": "SAU", "adm0name": "Saudi Arabia", "adm0_a3": "SAU", "adm1name": "Ar Riyad", "iso_a2": "SA", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4465000, "pop_min": 4205961, "pop_other": 5148778, "rank_max": 12, "rank_min": 12, "geonameid": 108410, "meganame": "Ar-Riyadh", "ls_name": "Riyadh", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.686952 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Manama", "diffascii": 0, "nameascii": "Manama", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Bahrain", "sov_a3": "BHR", "adm0name": "Bahrain", "adm0_a3": "BHR", "iso_a2": "BH", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 563920, "pop_min": 157474, "pop_other": 563666, "rank_max": 11, "rank_min": 9, "geonameid": 290340, "ls_name": "Manama", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 50.537109, 26.273714 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Doha", "diffascii": 0, "nameascii": "Doha", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Qatar", "sov_a3": "QAT", "adm0name": "Qatar", "adm0_a3": "QAT", "adm1name": "Ad Dawhah", "iso_a2": "QA", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 1450000, "pop_min": 731310, "pop_other": 0, "rank_max": 12, "rank_min": 11, "geonameid": 290030, "ls_name": "Doha", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 8, "featurecla": "Admin-1 capital", "name": "Dubai", "namepar": "Dubayy", "diffascii": 0, "nameascii": "Dubai", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "United Arab Emirates", "sov_a3": "ARE", "adm0name": "United Arab Emirates", "adm0_a3": "ARE", "adm1name": "Dubay", "iso_a2": "AE", "changed": 1, "namediff": 1, "diffnote": "Name changed.", "pop_max": 1379000, "pop_min": 1137347, "pop_other": 1166878, "rank_max": 12, "rank_min": 12, "geonameid": 292223, "meganame": "Dubayy", "ls_name": "Dubayy", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 55.195312, 25.244696 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Abu Dhabi", "diffascii": 0, "nameascii": "Abu Dhabi", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "United Arab Emirates", "sov_a3": "ARE", "adm0name": "United Arab Emirates", "adm0_a3": "ARE", "adm1name": "Abu Dhabi", "iso_a2": "AE", "changed": 0, "namediff": 0, "pop_max": 603492, "pop_min": 560230, "pop_other": 560230, "rank_max": 11, "rank_min": 11, "geonameid": 292968, "ls_name": "Abu Dhabi", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 54.316406, 24.527135 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Ashgabat", "diffascii": 0, "nameascii": "Ashgabat", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Turkmenistan", "sov_a3": "TKM", "adm0name": "Turkmenistan", "adm0_a3": "TKM", "adm1name": "Ahal", "iso_a2": "TM", "changed": 0, "namediff": 0, "pop_max": 727700, "pop_min": 577982, "pop_other": 556048, "rank_max": 11, "rank_min": 11, "geonameid": 162183, "ls_name": "Ashgabat", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 58.359375, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Muscat", "diffascii": 0, "nameascii": "Muscat", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Oman", "sov_a3": "OMN", "adm0name": "Oman", "adm0_a3": "OMN", "adm1name": "Muscat", "iso_a2": "OM", "changed": 0, "namediff": 0, "pop_max": 734697, "pop_min": 586861, "pop_other": 586861, "rank_max": 11, "rank_min": 11, "geonameid": 287286, "ls_name": "Muscat", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 58.535156, 23.644524 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Mogadishu", "namealt": "Muqdisho", "diffascii": 0, "nameascii": "Mogadishu", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Somalia", "sov_a3": "SOM", "adm0name": "Somalia", "adm0_a3": "SOM", "adm1name": "Banaadir", "iso_a2": "SO", "changed": 0, "namediff": 0, "pop_max": 1100000, "pop_min": 875388, "pop_other": 849392, "rank_max": 12, "rank_min": 11, "geonameid": 53654, "meganame": "Muqdisho", "ls_name": "Mogadishu", "ls_match": 1, "checkme": 5, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.108899 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dushanbe", "diffascii": 0, "nameascii": "Dushanbe", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Tajikistan", "sov_a3": "TJK", "adm0name": "Tajikistan", "adm0_a3": "TJK", "adm1name": "Tadzhikistan Territories", "iso_a2": "TJ", "changed": 0, "namediff": 0, "pop_max": 1086244, "pop_min": 679400, "pop_other": 1081361, "rank_max": 12, "rank_min": 11, "geonameid": 1221874, "ls_name": "Dushanbe", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 68.730469, 38.616870 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Kabul", "diffascii": 0, "nameascii": "Kabul", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Afghanistan", "sov_a3": "AFG", "adm0name": "Afghanistan", "adm0_a3": "AFG", "adm1name": "Kabul", "iso_a2": "AF", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3277000, "pop_min": 3043532, "pop_other": 3475519, "rank_max": 12, "rank_min": 12, "geonameid": 1138958, "meganame": "Kabul", "ls_name": "Kabul", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Islamabad", "diffascii": 0, "nameascii": "Islamabad", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Pakistan", "sov_a3": "PAK", "adm0name": "Pakistan", "adm0_a3": "PAK", "adm1name": "F.C.T.", "iso_a2": "PK", "changed": 0, "namediff": 0, "pop_max": 780000, "pop_min": 601600, "pop_other": 893673, "rank_max": 11, "rank_min": 11, "geonameid": 1176615, "meganame": "Islamabad", "ls_name": "Islamabad", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "New Delhi", "diffascii": 0, "nameascii": "New Delhi", "adm0cap": 1, "worldcity": 1, "megacity": 0, "sov0name": "India", "sov_a3": "IND", "adm0name": "India", "adm0_a3": "IND", "adm1name": "Delhi", "iso_a2": "IN", "changed": 0, "namediff": 0, "pop_max": 317797, "pop_min": 317797, "pop_other": 8060107, "rank_max": 10, "rank_min": 10, "geonameid": 1261481, "ls_name": "New Delhi", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Kathmandu", "diffascii": 0, "nameascii": "Kathmandu", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Nepal", "sov_a3": "NPL", "adm0name": "Nepal", "adm0_a3": "NPL", "adm1name": "Bhaktapur", "iso_a2": "NP", "changed": 0, "namediff": 0, "pop_max": 895000, "pop_min": 895000, "pop_other": 1099610, "rank_max": 11, "rank_min": 11, "geonameid": 1283240, "meganame": "Kathmandu", "ls_name": "Kathmandu", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 85.253906, 27.761330 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Thimphu", "diffascii": 0, "nameascii": "Thimphu", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Bhutan", "sov_a3": "BTN", "adm0name": "Bhutan", "adm0_a3": "BTN", "adm1name": "Thimphu", "iso_a2": "BT", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 98676, "pop_min": 79185, "pop_other": 0, "rank_max": 8, "rank_min": 8, "geonameid": 1252416, "ls_name": "Thimphu", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 89.560547, 27.527758 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Kolkata", "namepar": "Calcutta", "diffascii": 0, "nameascii": "Kolkata", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "India", "sov_a3": "IND", "adm0name": "India", "adm0_a3": "IND", "adm1name": "West Bengal", "iso_a2": "IN", "changed": 4, "namediff": 1, "diffnote": "Name changed. Changed scale rank.", "pop_max": 14787000, "pop_min": 4631392, "pop_other": 7783716, "rank_max": 14, "rank_min": 12, "geonameid": 1275004, "meganame": "Kolkata", "ls_name": "Calcutta", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 88.242188, 22.512557 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Mumbai", "namepar": "Bombay", "diffascii": 0, "nameascii": "Mumbai", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "India", "sov_a3": "IND", "adm0name": "India", "adm0_a3": "IND", "adm1name": "Maharashtra", "iso_a2": "IN", "changed": 0, "namediff": 0, "pop_max": 18978000, "pop_min": 12691836, "pop_other": 12426085, "rank_max": 14, "rank_min": 14, "geonameid": 1275339, "meganame": "Mumbai", "ls_name": "Mumbai", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 72.773438, 19.062118 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Bangalore", "namealt": "Bengaluru", "diffascii": 0, "nameascii": "Bangalore", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "India", "sov_a3": "IND", "adm0name": "India", "adm0_a3": "IND", "adm1name": "Karnataka", "iso_a2": "IN", "changed": 3, "namediff": 1, "diffnote": "Name changed. Changed scale rank.", "pop_max": 6787000, "pop_min": 5104047, "pop_other": 8102712, "rank_max": 13, "rank_min": 13, "geonameid": 1277333, "meganame": "Bangalore", "ls_name": "Bangalore", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Malé", "diffascii": 1, "nameascii": "Male", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Maldives", "sov_a3": "MDV", "adm0name": "Maldives", "adm0_a3": "MDV", "iso_a2": "MV", "changed": 0, "namediff": 0, "pop_max": 112927, "pop_min": 103693, "pop_other": 0, "rank_max": 9, "rank_min": 9, "geonameid": 3174186, "ls_name": "Male", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.214943 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Colombo", "diffascii": 0, "nameascii": "Colombo", "adm0cap": 1, "capin": "De facto, admin", "worldcity": 0, "megacity": 0, "sov0name": "Sri Lanka", "sov_a3": "LKA", "adm0name": "Sri Lanka", "adm0_a3": "LKA", "adm1name": "Colombo", "iso_a2": "LK", "changed": 0, "namediff": 0, "pop_max": 217000, "pop_min": 217000, "pop_other": 2490974, "rank_max": 10, "rank_min": 10, "geonameid": 3465927, "ls_name": "Colombo", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 79.804688, 7.013668 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 6, "featurecla": "Admin-0 capital alt", "name": "Sri Jawewardenepura Kotte", "diffascii": 0, "nameascii": "Sri Jawewardenepura Kotte", "adm0cap": 0, "capalt": 1, "capin": "Legislative cap", "worldcity": 0, "megacity": 0, "sov0name": "Sri Lanka", "sov_a3": "LKA", "adm0name": "Sri Lanka", "adm0_a3": "LKA", "adm1name": "Colombo", "iso_a2": "LK", "changed": 4, "namediff": 1, "diffnote": "Name changed.", "pop_max": 115826, "pop_min": 115826, "pop_other": 2456292, "rank_max": 9, "rank_min": 9, "geonameid": 1238992, "ls_name": "Kotte", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Ulaanbaatar", "diffascii": 0, "nameascii": "Ulaanbaatar", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Mongolia", "sov_a3": "MNG", "adm0name": "Mongolia", "adm0_a3": "MNG", "adm1name": "Ulaanbaatar", "iso_a2": "MN", "changed": 0, "namediff": 0, "pop_max": 885000, "pop_min": 769612, "pop_other": 765359, "rank_max": 11, "rank_min": 11, "geonameid": 2028462, "meganame": "Ulaanbaatar", "ls_name": "Ulaanbaatar", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Dhaka", "diffascii": 0, "nameascii": "Dhaka", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Bangladesh", "sov_a3": "BGD", "adm0name": "Bangladesh", "adm0_a3": "BGD", "adm1name": "Dhaka", "iso_a2": "BD", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 12797394, "pop_min": 7000940, "pop_other": 14995538, "rank_max": 14, "rank_min": 13, "geonameid": 1185241, "meganame": "Dhaka", "ls_name": "Dhaka", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 90.351562, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Chengdu", "diffascii": 0, "nameascii": "Chengdu", "adm0cap": 0, "worldcity": 0, "megacity": 1, "sov0name": "China", "sov_a3": "CHN", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Sichuan", "iso_a2": "CN", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4123000, "pop_min": 3950437, "pop_other": 11622929, "rank_max": 12, "rank_min": 12, "geonameid": 1815286, "meganame": "Chengdu", "ls_name": "Chengdu", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Naypyidaw", "namealt": "Nay Pyi Taw", "diffascii": 0, "nameascii": "Naypyidaw", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Myanmar", "sov_a3": "MMR", "adm0name": "Myanmar", "adm0_a3": "MMR", "adm1name": "Mandalay", "iso_a2": "MM", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 930000, "pop_min": 194824, "pop_other": 0, "rank_max": 11, "rank_min": 9, "geonameid": 6611854, "meganame": "Nay Pyi Taw", "ls_name": "Naypyidaw", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 96.064453, 19.808054 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Rangoon", "namealt": "Yangon", "diffascii": 0, "nameascii": "Rangoon", "adm0cap": 0, "capin": "Former capital", "worldcity": 0, "megacity": 1, "sov0name": "Myanmar", "sov_a3": "MMR", "adm0name": "Myanmar", "adm0_a3": "MMR", "adm1name": "Yangon", "iso_a2": "MM", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4088000, "pop_min": 3301820, "pop_other": 3124090, "rank_max": 12, "rank_min": 12, "geonameid": 1298824, "meganame": "Yangon", "ls_name": "Rangoon", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Bangkok", "namealt": "Krung Thep", "diffascii": 0, "nameascii": "Bangkok", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Thailand", "sov_a3": "THA", "adm0name": "Thailand", "adm0_a3": "THA", "adm1name": "Bangkok Metropolis", "iso_a2": "TH", "changed": 0, "namediff": 0, "pop_max": 6704000, "pop_min": 5104476, "pop_other": 5082758, "rank_max": 13, "rank_min": 13, "geonameid": 1609350, "meganame": "Krung Thep", "ls_name": "Bangkok", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 100.458984, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Vientiane", "diffascii": 0, "nameascii": "Vientiane", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Laos", "sov_a3": "LAO", "adm0name": "Laos", "adm0_a3": "LAO", "adm1name": "Vientiane [prefecture]", "iso_a2": "LA", "changed": 0, "namediff": 0, "pop_max": 754000, "pop_min": 570348, "pop_other": 469811, "rank_max": 11, "rank_min": 11, "geonameid": 1651944, "ls_name": "Vientiane", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Hanoi", "namealt": "H", "diffascii": 0, "nameascii": "Hanoi", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Vietnam", "sov_a3": "VNM", "adm0name": "Vietnam", "adm0_a3": "VNM", "adm1name": "Thái Nguyên", "iso_a2": "VN", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4378000, "pop_min": 1431270, "pop_other": 5466347, "rank_max": 12, "rank_min": 12, "geonameid": 1581130, "meganame": "Hh Noi", "ls_name": "Hanoi", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Phnom Penh", "namealt": "Phnum Penh", "diffascii": 0, "nameascii": "Phnom Penh", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Cambodia", "sov_a3": "KHM", "adm0name": "Cambodia", "adm0_a3": "KHM", "adm1name": "Phnom Penh", "iso_a2": "KH", "changed": 0, "namediff": 0, "pop_max": 1466000, "pop_min": 1466000, "pop_other": 1604086, "rank_max": 12, "rank_min": 12, "geonameid": 1821306, "meganame": "Phnum Penh", "ls_name": "Phnom Penh", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 104.853516, 11.609193 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Kuala Lumpur", "diffascii": 0, "nameascii": "Kuala Lumpur", "adm0cap": 1, "capin": "Official and le", "worldcity": 1, "megacity": 1, "sov0name": "Malaysia", "sov_a3": "MYS", "adm0name": "Malaysia", "adm0_a3": "MYS", "adm1name": "Selangor", "iso_a2": "MY", "changed": 0, "namediff": 0, "pop_max": 1448000, "pop_min": 1448000, "pop_other": 2667990, "rank_max": 12, "rank_min": 12, "geonameid": 1735161, "meganame": "Kuala Lumpur", "ls_name": "Kuala Lumpur", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.250209 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 6, "featurecla": "Admin-0 capital alt", "name": "Putrajaya", "diffascii": 0, "nameascii": "Putrajaya", "adm0cap": 0, "capalt": 1, "capin": "Administrative", "worldcity": 0, "megacity": 0, "sov0name": "Malaysia", "sov_a3": "MYS", "adm0name": "Malaysia", "adm0_a3": "MYS", "adm1name": "Selangor", "iso_a2": "MY", "changed": 0, "namediff": 0, "pop_max": 67964, "pop_min": 50000, "pop_other": 956431, "rank_max": 8, "rank_min": 7, "geonameid": 6697380, "ls_name": "Putrajaya", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.986927 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Singapore", "diffascii": 0, "nameascii": "Singapore", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Singapore", "sov_a3": "SGP", "adm0name": "Singapore", "adm0_a3": "SGP", "iso_a2": "SG", "changed": 0, "namediff": 0, "pop_max": 5183700, "pop_min": 3289529, "pop_other": 3314179, "rank_max": 13, "rank_min": 12, "geonameid": 1880252, "meganame": "Singapore", "ls_name": "Singapore", "ls_match": 1, "checkme": 5, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ 103.798828, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Beijing", "diffascii": 0, "nameascii": "Beijing", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "China", "sov_a3": "CHN", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Beijing", "iso_a2": "CN", "changed": 0, "namediff": 0, "pop_max": 11106000, "pop_min": 7480601, "pop_other": 9033231, "rank_max": 14, "rank_min": 13, "geonameid": 1816670, "meganame": "Beijing", "ls_name": "Beijing", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.977120 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 0, "featurecla": "Admin-0 region capital", "name": "Hong Kong", "diffascii": 0, "nameascii": "Hong Kong", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "China", "sov_a3": "CHN", "adm0name": "Hong Kong S.A.R.", "adm0_a3": "HKG", "iso_a2": "HK", "changed": 0, "namediff": 0, "pop_max": 7206000, "pop_min": 4551579, "pop_other": 4549026, "rank_max": 13, "rank_min": 12, "geonameid": 1819729, "meganame": "Hong Kong", "ls_name": "Hong Kong", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.350076 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Shanghai", "diffascii": 0, "nameascii": "Shanghai", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "China", "sov_a3": "CHN", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Shanghai", "iso_a2": "CN", "changed": 0, "namediff": 0, "pop_max": 14987000, "pop_min": 14608512, "pop_other": 16803572, "rank_max": 14, "rank_min": 14, "geonameid": 1796236, "meganame": "Shanghai", "ls_name": "Shanghai", "ls_match": 1, "checkme": 0, "min_zoom": 2 }, "geometry": { "type": "Point", "coordinates": [ 121.376953, 31.278551 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Taipei", "diffascii": 0, "nameascii": "Taipei", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Taiwan", "sov_a3": "TWN", "adm0name": "Taiwan", "adm0_a3": "TWN", "adm1name": "Taipei City", "iso_a2": "TW", "changed": 1, "namediff": 0, "diffnote": "Corrected coordinates.", "pop_max": 6900273, "pop_min": 2618772, "pop_other": 5698241, "rank_max": 13, "rank_min": 12, "geonameid": 1668341, "meganame": "Taipei", "ls_name": "Taipei", "ls_match": 1, "checkme": 0, "min_zoom": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Pyongyang", "namealt": "P'yongyang", "diffascii": 0, "nameascii": "Pyongyang", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Korea, North", "sov_a3": "PRK", "adm0name": "North Korea", "adm0_a3": "PRK", "adm1name": "P'yongyang", "iso_a2": "KP", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3300000, "pop_min": 2498797, "pop_other": 2483216, "rank_max": 12, "rank_min": 12, "geonameid": 1871859, "meganame": "P'yongyang", "ls_name": "Pyongyang", "ls_match": 1, "checkme": 0, "min_zoom": 4.7 }, "geometry": { "type": "Point", "coordinates": [ 125.683594, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Seoul", "diffascii": 0, "nameascii": "Seoul", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Korea, South", "sov_a3": "KOR", "adm0name": "South Korea", "adm0_a3": "KOR", "adm1name": "Seoul", "iso_a2": "KR", "changed": 0, "namediff": 0, "pop_max": 9796000, "pop_min": 9796000, "pop_other": 12018058, "rank_max": 13, "rank_min": 13, "geonameid": 1835848, "meganame": "Seoul", "ls_name": "Seoul", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 126.914062, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 5, "featurecla": "Admin-0 capital alt", "name": "Baguio City", "diffascii": 0, "nameascii": "Baguio City", "adm0cap": 0, "capalt": 1, "worldcity": 0, "megacity": 0, "sov0name": "Philippines", "sov_a3": "PHL", "adm0name": "Philippines", "adm0_a3": "PHL", "adm1name": "Benguet", "iso_a2": "PH", "changed": 40, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 447824, "pop_min": 272714, "pop_other": 164877, "rank_max": 10, "rank_min": 10, "geonameid": 1728930, "ls_name": "Baguio City", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 120.498047, 16.467695 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Manila", "diffascii": 0, "nameascii": "Manila", "adm0cap": 1, "capin": "Official, de fa", "worldcity": 1, "megacity": 1, "sov0name": "Philippines", "sov_a3": "PHL", "adm0name": "Philippines", "adm0_a3": "PHL", "adm1name": "Metropolitan Manila", "iso_a2": "PH", "changed": 0, "namediff": 0, "pop_max": 11100000, "pop_min": 3077575, "pop_other": 2381280, "rank_max": 14, "rank_min": 12, "geonameid": 1701668, "meganame": "Manila", "ls_name": "Manila", "ls_match": 1, "checkme": 0, "min_zoom": 2.7 }, "geometry": { "type": "Point", "coordinates": [ 120.937500, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bandar Seri Begawan", "diffascii": 0, "nameascii": "Bandar Seri Begawan", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Brunei", "sov_a3": "BRN", "adm0name": "Brunei", "adm0_a3": "BRN", "adm1name": "Brunei and Muara", "iso_a2": "BN", "changed": 0, "namediff": 0, "pop_max": 296500, "pop_min": 140000, "pop_other": 222513, "rank_max": 10, "rank_min": 9, "geonameid": 1820906, "ls_name": "Bandar Seri Begawan", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 114.873047, 4.915833 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Melekeok", "diffascii": 0, "nameascii": "Melekeok", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Palau", "sov_a3": "PLW", "adm0name": "Palau", "adm0_a3": "PLW", "iso_a2": "PW", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 7026, "pop_min": 7026, "pop_other": 0, "rank_max": 5, "rank_min": 5, "geonameid": 1559804, "ls_name": "Melekeok", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 134.560547, 7.536764 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 2, "featurecla": "Admin-1 region capital", "name": "Ōsaka", "namealt": "Osaka-Kobe", "diffascii": 0, "nameascii": "Osaka", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Japan", "sov_a3": "JPN", "adm0name": "Japan", "adm0_a3": "JPN", "adm1name": "Osaka", "iso_a2": "JP", "changed": 4, "namediff": 0, "diffnote": "Changed feature to Admin-0 region capital.", "pop_max": 11294000, "pop_min": 2592413, "pop_other": 9630783, "rank_max": 14, "rank_min": 12, "geonameid": 1853909, "meganame": "Osaka-Kobe", "ls_name": "Osaka", "ls_match": 1, "checkme": 5, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 2, "featurecla": "Admin-0 capital alt", "name": "Kyoto", "diffascii": 0, "nameascii": "Kyoto", "adm0cap": 0, "capalt": 1, "capin": "Official capita", "worldcity": 0, "megacity": 1, "sov0name": "Japan", "sov_a3": "JPN", "adm0name": "Japan", "adm0_a3": "JPN", "adm1name": "Kyoto", "iso_a2": "JP", "changed": 0, "namediff": 0, "pop_max": 1805000, "pop_min": 1459640, "pop_other": 1827367, "rank_max": 12, "rank_min": 12, "geonameid": 1857910, "meganame": "Kyoto", "ls_name": "Kyoto", "ls_match": 1, "checkme": 0, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ 135.703125, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Tokyo", "diffascii": 0, "nameascii": "Tokyo", "adm0cap": 1, "capin": "De facto capita", "worldcity": 1, "megacity": 1, "sov0name": "Japan", "sov_a3": "JPN", "adm0name": "Japan", "adm0_a3": "JPN", "adm1name": "Tokyo", "iso_a2": "JP", "changed": 0, "namediff": 0, "pop_max": 35676000, "pop_min": 8336599, "pop_other": 12945252, "rank_max": 14, "rank_min": 13, "geonameid": 1850147, "meganame": "Tokyo", "ls_name": "Tokyo", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.746512 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Palikir", "diffascii": 0, "nameascii": "Palikir", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Federated States of Micronesia", "sov_a3": "FSM", "adm0name": "Federated States of Micronesia", "adm0_a3": "FSM", "iso_a2": "FM", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4645, "pop_min": 4645, "pop_other": 0, "rank_max": 4, "rank_min": 4, "geonameid": 2081986, "ls_name": "Palikir", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Majuro", "diffascii": 0, "nameascii": "Majuro", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Marshall Islands", "sov_a3": "MHL", "adm0name": "Marshall Islands", "adm0_a3": "MHL", "iso_a2": "MH", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 25400, "pop_min": 20500, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 2113779, "ls_name": "Majuro", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 171.298828, 7.188101 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Tarawa", "diffascii": 0, "nameascii": "Tarawa", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Kiribati", "sov_a3": "KIR", "adm0name": "Kiribati", "adm0_a3": "KIR", "iso_a2": "KI", "changed": 4, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 28802, "pop_min": 22534, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 2110079, "ls_name": "Tarawa", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 172.968750, 1.406109 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Brazzaville", "diffascii": 0, "nameascii": "Brazzaville", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Congo (Brazzaville)", "sov_a3": "COG", "adm0name": "Congo (Brazzaville)", "adm0_a3": "COG", "adm1name": "Pool", "iso_a2": "CG", "changed": 0, "namediff": 0, "pop_max": 1355000, "pop_min": 1163890, "pop_other": 1174778, "rank_max": 12, "rank_min": 12, "geonameid": 2260535, "meganame": "Brazzaville", "ls_name": "Brazzaville", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 15.205078, -4.214943 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Kinshasa", "diffascii": 0, "nameascii": "Kinshasa", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Congo (Kinshasa)", "sov_a3": "COD", "adm0name": "Congo (Kinshasa)", "adm0_a3": "COD", "adm1name": "Kinshasa City", "iso_a2": "CD", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 7843000, "pop_min": 5565703, "pop_other": 4738154, "rank_max": 13, "rank_min": 13, "geonameid": 2314302, "meganame": "Kinshasa", "ls_name": "Kinshasa", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Luanda", "diffascii": 0, "nameascii": "Luanda", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Angola", "sov_a3": "AGO", "adm0name": "Angola", "adm0_a3": "AGO", "adm1name": "Luanda", "iso_a2": "AO", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 5172900, "pop_min": 1951272, "pop_other": 1951272, "rank_max": 13, "rank_min": 12, "geonameid": 2240449, "meganame": "Luanda", "ls_name": "Luanda", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, -8.754795 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Windhoek", "diffascii": 0, "nameascii": "Windhoek", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Namibia", "sov_a3": "NAM", "adm0name": "Namibia", "adm0_a3": "NAM", "adm1name": "Khomas", "iso_a2": "NA", "changed": 0, "namediff": 0, "pop_max": 268132, "pop_min": 262796, "pop_other": 262796, "rank_max": 10, "rank_min": 10, "geonameid": 3352136, "ls_name": "Windhoek", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.512557 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Cape Town", "diffascii": 0, "nameascii": "Cape Town", "adm0cap": 1, "capalt": 1, "capin": "Legislative cap", "worldcity": 1, "megacity": 1, "sov0name": "South Africa", "sov_a3": "ZAF", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Western Cape", "iso_a2": "ZA", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3215000, "pop_min": 2432858, "pop_other": 2401318, "rank_max": 12, "rank_min": 12, "geonameid": 3369157, "meganame": "Cape Town", "ls_name": "Cape Town", "ls_match": 1, "checkme": 0, "min_zoom": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, -33.870416 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Kigali", "diffascii": 0, "nameascii": "Kigali", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Rwanda", "sov_a3": "RWA", "adm0name": "Rwanda", "adm0_a3": "RWA", "adm1name": "Kigali City", "iso_a2": "RW", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 860000, "pop_min": 745261, "pop_other": 1152904, "rank_max": 11, "rank_min": 11, "geonameid": 202061, "meganame": "Kigali", "ls_name": "Kigali", "ls_match": 1, "checkme": 0, "min_zoom": 5.1 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bujumbura", "diffascii": 0, "nameascii": "Bujumbura", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Burundi", "sov_a3": "BDI", "adm0name": "Burundi", "adm0_a3": "BDI", "adm1name": "Bujumbura Mairie", "iso_a2": "BI", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 331700, "pop_min": 331700, "pop_other": 1208361, "rank_max": 10, "rank_min": 10, "geonameid": 425378, "ls_name": "Bujumbura", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Lusaka", "diffascii": 0, "nameascii": "Lusaka", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Zambia", "sov_a3": "ZMB", "adm0name": "Zambia", "adm0_a3": "ZMB", "adm1name": "Lusaka", "iso_a2": "ZM", "changed": 0, "namediff": 0, "pop_max": 1328000, "pop_min": 1267440, "pop_other": 1240558, "rank_max": 12, "rank_min": 12, "geonameid": 909137, "meganame": "Lusaka", "ls_name": "Lusaka", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -15.368950 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Harare", "diffascii": 0, "nameascii": "Harare", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Zimbabwe", "sov_a3": "ZWE", "adm0name": "Zimbabwe", "adm0_a3": "ZWE", "adm1name": "Harare", "iso_a2": "ZW", "changed": 0, "namediff": 0, "pop_max": 1572000, "pop_min": 1542813, "pop_other": 1831877, "rank_max": 12, "rank_min": 12, "geonameid": 890299, "meganame": "Harare", "ls_name": "Harare", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Nairobi", "diffascii": 0, "nameascii": "Nairobi", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Kenya", "sov_a3": "KEN", "adm0name": "Kenya", "adm0_a3": "KEN", "adm1name": "Nairobi", "iso_a2": "KE", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3010000, "pop_min": 2750547, "pop_other": 3400962, "rank_max": 12, "rank_min": 12, "geonameid": 184745, "meganame": "Nairobi", "ls_name": "Nairobi", "ls_match": 1, "checkme": 0, "min_zoom": 2 }, "geometry": { "type": "Point", "coordinates": [ 36.738281, -1.230374 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 5, "featurecla": "Admin-0 capital alt", "name": "Dodoma", "diffascii": 0, "nameascii": "Dodoma", "adm0cap": 0, "capalt": 1, "capin": "Offical capital", "worldcity": 0, "megacity": 0, "sov0name": "United Republic of Tanzania", "sov_a3": "TZA", "adm0name": "Tanzania", "adm0_a3": "TZA", "adm1name": "Dodoma", "iso_a2": "TZ", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 218269, "pop_min": 180541, "pop_other": 0, "rank_max": 10, "rank_min": 9, "geonameid": 160196, "ls_name": "Dodoma", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 35.683594, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 2, "natscale": 200, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Dar es Salaam", "diffascii": 0, "nameascii": "Dar es Salaam", "adm0cap": 1, "capin": "De facto capita", "worldcity": 0, "megacity": 1, "sov0name": "United Republic of Tanzania", "sov_a3": "TZA", "adm0name": "Tanzania", "adm0_a3": "TZA", "adm1name": "Dar-Es-Salaam", "iso_a2": "TZ", "changed": 5, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2930000, "pop_min": 2698652, "pop_other": 2757835, "rank_max": 12, "rank_min": 12, "geonameid": 160263, "meganame": "Dar es Salaam", "ls_name": "Dar es Salaam", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 39.199219, -6.751896 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Lilongwe", "diffascii": 0, "nameascii": "Lilongwe", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Malawi", "sov_a3": "MWI", "adm0name": "Malawi", "adm0_a3": "MWI", "adm1name": "Lilongwe", "iso_a2": "MW", "changed": 0, "namediff": 0, "pop_max": 646750, "pop_min": 646750, "pop_other": 1061388, "rank_max": 11, "rank_min": 11, "geonameid": 927967, "ls_name": "Lilongwe", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -13.923404 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Moroni", "diffascii": 0, "nameascii": "Moroni", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Comoros", "sov_a3": "COM", "adm0name": "Comoros", "adm0_a3": "COM", "iso_a2": "KM", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 128698, "pop_min": 42872, "pop_other": 0, "rank_max": 9, "rank_min": 7, "geonameid": 921772, "ls_name": "Moroni", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Gaborone", "diffascii": 0, "nameascii": "Gaborone", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Botswana", "sov_a3": "BWA", "adm0name": "Botswana", "adm0_a3": "BWA", "adm1name": "South-East", "iso_a2": "BW", "changed": 0, "namediff": 0, "pop_max": 208411, "pop_min": 159243, "pop_other": 158896, "rank_max": 10, "rank_min": 9, "geonameid": 933773, "ls_name": "Gaborone", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 25.839844, -24.607069 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Johannesburg", "diffascii": 0, "nameascii": "Johannesburg", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "South Africa", "sov_a3": "ZAF", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Gauteng", "iso_a2": "ZA", "changed": 4, "namediff": 0, "diffnote": "Changed feature class.", "pop_max": 3435000, "pop_min": 2026469, "pop_other": 3852246, "rank_max": 12, "rank_min": 12, "geonameid": 993800, "meganame": "Johannesburg", "ls_name": "Johannesburg", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 27.949219, -26.115986 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Bloemfontein", "diffascii": 0, "nameascii": "Bloemfontein", "adm0cap": 1, "capin": "Judicial capita", "worldcity": 0, "megacity": 0, "sov0name": "South Africa", "sov_a3": "ZAF", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Orange Free State", "iso_a2": "ZA", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 463064, "pop_min": 456669, "pop_other": 456513, "rank_max": 10, "rank_min": 10, "geonameid": 1018725, "ls_name": "Bloemfontein", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 26.191406, -29.075375 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Maseru", "diffascii": 0, "nameascii": "Maseru", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Lesotho", "sov_a3": "LSO", "adm0name": "Lesotho", "adm0_a3": "LSO", "adm1name": "Maseru", "iso_a2": "LS", "changed": 0, "namediff": 0, "pop_max": 361324, "pop_min": 118355, "pop_other": 356225, "rank_max": 10, "rank_min": 9, "geonameid": 932505, "ls_name": "Maseru", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 27.421875, -29.305561 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Pretoria", "diffascii": 0, "nameascii": "Pretoria", "adm0cap": 1, "capin": "Administrative", "worldcity": 0, "megacity": 1, "sov0name": "South Africa", "sov_a3": "ZAF", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Gauteng", "iso_a2": "ZA", "changed": 0, "namediff": 0, "pop_max": 1338000, "pop_min": 1338000, "pop_other": 1443084, "rank_max": 12, "rank_min": 12, "geonameid": 964137, "meganame": "Pretoria", "ls_name": "Pretoria", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.641526 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Mbabane", "diffascii": 0, "nameascii": "Mbabane", "adm0cap": 1, "capin": "Administrative", "worldcity": 0, "megacity": 0, "sov0name": "Swaziland", "sov_a3": "SWZ", "adm0name": "Swaziland", "adm0_a3": "SWZ", "adm1name": "Hhohho", "iso_a2": "SZ", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 90138, "pop_min": 76218, "pop_other": 89979, "rank_max": 8, "rank_min": 8, "geonameid": 934985, "ls_name": "Mbabane", "ls_match": 1, "checkme": 0, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.273714 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "Lobamba", "diffascii": 0, "nameascii": "Lobamba", "adm0cap": 0, "capalt": 1, "capin": "Legislative and", "worldcity": 0, "megacity": 0, "sov0name": "Swaziland", "sov_a3": "SWZ", "adm0name": "Swaziland", "adm0_a3": "SWZ", "adm1name": "Manzini", "iso_a2": "SZ", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 9782, "pop_min": 4557, "pop_other": 0, "rank_max": 5, "rank_min": 4, "geonameid": 935048, "ls_name": "Lobamba", "ls_match": 1, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.431228 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Maputo", "diffascii": 0, "nameascii": "Maputo", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Mozambique", "sov_a3": "MOZ", "adm0name": "Mozambique", "adm0_a3": "MOZ", "adm1name": "Maputo", "iso_a2": "MZ", "changed": 0, "namediff": 0, "pop_max": 1446000, "pop_min": 1191613, "pop_other": 1365454, "rank_max": 12, "rank_min": 12, "geonameid": 1040652, "meganame": "Maputo", "ls_name": "Maputo", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, -25.878994 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Victoria", "diffascii": 0, "nameascii": "Victoria", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Seychelles", "sov_a3": "SYC", "adm0name": "Seychelles", "adm0_a3": "SYC", "iso_a2": "SC", "changed": 0, "namediff": 0, "pop_max": 33576, "pop_min": 22881, "pop_other": 33737, "rank_max": 7, "rank_min": 7, "geonameid": 241131, "ls_name": "Victoria4", "ls_match": 1, "checkme": 5, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 55.371094, -4.565474 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Antananarivo", "diffascii": 0, "nameascii": "Antananarivo", "adm0cap": 1, "worldcity": 0, "megacity": 1, "sov0name": "Madagascar", "sov_a3": "MDG", "adm0name": "Madagascar", "adm0_a3": "MDG", "adm1name": "Antananarivo", "iso_a2": "MG", "changed": 0, "namediff": 0, "pop_max": 1697000, "pop_min": 1391433, "pop_other": 1844658, "rank_max": 12, "rank_min": 12, "geonameid": 1070940, "meganame": "Antananarivo", "ls_name": "Antananarivo", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 47.460938, -18.895893 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "natscale": 50, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Port Louis", "diffascii": 0, "nameascii": "Port Louis", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Mauritius", "sov_a3": "MUS", "adm0name": "Mauritius", "adm0_a3": "MUS", "iso_a2": "MU", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 595491, "pop_min": 148416, "pop_other": 304613, "rank_max": 11, "rank_min": 9, "geonameid": 934154, "ls_name": "Port Louis", "ls_match": 1, "checkme": 5, "min_zoom": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.138470 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Jakarta", "diffascii": 0, "nameascii": "Jakarta", "adm0cap": 1, "worldcity": 1, "megacity": 1, "sov0name": "Indonesia", "sov_a3": "IDN", "adm0name": "Indonesia", "adm0_a3": "IDN", "adm1name": "Jakarta Raya", "iso_a2": "ID", "changed": 0, "namediff": 0, "pop_max": 9125000, "pop_min": 8540121, "pop_other": 9129613, "rank_max": 13, "rank_min": 13, "geonameid": 1642911, "meganame": "Jakarta", "ls_name": "Jakarta", "ls_match": 1, "checkme": 0, "min_zoom": 2.1 }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dili", "diffascii": 0, "nameascii": "Dili", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "East Timor", "sov_a3": "TLS", "adm0name": "East Timor", "adm0_a3": "TLS", "adm1name": "Dili", "iso_a2": "TL", "changed": 0, "namediff": 0, "pop_max": 234331, "pop_min": 193563, "pop_other": 55154, "rank_max": 10, "rank_min": 9, "geonameid": 1645457, "ls_name": "Dili", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 125.507812, -8.494105 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port Moresby", "diffascii": 0, "nameascii": "Port Moresby", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Papua New Guinea", "sov_a3": "PNG", "adm0name": "Papua New Guinea", "adm0_a3": "PNG", "adm1name": "Central", "iso_a2": "PG", "changed": 0, "namediff": 0, "pop_max": 283733, "pop_min": 251136, "pop_other": 251304, "rank_max": 10, "rank_min": 10, "geonameid": 2088122, "ls_name": "Port Moresby", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 147.128906, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 3, "featurecla": "Admin-1 capital", "name": "Melbourne", "diffascii": 0, "nameascii": "Melbourne", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Australia", "sov_a3": "AUS", "adm0name": "Australia", "adm0_a3": "AUS", "adm1name": "Victoria", "iso_a2": "AU", "changed": 4, "namediff": 0, "diffnote": "Changed feature class. Changed scale rank.", "pop_max": 4170000, "pop_min": 93625, "pop_other": 1805353, "rank_max": 12, "rank_min": 8, "geonameid": 2158177, "meganame": "Melbourne", "ls_name": "Melbourne2", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "natscale": 600, "labelrank": 3, "featurecla": "Admin-1 capital", "name": "Sydney", "diffascii": 0, "nameascii": "Sydney", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "Australia", "sov_a3": "AUS", "adm0name": "Australia", "adm0_a3": "AUS", "adm1name": "New South Wales", "iso_a2": "AU", "changed": 4, "namediff": 0, "diffnote": "Changed feature class.", "pop_max": 4630000, "pop_min": 3641422, "pop_other": 2669348, "rank_max": 12, "rank_min": 12, "geonameid": 2147714, "meganame": "Sydney", "ls_name": "Sydney1", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.870416 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Canberra", "diffascii": 0, "nameascii": "Canberra", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Australia", "sov_a3": "AUS", "adm0name": "Australia", "adm0_a3": "AUS", "adm1name": "Australian Capital Territory", "iso_a2": "AU", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 327700, "pop_min": 234032, "pop_other": 0, "rank_max": 10, "rank_min": 10, "geonameid": 2172517, "ls_name": "Canberra", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 149.062500, -35.245619 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Honiara", "diffascii": 0, "nameascii": "Honiara", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Solomon Islands", "sov_a3": "SLB", "adm0name": "Solomon Islands", "adm0_a3": "SLB", "adm1name": "Guadalcanal", "iso_a2": "SB", "changed": 0, "namediff": 0, "pop_max": 76328, "pop_min": 56298, "pop_other": 76328, "rank_max": 8, "rank_min": 8, "geonameid": 2108502, "ls_name": "Honiara", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 159.873047, -9.362353 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port Vila", "diffascii": 0, "nameascii": "Port Vila", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Vanuatu", "sov_a3": "VUT", "adm0name": "Vanuatu", "adm0_a3": "VUT", "adm1name": "Shefa", "iso_a2": "VU", "changed": 0, "namediff": 0, "pop_max": 44040, "pop_min": 35901, "pop_other": 7702, "rank_max": 7, "rank_min": 7, "geonameid": 2135171, "ls_name": "Port-Vila", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 6, "natscale": 30, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Funafuti", "diffascii": 0, "nameascii": "Funafuti", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Tuvalu", "sov_a3": "TUV", "adm0name": "Tuvalu", "adm0_a3": "TUV", "iso_a2": "TV", "changed": 4, "namediff": 0, "diffnote": "Population from GeoNames. Changed scale rank.", "pop_max": 4749, "pop_min": 4749, "pop_other": 0, "rank_max": 4, "rank_min": 4, "geonameid": 2110394, "ls_name": "Funafuti", "ls_match": 0, "checkme": 5, "min_zoom": 6 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.494105 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Suva", "diffascii": 0, "nameascii": "Suva", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "Fiji", "sov_a3": "FJI", "adm0name": "Fiji", "adm0_a3": "FJI", "adm1name": "Central", "iso_a2": "FJ", "changed": 4, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 175399, "pop_min": 88271, "pop_other": 0, "rank_max": 9, "rank_min": 8, "geonameid": 2198148, "ls_name": "Suva", "ls_match": 1, "checkme": 0, "min_zoom": 5 }, "geometry": { "type": "Point", "coordinates": [ 178.417969, -18.062312 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "natscale": 300, "labelrank": 8, "featurecla": "Admin-1 capital", "name": "Auckland", "diffascii": 0, "nameascii": "Auckland", "adm0cap": 0, "worldcity": 1, "megacity": 1, "sov0name": "New Zealand", "sov_a3": "NZL", "adm0name": "New Zealand", "adm0_a3": "NZL", "adm1name": "Auckland", "iso_a2": "NZ", "note": "Auckland metropolitan area", "changed": 4, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1377200, "pop_min": 395982, "pop_other": 0, "rank_max": 12, "rank_min": 10, "geonameid": 2193733, "meganame": "Auckland", "ls_name": "Auckland", "ls_match": 1, "checkme": 0, "min_zoom": 3 }, "geometry": { "type": "Point", "coordinates": [ 174.726562, -36.809285 ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "natscale": 110, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Wellington", "diffascii": 0, "nameascii": "Wellington", "adm0cap": 1, "worldcity": 0, "megacity": 0, "sov0name": "New Zealand", "sov_a3": "NZL", "adm0name": "New Zealand", "adm0_a3": "NZL", "adm1name": "Manawatu-Wanganui", "iso_a2": "NZ", "note": "Wellington metropolitan area", "changed": 0, "namediff": 0, "pop_max": 393400, "pop_min": 393400, "pop_other": 0, "rank_max": 10, "rank_min": 9, "geonameid": 2144168, "ls_name": "Wellington", "ls_match": 1, "checkme": 0, "min_zoom": 4 }, "geometry": { "type": "Point", "coordinates": [ 174.726562, -41.244772 ] } } +] } +] } +] } diff --git a/tests/join-population/joined-null.mbtiles.json b/tests/join-population/joined-null.mbtiles.json new file mode 100644 index 0000000..a1493d8 --- /dev/null +++ b/tests/join-population/joined-null.mbtiles.json @@ -0,0 +1,2498 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.343750,37.857507,-122.255859,37.926868", +"center": "-122.299805,37.892187,12", +"description": "tests/join-population/tabblock_06001420.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\", \"population\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]},{\"attribute\": \"population\",\"count\": 73,\"type\": \"number\",\"values\": [1,10,11,1118,113,116,12,13,133,145,15,16,17,18,19,2,21,212,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,4,40,41,414,42,43,44,45,46,47,49,50,51,53,54,55,56,57,58,60,62,63,64,65,66,68,69,7,70,73,82,83,84,86,87,9,90,91,98],\"min\": 1,\"max\": 1118}]}]}}", +"maxzoom": "12", +"minzoom": "0", +"name": "tests/join-population/tabblock_06001420.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.316284, 37.883525 ], [ -122.332764, 37.879189 ], [ -122.338257, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.893843", "INTPTLON10": "-122.292906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.319031, 37.890028 ], [ -122.313538, 37.883525 ], [ -122.330017, 37.879189 ], [ -122.335510, 37.890028 ], [ -122.319031, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.890028 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.313538, 37.883525 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.885693 ], [ -122.308044, 37.881357 ], [ -122.313538, 37.881357 ], [ -122.313538, 37.885693 ], [ -122.308044, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.896818", "INTPTLON10": "-122.296083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.893232", "INTPTLON10": "-122.296730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.898698 ], [ -122.288818, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.898698 ], [ -122.288818, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.888934", "INTPTLON10": "-122.299083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.883995", "INTPTLON10": "-122.291315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.895581", "INTPTLON10": "-122.309453" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.898698 ], [ -122.309418, 37.897614 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.890405", "INTPTLON10": "-122.308694" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.898698 ], [ -122.310791, 37.896530 ], [ -122.313538, 37.896530 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.890773", "INTPTLON10": "-122.306765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.894363 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.308044, 37.894363 ], [ -122.305298, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.328644, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.317657, 37.890028 ], [ -122.317657, 37.885693 ], [ -122.313538, 37.882441 ], [ -122.328644, 37.878105 ], [ -122.335510, 37.890028 ], [ -122.328644, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.890028 ], [ -122.312164, 37.890028 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.882441 ], [ -122.313538, 37.882441 ], [ -122.317657, 37.885693 ], [ -122.317657, 37.890028 ] ] ], [ [ [ -122.317657, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.317657, 37.890028 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888944 ], [ -122.308044, 37.886777 ], [ -122.310791, 37.886777 ], [ -122.310791, 37.888944 ], [ -122.308044, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.882441 ], [ -122.309418, 37.883525 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.883745", "INTPTLON10": "-122.306961" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.884609 ], [ -122.305298, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.308044, 37.884609 ], [ -122.305298, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.888859", "INTPTLON10": "-122.299964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.898210", "INTPTLON10": "-122.294138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.898698 ], [ -122.297058, 37.898698 ], [ -122.297058, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.896227", "INTPTLON10": "-122.294213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.893908", "INTPTLON10": "-122.294157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897614 ], [ -122.288818, 37.895447 ], [ -122.291565, 37.895447 ], [ -122.291565, 37.897614 ], [ -122.288818, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.893883", "INTPTLON10": "-122.291391" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.897500", "INTPTLON10": "-122.287634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.893809", "INTPTLON10": "-122.288787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.891205", "INTPTLON10": "-122.297856" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.888458", "INTPTLON10": "-122.297915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.891538", "INTPTLON10": "-122.295286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.888734", "INTPTLON10": "-122.296175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.888930", "INTPTLON10": "-122.294456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.885827", "INTPTLON10": "-122.299123" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.884609 ], [ -122.301178, 37.884609 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.883931", "INTPTLON10": "-122.297603" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.297058, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.885693 ], [ -122.297058, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.889049", "INTPTLON10": "-122.293592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.889251", "INTPTLON10": "-122.292014" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.885997", "INTPTLON10": "-122.293508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.883995", "INTPTLON10": "-122.291315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.886777 ], [ -122.290192, 37.884609 ], [ -122.292938, 37.884609 ], [ -122.292938, 37.886777 ], [ -122.290192, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.890110", "INTPTLON10": "-122.283723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.886830", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.883493", "INTPTLON10": "-122.283797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.886460", "INTPTLON10": "-122.283067" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.308540" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.894905 ], [ -122.308731, 37.891112 ], [ -122.312164, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.895581", "INTPTLON10": "-122.309453" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.898156 ], [ -122.309418, 37.897614 ], [ -122.308731, 37.891112 ], [ -122.311478, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.890405", "INTPTLON10": "-122.308694" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.895447 ], [ -122.310104, 37.895447 ], [ -122.310104, 37.893821 ], [ -122.311478, 37.893821 ], [ -122.311478, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.892198", "INTPTLON10": "-122.307551" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.893821 ], [ -122.307358, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.890773", "INTPTLON10": "-122.306765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.897374", "INTPTLON10": "-122.301248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.899240 ], [ -122.301178, 37.898156 ], [ -122.302551, 37.898156 ], [ -122.302551, 37.899240 ], [ -122.301178, 37.899240 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.897606", "INTPTLON10": "-122.300839" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.892960", "INTPTLON10": "-122.301287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895989 ], [ -122.299805, 37.894905 ], [ -122.301178, 37.894905 ], [ -122.301178, 37.895989 ], [ -122.299805, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.893128", "INTPTLON10": "-122.300432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327957, 37.890028 ], [ -122.327957, 37.888944 ], [ -122.325211, 37.888402 ], [ -122.322464, 37.889486 ], [ -122.317657, 37.889486 ], [ -122.316284, 37.887860 ], [ -122.316284, 37.885693 ], [ -122.315598, 37.884067 ], [ -122.312851, 37.881899 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.890028 ], [ -122.327957, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.308731, 37.882441 ], [ -122.312851, 37.881899 ], [ -122.315598, 37.884067 ], [ -122.316284, 37.885693 ], [ -122.316284, 37.887860 ], [ -122.317657, 37.889486 ] ] ], [ [ [ -122.317657, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.325211, 37.888402 ], [ -122.327957, 37.888944 ], [ -122.327957, 37.890028 ], [ -122.317657, 37.889486 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.889486 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.887324", "INTPTLON10": "-122.308809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.883745", "INTPTLON10": "-122.306961" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.306671, 37.883525 ], [ -122.305984, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.307358, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.890278", "INTPTLON10": "-122.303039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.303402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.891200", "INTPTLON10": "-122.299809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.888863", "INTPTLON10": "-122.300805" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.888859", "INTPTLON10": "-122.299964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.896818", "INTPTLON10": "-122.296083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.899240 ], [ -122.294998, 37.898156 ], [ -122.296371, 37.898156 ], [ -122.296371, 37.899240 ], [ -122.294998, 37.899240 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.892896", "INTPTLON10": "-122.298402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.896094", "INTPTLON10": "-122.295274" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.893232", "INTPTLON10": "-122.296730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.893566", "INTPTLON10": "-122.295039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.898210", "INTPTLON10": "-122.294138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.899781 ], [ -122.294312, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.899781 ], [ -122.294312, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.897482", "INTPTLON10": "-122.292153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.897321", "INTPTLON10": "-122.291217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.897247", "INTPTLON10": "-122.290340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.896227", "INTPTLON10": "-122.294213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.896238", "INTPTLON10": "-122.293364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.895784", "INTPTLON10": "-122.292824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.893803", "INTPTLON10": "-122.293455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.893843", "INTPTLON10": "-122.292906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.893834", "INTPTLON10": "-122.292309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897072 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.897072 ], [ -122.290192, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.895696", "INTPTLON10": "-122.289570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.893883", "INTPTLON10": "-122.291391" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.893860", "INTPTLON10": "-122.290522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.893833", "INTPTLON10": "-122.289663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.897345", "INTPTLON10": "-122.288150" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898698 ], [ -122.288132, 37.897614 ], [ -122.289505, 37.897614 ], [ -122.289505, 37.898698 ], [ -122.288132, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.897500", "INTPTLON10": "-122.287634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.895669", "INTPTLON10": "-122.288696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.895646", "INTPTLON10": "-122.287747" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.893809", "INTPTLON10": "-122.288787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.893780", "INTPTLON10": "-122.287836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.893731", "INTPTLON10": "-122.287275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.891101", "INTPTLON10": "-122.298726" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.891205", "INTPTLON10": "-122.297856" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.888934", "INTPTLON10": "-122.299083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.888458", "INTPTLON10": "-122.297915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.891320", "INTPTLON10": "-122.297001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.891425", "INTPTLON10": "-122.296144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.891538", "INTPTLON10": "-122.295286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.891658", "INTPTLON10": "-122.294418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.888734", "INTPTLON10": "-122.296175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.888848", "INTPTLON10": "-122.295319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.888930", "INTPTLON10": "-122.294456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887318 ], [ -122.297745, 37.886235 ], [ -122.299118, 37.886235 ], [ -122.299118, 37.887318 ], [ -122.297745, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.885827", "INTPTLON10": "-122.299123" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.297745, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300491, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.883579", "INTPTLON10": "-122.299068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.883931", "INTPTLON10": "-122.297603" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885151 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.884067 ], [ -122.298431, 37.885151 ], [ -122.297058, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.885811", "INTPTLON10": "-122.294338" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.891485", "INTPTLON10": "-122.293695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.891850", "INTPTLON10": "-122.292985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.891713", "INTPTLON10": "-122.292394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.889049", "INTPTLON10": "-122.293592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.889326", "INTPTLON10": "-122.292811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.889251", "INTPTLON10": "-122.292014" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.891804", "INTPTLON10": "-122.291474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.891823", "INTPTLON10": "-122.290615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.891906", "INTPTLON10": "-122.288910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.889411", "INTPTLON10": "-122.290964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.889669", "INTPTLON10": "-122.289020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.885997", "INTPTLON10": "-122.293508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.886197", "INTPTLON10": "-122.292674" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.888402 ], [ -122.292252, 37.887318 ], [ -122.293625, 37.887318 ], [ -122.293625, 37.888402 ], [ -122.292252, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.886495", "INTPTLON10": "-122.291137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.886608", "INTPTLON10": "-122.290117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.884079", "INTPTLON10": "-122.290980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.884369", "INTPTLON10": "-122.290441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.884009", "INTPTLON10": "-122.289530" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.883481", "INTPTLON10": "-122.295359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.891809", "INTPTLON10": "-122.287323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.286636" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.890209", "INTPTLON10": "-122.285901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.890214", "INTPTLON10": "-122.284831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.890110", "INTPTLON10": "-122.283723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.886830", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.883875", "INTPTLON10": "-122.288628" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.883493", "INTPTLON10": "-122.283797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.887945", "INTPTLON10": "-122.282371" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.886460", "INTPTLON10": "-122.283067" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.883462", "INTPTLON10": "-122.287583" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.882857", "INTPTLON10": "-122.286349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.316284, 37.888402 ], [ -122.316284, 37.880544 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.889757 ], [ -122.316284, 37.888402 ], [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.316284, 37.889757 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.892466 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.892466 ] ] ], [ [ [ -122.309418, 37.892466 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.892466 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.309418, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.308540" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897885 ], [ -122.309418, 37.894634 ], [ -122.309418, 37.894092 ], [ -122.312164, 37.897614 ], [ -122.311478, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.895581", "INTPTLON10": "-122.309453" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309761, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894634 ], [ -122.308388, 37.890841 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897885 ], [ -122.309761, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.890405", "INTPTLON10": "-122.308694" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.893279 ], [ -122.308388, 37.890299 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.893279 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.312164, 37.897614 ], [ -122.310791, 37.895989 ], [ -122.309418, 37.893279 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.892198", "INTPTLON10": "-122.307551" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893550 ], [ -122.307358, 37.892737 ], [ -122.307701, 37.889757 ], [ -122.307701, 37.893550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.890773", "INTPTLON10": "-122.306765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.890841 ], [ -122.307701, 37.889757 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.892031", "INTPTLON10": "-122.307713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895447 ], [ -122.307701, 37.893279 ], [ -122.308044, 37.891112 ], [ -122.308388, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.897374", "INTPTLON10": "-122.301248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.898969 ], [ -122.301521, 37.898427 ], [ -122.302208, 37.898427 ], [ -122.302208, 37.898969 ], [ -122.301521, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.897606", "INTPTLON10": "-122.300839" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.895545", "INTPTLON10": "-122.300683" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.896530 ], [ -122.300491, 37.895989 ], [ -122.301178, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.892960", "INTPTLON10": "-122.301287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.893128", "INTPTLON10": "-122.300432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.315941, 37.887589 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316284, 37.885693 ], [ -122.317314, 37.885693 ], [ -122.315941, 37.885422 ], [ -122.315598, 37.884067 ], [ -122.312508, 37.881628 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317314, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.309761, 37.886506 ], [ -122.308388, 37.882441 ], [ -122.312508, 37.881628 ], [ -122.315598, 37.884067 ], [ -122.315941, 37.885422 ], [ -122.317314, 37.885693 ], [ -122.316284, 37.885693 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887589 ], [ -122.317314, 37.889486 ] ] ], [ [ [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.317314, 37.889486 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890299 ], [ -122.308388, 37.889215 ], [ -122.308731, 37.887589 ], [ -122.309074, 37.887589 ], [ -122.308388, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307701, 37.889757 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887589 ], [ -122.307701, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.889007", "INTPTLON10": "-122.305389" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889757 ], [ -122.307014, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.886587", "INTPTLON10": "-122.309031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887589 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309074, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886506 ], [ -122.309074, 37.885151 ], [ -122.309761, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882170 ], [ -122.308388, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.883745", "INTPTLON10": "-122.306961" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887048 ], [ -122.306328, 37.883525 ], [ -122.305984, 37.882170 ], [ -122.308044, 37.882170 ], [ -122.307358, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.890278", "INTPTLON10": "-122.303039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.889339", "INTPTLON10": "-122.303697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.889757 ], [ -122.303238, 37.889215 ], [ -122.303925, 37.889215 ], [ -122.303925, 37.889757 ], [ -122.303238, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.303402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.891200", "INTPTLON10": "-122.299809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.888863", "INTPTLON10": "-122.300805" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.888859", "INTPTLON10": "-122.299964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.305641, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885151 ], [ -122.303581, 37.885151 ], [ -122.303581, 37.884338 ], [ -122.304268, 37.884338 ], [ -122.304268, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.883323", "INTPTLON10": "-122.303096" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.896818", "INTPTLON10": "-122.296083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.294655, 37.897885 ], [ -122.296028, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.892896", "INTPTLON10": "-122.298402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.896094", "INTPTLON10": "-122.295274" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.893232", "INTPTLON10": "-122.296730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.893566", "INTPTLON10": "-122.295039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.893680", "INTPTLON10": "-122.294492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294312, 37.893008 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.898210", "INTPTLON10": "-122.294138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.293968, 37.898698 ], [ -122.293968, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.898096", "INTPTLON10": "-122.293296" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.897196", "INTPTLON10": "-122.292756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.897482", "INTPTLON10": "-122.292153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.897321", "INTPTLON10": "-122.291217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.897247", "INTPTLON10": "-122.290340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.897228", "INTPTLON10": "-122.289472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.896227", "INTPTLON10": "-122.294213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.896238", "INTPTLON10": "-122.293364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.895784", "INTPTLON10": "-122.292824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.893908", "INTPTLON10": "-122.294157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.893803", "INTPTLON10": "-122.293455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.893843", "INTPTLON10": "-122.292906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.893834", "INTPTLON10": "-122.292309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.896801 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.290192, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.895696", "INTPTLON10": "-122.289570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.893883", "INTPTLON10": "-122.291391" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.893860", "INTPTLON10": "-122.290522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.893833", "INTPTLON10": "-122.289663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.897500", "INTPTLON10": "-122.287634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.897338", "INTPTLON10": "-122.287125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.895669", "INTPTLON10": "-122.288696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.895646", "INTPTLON10": "-122.287747" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.895607", "INTPTLON10": "-122.287205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.893809", "INTPTLON10": "-122.288787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.893772", "INTPTLON10": "-122.288313" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.895176 ], [ -122.288132, 37.894634 ], [ -122.288818, 37.894634 ], [ -122.288818, 37.895176 ], [ -122.288132, 37.895176 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.893780", "INTPTLON10": "-122.287836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.893731", "INTPTLON10": "-122.287275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.894905 ], [ -122.287102, 37.894905 ], [ -122.287102, 37.894092 ], [ -122.287788, 37.894092 ], [ -122.287788, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.891101", "INTPTLON10": "-122.298726" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.890172", "INTPTLON10": "-122.299448" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.891205", "INTPTLON10": "-122.297856" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.888934", "INTPTLON10": "-122.299083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.889016", "INTPTLON10": "-122.298589" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.888131 ], [ -122.298088, 37.887589 ], [ -122.298775, 37.887589 ], [ -122.298775, 37.888131 ], [ -122.298088, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.888458", "INTPTLON10": "-122.297915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.891320", "INTPTLON10": "-122.297001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.891425", "INTPTLON10": "-122.296144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.891538", "INTPTLON10": "-122.295286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.891658", "INTPTLON10": "-122.294418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.888734", "INTPTLON10": "-122.296175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.888848", "INTPTLON10": "-122.295319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.888930", "INTPTLON10": "-122.294456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.885827", "INTPTLON10": "-122.299123" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300148, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.883579", "INTPTLON10": "-122.299068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.885644", "INTPTLON10": "-122.297509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887048 ], [ -122.297745, 37.886506 ], [ -122.298431, 37.886506 ], [ -122.298431, 37.887048 ], [ -122.297745, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.883931", "INTPTLON10": "-122.297603" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884609 ], [ -122.297401, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.887267", "INTPTLON10": "-122.294807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887589 ], [ -122.294998, 37.887048 ], [ -122.295685, 37.887048 ], [ -122.295685, 37.887589 ], [ -122.294998, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.885811", "INTPTLON10": "-122.294338" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.891485", "INTPTLON10": "-122.293695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.893008 ], [ -122.294312, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.892188", "INTPTLON10": "-122.293477" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.891850", "INTPTLON10": "-122.292985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.891713", "INTPTLON10": "-122.292394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.890599", "INTPTLON10": "-122.292415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.291565, 37.890570 ], [ -122.292252, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.889049", "INTPTLON10": "-122.293592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.888889", "INTPTLON10": "-122.292965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292595, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.889326", "INTPTLON10": "-122.292811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.889251", "INTPTLON10": "-122.292014" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.891804", "INTPTLON10": "-122.291474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.891823", "INTPTLON10": "-122.290615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.891906", "INTPTLON10": "-122.288910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.889411", "INTPTLON10": "-122.290964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.889669", "INTPTLON10": "-122.289020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.885997", "INTPTLON10": "-122.293508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.886197", "INTPTLON10": "-122.292674" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.887860 ], [ -122.292595, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.886495", "INTPTLON10": "-122.291137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.886608", "INTPTLON10": "-122.290117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.884079", "INTPTLON10": "-122.290980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.883995", "INTPTLON10": "-122.291315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885151 ], [ -122.291222, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.884369", "INTPTLON10": "-122.290441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.886235 ], [ -122.289162, 37.885693 ], [ -122.289848, 37.885693 ], [ -122.289848, 37.886235 ], [ -122.289162, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.884009", "INTPTLON10": "-122.289530" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.883536", "INTPTLON10": "-122.296220" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.883481", "INTPTLON10": "-122.295359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.891809", "INTPTLON10": "-122.287323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.892466 ], [ -122.287445, 37.892466 ], [ -122.287445, 37.891654 ], [ -122.288132, 37.891654 ], [ -122.288132, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891112 ], [ -122.288475, 37.890570 ], [ -122.289162, 37.890570 ], [ -122.289162, 37.891112 ], [ -122.288475, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.286636" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.890209", "INTPTLON10": "-122.285901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.285093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891383 ], [ -122.284355, 37.890841 ], [ -122.285042, 37.890841 ], [ -122.285042, 37.891383 ], [ -122.284355, 37.891383 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.890214", "INTPTLON10": "-122.284831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.890110", "INTPTLON10": "-122.283723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.890028 ], [ -122.285042, 37.889486 ], [ -122.285728, 37.889486 ], [ -122.285728, 37.890028 ], [ -122.285042, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.886830", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.883875", "INTPTLON10": "-122.288628" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.884757", "INTPTLON10": "-122.286324" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.885964 ], [ -122.285728, 37.885422 ], [ -122.286415, 37.885422 ], [ -122.286415, 37.885964 ], [ -122.285728, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.883871", "INTPTLON10": "-122.285076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.884609 ], [ -122.284355, 37.884067 ], [ -122.285042, 37.884067 ], [ -122.285042, 37.884609 ], [ -122.284355, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.883493", "INTPTLON10": "-122.283797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.887945", "INTPTLON10": "-122.282371" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.886460", "INTPTLON10": "-122.283067" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.884902", "INTPTLON10": "-122.282679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885422 ], [ -122.281952, 37.884880 ], [ -122.282639, 37.884880 ], [ -122.282639, 37.885422 ], [ -122.281952, 37.885422 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.883462", "INTPTLON10": "-122.287583" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.882857", "INTPTLON10": "-122.286349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.897139", "INTPTLON10": "-122.312126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897479 ], [ -122.311649, 37.896937 ], [ -122.312508, 37.896937 ], [ -122.312508, 37.897479 ], [ -122.312164, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.307873, 37.892873 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.308388, 37.894498 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.308540" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897750 ], [ -122.309418, 37.894634 ], [ -122.308216, 37.890705 ], [ -122.308388, 37.890163 ], [ -122.309418, 37.893957 ], [ -122.311993, 37.897614 ], [ -122.311478, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.895581", "INTPTLON10": "-122.309453" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894498 ], [ -122.308388, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308216, 37.890705 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897750 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.890405", "INTPTLON10": "-122.308694" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309246, 37.893144 ], [ -122.308388, 37.890163 ], [ -122.309074, 37.888809 ], [ -122.308903, 37.890570 ], [ -122.309246, 37.893144 ] ] ], [ [ [ -122.310104, 37.894769 ], [ -122.311649, 37.896937 ], [ -122.312164, 37.897479 ], [ -122.311993, 37.897614 ], [ -122.310619, 37.895853 ], [ -122.310104, 37.894769 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.892198", "INTPTLON10": "-122.307551" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895311 ], [ -122.307186, 37.892602 ], [ -122.307186, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308044, 37.890976 ], [ -122.307701, 37.893415 ], [ -122.308388, 37.895311 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.890773", "INTPTLON10": "-122.306765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898021 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.892331 ], [ -122.306499, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307529, 37.889757 ], [ -122.307186, 37.891247 ], [ -122.307186, 37.892602 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898021 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.892031", "INTPTLON10": "-122.307713" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307873, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308388, 37.892196 ], [ -122.307873, 37.892331 ] ] ], [ [ [ -122.307873, 37.892331 ], [ -122.307873, 37.893144 ], [ -122.308388, 37.895311 ], [ -122.307701, 37.893144 ], [ -122.307873, 37.892331 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.897374", "INTPTLON10": "-122.301248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896801 ], [ -122.301178, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.897606", "INTPTLON10": "-122.300839" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896801 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896124 ], [ -122.301178, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.895545", "INTPTLON10": "-122.300683" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896124 ], [ -122.300491, 37.895176 ], [ -122.301006, 37.896124 ], [ -122.300835, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.892960", "INTPTLON10": "-122.301287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895176 ], [ -122.300148, 37.893550 ], [ -122.300663, 37.894905 ], [ -122.300491, 37.895176 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.893128", "INTPTLON10": "-122.300432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888809 ], [ -122.327099, 37.888809 ], [ -122.324696, 37.887996 ], [ -122.322979, 37.888402 ], [ -122.322979, 37.889080 ], [ -122.322292, 37.889486 ], [ -122.317314, 37.889351 ], [ -122.315941, 37.887454 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316456, 37.885964 ], [ -122.316113, 37.885964 ], [ -122.316113, 37.885693 ], [ -122.317142, 37.885828 ], [ -122.317142, 37.885557 ], [ -122.316113, 37.885557 ], [ -122.315769, 37.885286 ], [ -122.315598, 37.884744 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.884067 ], [ -122.314053, 37.882712 ], [ -122.313194, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.327785, 37.877428 ], [ -122.334824, 37.889622 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.313194, 37.882306 ], [ -122.314053, 37.882712 ], [ -122.315083, 37.884067 ], [ -122.315598, 37.884067 ], [ -122.315598, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885557 ], [ -122.317142, 37.885557 ], [ -122.317142, 37.885828 ], [ -122.316113, 37.885693 ], [ -122.316113, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887454 ], [ -122.317314, 37.889351 ], [ -122.322292, 37.889486 ], [ -122.322979, 37.889080 ], [ -122.322979, 37.888402 ], [ -122.324696, 37.887996 ], [ -122.327099, 37.888809 ], [ -122.327614, 37.888809 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.887852", "INTPTLON10": "-122.309121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309418, 37.887318 ], [ -122.309074, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890163 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308731, 37.887454 ], [ -122.309074, 37.887454 ], [ -122.309074, 37.888809 ], [ -122.308388, 37.890163 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.890134", "INTPTLON10": "-122.306301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.890434 ], [ -122.306156, 37.890163 ], [ -122.306499, 37.890163 ], [ -122.306499, 37.890434 ], [ -122.306156, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308559, 37.887725 ], [ -122.308388, 37.890163 ], [ -122.308044, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.888782", "INTPTLON10": "-122.306532" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889622 ], [ -122.307014, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.886587", "INTPTLON10": "-122.309031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309418, 37.886912 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.307358, 37.887183 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882306 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308559, 37.887454 ], [ -122.308044, 37.887454 ], [ -122.308044, 37.887048 ], [ -122.308559, 37.887048 ], [ -122.308559, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.883745", "INTPTLON10": "-122.306961" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.307186, 37.886912 ], [ -122.306328, 37.883389 ], [ -122.305813, 37.882170 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.890278", "INTPTLON10": "-122.303039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.889177", "INTPTLON10": "-122.304538" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.889507", "INTPTLON10": "-122.302853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.889757 ], [ -122.302380, 37.889486 ], [ -122.302723, 37.889486 ], [ -122.302723, 37.889757 ], [ -122.302380, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.303402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.891200", "INTPTLON10": "-122.299809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.888863", "INTPTLON10": "-122.300805" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.888859", "INTPTLON10": "-122.299964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887183 ], [ -122.305470, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.883323", "INTPTLON10": "-122.303096" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.896818", "INTPTLON10": "-122.296083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.294655, 37.898833 ], [ -122.294655, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.296371, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.892896", "INTPTLON10": "-122.298402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.896094", "INTPTLON10": "-122.295274" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894498 ], [ -122.296028, 37.897750 ], [ -122.295856, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.893232", "INTPTLON10": "-122.296730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.893566", "INTPTLON10": "-122.295039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.893680", "INTPTLON10": "-122.294492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294140, 37.892873 ], [ -122.294483, 37.892873 ], [ -122.294998, 37.894498 ], [ -122.294655, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.898210", "INTPTLON10": "-122.294138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898833 ], [ -122.293797, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294655, 37.898833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.898096", "INTPTLON10": "-122.293296" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.898006", "INTPTLON10": "-122.292741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292767, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.292938, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.897196", "INTPTLON10": "-122.292756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.897482", "INTPTLON10": "-122.292153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.897321", "INTPTLON10": "-122.291217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.897247", "INTPTLON10": "-122.290340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.897228", "INTPTLON10": "-122.289472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.896227", "INTPTLON10": "-122.294213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.896238", "INTPTLON10": "-122.293364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.895784", "INTPTLON10": "-122.292824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.893908", "INTPTLON10": "-122.294157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.893803", "INTPTLON10": "-122.293455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.893843", "INTPTLON10": "-122.292906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.893834", "INTPTLON10": "-122.292309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290192, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292767, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.895696", "INTPTLON10": "-122.289570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.893883", "INTPTLON10": "-122.291391" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.893860", "INTPTLON10": "-122.290522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.893833", "INTPTLON10": "-122.289663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.897345", "INTPTLON10": "-122.288150" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.897885 ], [ -122.288132, 37.897885 ], [ -122.288132, 37.897479 ], [ -122.288303, 37.897479 ], [ -122.288303, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.897500", "INTPTLON10": "-122.287634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.898412", "INTPTLON10": "-122.287055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898833 ], [ -122.287273, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287102, 37.898833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.897338", "INTPTLON10": "-122.287125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.895669", "INTPTLON10": "-122.288696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.895673", "INTPTLON10": "-122.288221" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895989 ], [ -122.288132, 37.895989 ], [ -122.288132, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.895646", "INTPTLON10": "-122.287747" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.895607", "INTPTLON10": "-122.287205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.893809", "INTPTLON10": "-122.288787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.893772", "INTPTLON10": "-122.288313" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288647, 37.894498 ], [ -122.288303, 37.894498 ], [ -122.288303, 37.894092 ], [ -122.288647, 37.894092 ], [ -122.288647, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.893780", "INTPTLON10": "-122.287836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.893731", "INTPTLON10": "-122.287275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892466 ], [ -122.299633, 37.892196 ], [ -122.299976, 37.892196 ], [ -122.299976, 37.892466 ], [ -122.299633, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.891101", "INTPTLON10": "-122.298726" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.891043", "INTPTLON10": "-122.299235" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891925 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299461, 37.891925 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.890172", "INTPTLON10": "-122.299448" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.891205", "INTPTLON10": "-122.297856" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.890309", "INTPTLON10": "-122.297598" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.297058, 37.890299 ], [ -122.297401, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.297058, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.888934", "INTPTLON10": "-122.299083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.889016", "INTPTLON10": "-122.298589" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.888458", "INTPTLON10": "-122.297915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.891320", "INTPTLON10": "-122.297001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.891425", "INTPTLON10": "-122.296144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.890411", "INTPTLON10": "-122.295818" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.890570 ], [ -122.296200, 37.890299 ], [ -122.296543, 37.890299 ], [ -122.296543, 37.890570 ], [ -122.296200, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.891538", "INTPTLON10": "-122.295286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.891658", "INTPTLON10": "-122.294418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.888734", "INTPTLON10": "-122.296175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.888848", "INTPTLON10": "-122.295319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.888930", "INTPTLON10": "-122.294456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.297916, 37.886777 ], [ -122.299633, 37.887589 ], [ -122.301006, 37.887725 ], [ -122.298260, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.885827", "INTPTLON10": "-122.299123" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.299633, 37.887589 ], [ -122.297916, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884473 ], [ -122.299976, 37.884067 ], [ -122.301006, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.886758", "INTPTLON10": "-122.297347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886912 ], [ -122.297745, 37.886641 ], [ -122.298088, 37.886641 ], [ -122.298088, 37.886912 ], [ -122.297745, 37.886912 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.883579", "INTPTLON10": "-122.299068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.885644", "INTPTLON10": "-122.297509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886506 ], [ -122.297573, 37.886506 ], [ -122.297573, 37.885964 ], [ -122.298088, 37.885964 ], [ -122.298088, 37.886506 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.883931", "INTPTLON10": "-122.297603" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884473 ], [ -122.297401, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.887318 ], [ -122.296028, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.296371, 37.887318 ], [ -122.296028, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.887267", "INTPTLON10": "-122.294807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.887454 ], [ -122.295170, 37.887183 ], [ -122.295513, 37.887183 ], [ -122.295513, 37.887454 ], [ -122.295170, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.885811", "INTPTLON10": "-122.294338" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.884198", "INTPTLON10": "-122.297050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.884744 ], [ -122.297058, 37.883796 ], [ -122.297401, 37.884609 ], [ -122.297230, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.891485", "INTPTLON10": "-122.293695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.890705 ], [ -122.293625, 37.890570 ], [ -122.294483, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.892188", "INTPTLON10": "-122.293477" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.891850", "INTPTLON10": "-122.292985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293110, 37.892873 ], [ -122.292938, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.890513", "INTPTLON10": "-122.294112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890705 ], [ -122.293625, 37.890434 ], [ -122.293968, 37.890434 ], [ -122.293968, 37.890705 ], [ -122.293625, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.890745", "INTPTLON10": "-122.293047" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.890841 ], [ -122.293110, 37.890570 ], [ -122.293453, 37.890570 ], [ -122.293453, 37.890841 ], [ -122.293110, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.891713", "INTPTLON10": "-122.292394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.889049", "INTPTLON10": "-122.293592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.888889", "INTPTLON10": "-122.292965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.293282, 37.889893 ], [ -122.292595, 37.887725 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.889326", "INTPTLON10": "-122.292811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.889251", "INTPTLON10": "-122.292014" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.887916", "INTPTLON10": "-122.291592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887996 ], [ -122.292080, 37.887725 ], [ -122.292423, 37.887725 ], [ -122.292423, 37.887996 ], [ -122.292080, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.891804", "INTPTLON10": "-122.291474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.891823", "INTPTLON10": "-122.290615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.890645", "INTPTLON10": "-122.291484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.890841 ], [ -122.291050, 37.890570 ], [ -122.291393, 37.890570 ], [ -122.291393, 37.890841 ], [ -122.291050, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.891906", "INTPTLON10": "-122.288910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.889411", "INTPTLON10": "-122.290964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.889669", "INTPTLON10": "-122.289020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.888325", "INTPTLON10": "-122.289573" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.888402 ], [ -122.290020, 37.888131 ], [ -122.290363, 37.888131 ], [ -122.290363, 37.888402 ], [ -122.290020, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.885997", "INTPTLON10": "-122.293508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.886197", "INTPTLON10": "-122.292674" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887725 ], [ -122.291565, 37.885015 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887725 ], [ -122.292595, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.886495", "INTPTLON10": "-122.291137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.886608", "INTPTLON10": "-122.290117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.884079", "INTPTLON10": "-122.290980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.883995", "INTPTLON10": "-122.291315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885015 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.883254 ], [ -122.291393, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.884369", "INTPTLON10": "-122.290441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885964 ], [ -122.289333, 37.885964 ], [ -122.289333, 37.885557 ], [ -122.289677, 37.885557 ], [ -122.289677, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.884009", "INTPTLON10": "-122.289530" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.883536", "INTPTLON10": "-122.296220" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.883481", "INTPTLON10": "-122.295359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.892606", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892060 ], [ -122.288475, 37.892060 ], [ -122.288475, 37.891654 ], [ -122.288818, 37.891654 ], [ -122.288818, 37.892060 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.890820", "INTPTLON10": "-122.288237" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.287617, 37.890705 ], [ -122.287960, 37.890705 ], [ -122.287960, 37.890976 ], [ -122.287617, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.891809", "INTPTLON10": "-122.287323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.890952", "INTPTLON10": "-122.286179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.891112 ], [ -122.286587, 37.890841 ], [ -122.286930, 37.890841 ], [ -122.286930, 37.891112 ], [ -122.286587, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888809 ], [ -122.288303, 37.888673 ], [ -122.288303, 37.888944 ], [ -122.288818, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.888823", "INTPTLON10": "-122.287591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888809 ], [ -122.288132, 37.888538 ], [ -122.288475, 37.888538 ], [ -122.288475, 37.888809 ], [ -122.288132, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286930, 37.889215 ], [ -122.286930, 37.888944 ], [ -122.287273, 37.888944 ], [ -122.287273, 37.889215 ], [ -122.286930, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.286636" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.890209", "INTPTLON10": "-122.285901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.285093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891247 ], [ -122.284355, 37.890976 ], [ -122.284698, 37.890976 ], [ -122.284698, 37.891247 ], [ -122.284355, 37.891247 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.890214", "INTPTLON10": "-122.284831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.890110", "INTPTLON10": "-122.283723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.889442", "INTPTLON10": "-122.285651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889486 ], [ -122.286072, 37.889215 ], [ -122.286415, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286072, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.888944 ], [ -122.284870, 37.888944 ], [ -122.284870, 37.888538 ], [ -122.285385, 37.888538 ], [ -122.285385, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889757 ], [ -122.285042, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285042, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.887238", "INTPTLON10": "-122.288764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.887725 ], [ -122.288475, 37.887725 ], [ -122.288475, 37.887183 ], [ -122.288990, 37.887183 ], [ -122.288990, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.886830", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.883875", "INTPTLON10": "-122.288628" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.884757", "INTPTLON10": "-122.286324" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.885015 ], [ -122.286243, 37.885015 ], [ -122.286243, 37.884609 ], [ -122.286587, 37.884609 ], [ -122.286587, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.886439", "INTPTLON10": "-122.285682" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285900, 37.886641 ], [ -122.285385, 37.886641 ], [ -122.285385, 37.886235 ], [ -122.285900, 37.886235 ], [ -122.285900, 37.886641 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.883871", "INTPTLON10": "-122.285076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284870, 37.884202 ], [ -122.284527, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.884436", "INTPTLON10": "-122.283924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284012, 37.884609 ], [ -122.283497, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.883493", "INTPTLON10": "-122.283797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889351 ], [ -122.283497, 37.889080 ], [ -122.283840, 37.889080 ], [ -122.283840, 37.889351 ], [ -122.283497, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889215 ], [ -122.282639, 37.888944 ], [ -122.282982, 37.888944 ], [ -122.282982, 37.889215 ], [ -122.282639, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.887945", "INTPTLON10": "-122.282371" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.886460", "INTPTLON10": "-122.283067" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.884902", "INTPTLON10": "-122.282679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.885151 ], [ -122.282124, 37.885015 ], [ -122.283497, 37.884744 ], [ -122.282467, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.883462", "INTPTLON10": "-122.287583" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.883465", "INTPTLON10": "-122.286818" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.884202 ], [ -122.286587, 37.883931 ], [ -122.286930, 37.883931 ], [ -122.286930, 37.884202 ], [ -122.286587, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.883224", "INTPTLON10": "-122.286366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883525 ], [ -122.286243, 37.883525 ], [ -122.286243, 37.883119 ], [ -122.286587, 37.883119 ], [ -122.286587, 37.883525 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.882857", "INTPTLON10": "-122.286349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309160, 37.892263 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309160, 37.892263 ] ] ], [ [ [ -122.309160, 37.892263 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892263 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.897139", "INTPTLON10": "-122.312126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311649, 37.896869 ], [ -122.312508, 37.896937 ], [ -122.312593, 37.897140 ], [ -122.312508, 37.897479 ], [ -122.312078, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.892805 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.892196 ], [ -122.308302, 37.892196 ], [ -122.308388, 37.894431 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.308540" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897682 ], [ -122.309933, 37.895718 ], [ -122.309332, 37.894566 ], [ -122.308559, 37.892399 ], [ -122.308130, 37.890638 ], [ -122.308388, 37.890096 ], [ -122.309418, 37.893889 ], [ -122.310534, 37.895853 ], [ -122.311907, 37.897546 ], [ -122.311478, 37.897682 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.895581", "INTPTLON10": "-122.309453" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894431 ], [ -122.308302, 37.892331 ], [ -122.307959, 37.890976 ], [ -122.308130, 37.890638 ], [ -122.308559, 37.892399 ], [ -122.309332, 37.894566 ], [ -122.309933, 37.895718 ], [ -122.311478, 37.897682 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.890405", "INTPTLON10": "-122.308694" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311907, 37.897546 ], [ -122.310534, 37.895853 ], [ -122.309761, 37.894498 ], [ -122.309160, 37.893144 ], [ -122.308388, 37.890096 ], [ -122.308989, 37.888809 ], [ -122.308903, 37.890502 ], [ -122.309246, 37.893076 ], [ -122.310019, 37.894769 ], [ -122.311563, 37.896869 ], [ -122.312078, 37.897479 ], [ -122.311907, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.892198", "INTPTLON10": "-122.307551" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.307701, 37.894295 ], [ -122.307100, 37.892602 ], [ -122.307100, 37.890909 ], [ -122.307529, 37.889554 ], [ -122.307959, 37.890976 ], [ -122.307615, 37.892263 ], [ -122.307615, 37.893347 ], [ -122.308302, 37.895244 ], [ -122.309418, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.890773", "INTPTLON10": "-122.306765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.898021 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892263 ], [ -122.306757, 37.891721 ], [ -122.306414, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307444, 37.889757 ], [ -122.307100, 37.891247 ], [ -122.307100, 37.892602 ], [ -122.307701, 37.894295 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.898021 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.892031", "INTPTLON10": "-122.307713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307615, 37.893144 ], [ -122.307701, 37.891721 ], [ -122.307959, 37.890976 ], [ -122.308302, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893076 ], [ -122.308302, 37.895244 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.897374", "INTPTLON10": "-122.301248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896734 ], [ -122.301178, 37.896734 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.897606", "INTPTLON10": "-122.300839" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896734 ], [ -122.300835, 37.896056 ], [ -122.300920, 37.896056 ], [ -122.301178, 37.896734 ], [ -122.301006, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.895545", "INTPTLON10": "-122.300683" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896056 ], [ -122.300491, 37.895108 ], [ -122.300663, 37.895108 ], [ -122.300920, 37.896056 ], [ -122.300835, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.892960", "INTPTLON10": "-122.301287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895108 ], [ -122.299976, 37.893482 ], [ -122.300148, 37.893482 ], [ -122.300577, 37.894905 ], [ -122.300663, 37.895108 ], [ -122.300491, 37.895108 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.893128", "INTPTLON10": "-122.300432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.888741 ], [ -122.327099, 37.888741 ], [ -122.325468, 37.888131 ], [ -122.324610, 37.887928 ], [ -122.322979, 37.888335 ], [ -122.322893, 37.889080 ], [ -122.322292, 37.889418 ], [ -122.320919, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.317314, 37.889283 ], [ -122.316113, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316542, 37.886167 ], [ -122.316456, 37.885964 ], [ -122.316027, 37.885964 ], [ -122.316027, 37.885693 ], [ -122.316885, 37.885693 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.316113, 37.885489 ], [ -122.315769, 37.885286 ], [ -122.315512, 37.884744 ], [ -122.315683, 37.884338 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.883999 ], [ -122.314396, 37.883389 ], [ -122.313967, 37.882644 ], [ -122.313108, 37.882238 ], [ -122.312508, 37.881425 ], [ -122.327700, 37.877360 ], [ -122.334738, 37.889622 ], [ -122.327614, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315598, 37.889689 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309332, 37.887318 ], [ -122.309589, 37.886980 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881425 ], [ -122.313108, 37.882238 ], [ -122.313967, 37.882644 ], [ -122.314396, 37.883389 ], [ -122.315083, 37.883999 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884338 ], [ -122.315512, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885693 ], [ -122.316027, 37.885693 ], [ -122.316027, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316542, 37.886167 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316113, 37.887928 ], [ -122.317314, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.320919, 37.889283 ], [ -122.322292, 37.889418 ], [ -122.322893, 37.889080 ], [ -122.322979, 37.888335 ], [ -122.324610, 37.887928 ], [ -122.325468, 37.888131 ], [ -122.327099, 37.888741 ], [ -122.327614, 37.888741 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.315598, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.309499" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309847, 37.888131 ], [ -122.309332, 37.887928 ], [ -122.309418, 37.887725 ], [ -122.309847, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.887852", "INTPTLON10": "-122.309121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309332, 37.887318 ], [ -122.308989, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890096 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308645, 37.887386 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888809 ], [ -122.308388, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.890134", "INTPTLON10": "-122.306301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306156, 37.889960 ], [ -122.306671, 37.890231 ], [ -122.306242, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307959, 37.890976 ], [ -122.307529, 37.889554 ], [ -122.308559, 37.887657 ], [ -122.308388, 37.890096 ], [ -122.307959, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307272, 37.887251 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308645, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.889007", "INTPTLON10": "-122.305389" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.888782", "INTPTLON10": "-122.306532" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889554 ], [ -122.307014, 37.887522 ], [ -122.305470, 37.887522 ], [ -122.307272, 37.887251 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889554 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.887324", "INTPTLON10": "-122.308809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887386 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.886587", "INTPTLON10": "-122.309031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309332, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.887318 ], [ -122.309332, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308645, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309589, 37.887115 ], [ -122.309332, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.307358, 37.886777 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882238 ], [ -122.308645, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887386 ], [ -122.308559, 37.887318 ], [ -122.307272, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.308731, 37.887251 ], [ -122.308645, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.883745", "INTPTLON10": "-122.306961" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887115 ], [ -122.307100, 37.886912 ], [ -122.306242, 37.883322 ], [ -122.305813, 37.882102 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.886777 ], [ -122.307272, 37.887115 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.890278", "INTPTLON10": "-122.303039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.889177", "INTPTLON10": "-122.304538" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.889351 ], [ -122.304354, 37.889351 ], [ -122.304354, 37.889147 ], [ -122.304525, 37.889147 ], [ -122.304525, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.889339", "INTPTLON10": "-122.303697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.303324, 37.889418 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.889507", "INTPTLON10": "-122.302853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302809, 37.889689 ], [ -122.302551, 37.889689 ], [ -122.302551, 37.889486 ], [ -122.302809, 37.889486 ], [ -122.302809, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.303402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.891200", "INTPTLON10": "-122.299809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.890011", "INTPTLON10": "-122.300335" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.890096 ], [ -122.300320, 37.890096 ], [ -122.300320, 37.889893 ], [ -122.300577, 37.889893 ], [ -122.300577, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.888863", "INTPTLON10": "-122.300805" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.888859", "INTPTLON10": "-122.299964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887657 ], [ -122.302122, 37.887522 ], [ -122.305899, 37.887318 ], [ -122.307272, 37.887115 ], [ -122.307272, 37.887251 ], [ -122.305470, 37.887522 ], [ -122.302208, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.883323", "INTPTLON10": "-122.303096" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.896818", "INTPTLON10": "-122.296083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.294569, 37.898766 ], [ -122.294655, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.296286, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.892896", "INTPTLON10": "-122.298402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.896094", "INTPTLON10": "-122.295274" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.894566 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897817 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.893232", "INTPTLON10": "-122.296730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.893566", "INTPTLON10": "-122.295039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.893680", "INTPTLON10": "-122.294492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894566 ], [ -122.294140, 37.892873 ], [ -122.294397, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894566 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.898210", "INTPTLON10": "-122.294138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.898096", "INTPTLON10": "-122.293296" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.898006", "INTPTLON10": "-122.292741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292681, 37.898359 ], [ -122.292681, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.292852, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.897196", "INTPTLON10": "-122.292756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.897482", "INTPTLON10": "-122.292153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.897321", "INTPTLON10": "-122.291217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.897247", "INTPTLON10": "-122.290340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.897228", "INTPTLON10": "-122.289472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.896227", "INTPTLON10": "-122.294213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.896238", "INTPTLON10": "-122.293364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.895784", "INTPTLON10": "-122.292824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.893908", "INTPTLON10": "-122.294157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.893803", "INTPTLON10": "-122.293455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.893843", "INTPTLON10": "-122.292906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.893834", "INTPTLON10": "-122.292309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290106, 37.894837 ], [ -122.292767, 37.894905 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.895696", "INTPTLON10": "-122.289570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.893883", "INTPTLON10": "-122.291391" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.893860", "INTPTLON10": "-122.290522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.893833", "INTPTLON10": "-122.289663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.897345", "INTPTLON10": "-122.288150" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.288218, 37.898156 ], [ -122.288132, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.897500", "INTPTLON10": "-122.287634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.898412", "INTPTLON10": "-122.287055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898766 ], [ -122.287016, 37.898156 ], [ -122.287188, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287016, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.897338", "INTPTLON10": "-122.287125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.895669", "INTPTLON10": "-122.288696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.895673", "INTPTLON10": "-122.288221" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895921 ], [ -122.288046, 37.895921 ], [ -122.288046, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895921 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.895646", "INTPTLON10": "-122.287747" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.895607", "INTPTLON10": "-122.287205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.893809", "INTPTLON10": "-122.288787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.893772", "INTPTLON10": "-122.288313" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288561, 37.894431 ], [ -122.288132, 37.894431 ], [ -122.288132, 37.894092 ], [ -122.288561, 37.894092 ], [ -122.288561, 37.894431 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.893780", "INTPTLON10": "-122.287836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.893731", "INTPTLON10": "-122.287275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299461, 37.891857 ], [ -122.299547, 37.891857 ], [ -122.299719, 37.892331 ], [ -122.299633, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.891101", "INTPTLON10": "-122.298726" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.891043", "INTPTLON10": "-122.299235" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891857 ], [ -122.298946, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891857 ], [ -122.299461, 37.891857 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.890172", "INTPTLON10": "-122.299448" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.890267", "INTPTLON10": "-122.298466" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298088, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890367 ], [ -122.298088, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.891205", "INTPTLON10": "-122.297856" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.890309", "INTPTLON10": "-122.297598" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.890502 ], [ -122.297316, 37.890502 ], [ -122.297316, 37.890231 ], [ -122.297487, 37.890231 ], [ -122.297487, 37.890502 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.888934", "INTPTLON10": "-122.299083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.889016", "INTPTLON10": "-122.298589" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298174, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.888458", "INTPTLON10": "-122.297915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.891320", "INTPTLON10": "-122.297001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.891425", "INTPTLON10": "-122.296144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.890358", "INTPTLON10": "-122.296696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.890411", "INTPTLON10": "-122.295818" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295427, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.891538", "INTPTLON10": "-122.295286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.891658", "INTPTLON10": "-122.294418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.890469", "INTPTLON10": "-122.294939" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.890570 ], [ -122.294569, 37.890502 ], [ -122.295427, 37.890502 ], [ -122.294741, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.888734", "INTPTLON10": "-122.296175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.888848", "INTPTLON10": "-122.295319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.888930", "INTPTLON10": "-122.294456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299633, 37.887522 ], [ -122.301006, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.298260, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.885827", "INTPTLON10": "-122.299123" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.299633, 37.887522 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297316, 37.884609 ], [ -122.298346, 37.884406 ], [ -122.299976, 37.884067 ], [ -122.300148, 37.885151 ], [ -122.301006, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.886758", "INTPTLON10": "-122.297347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.297659, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297831, 37.886777 ], [ -122.296972, 37.886844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.883579", "INTPTLON10": "-122.299068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.885644", "INTPTLON10": "-122.297509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.886709 ], [ -122.297144, 37.884677 ], [ -122.297316, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297831, 37.886709 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.883931", "INTPTLON10": "-122.297603" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297316, 37.884609 ], [ -122.296972, 37.883525 ], [ -122.298002, 37.883254 ], [ -122.298346, 37.884406 ], [ -122.297316, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296114, 37.886980 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.887115 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295256, 37.887183 ], [ -122.296114, 37.886980 ], [ -122.296114, 37.887115 ], [ -122.295256, 37.887251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.887267", "INTPTLON10": "-122.294807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295256, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294483, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.885811", "INTPTLON10": "-122.294338" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.884198", "INTPTLON10": "-122.297050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884677 ], [ -122.296886, 37.883864 ], [ -122.297058, 37.883796 ], [ -122.297316, 37.884609 ], [ -122.297144, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.883655", "INTPTLON10": "-122.296873" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883864 ], [ -122.296801, 37.883525 ], [ -122.296972, 37.883525 ], [ -122.297058, 37.883796 ], [ -122.296886, 37.883864 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.891485", "INTPTLON10": "-122.293695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293882, 37.891992 ], [ -122.293196, 37.891044 ], [ -122.293196, 37.890638 ], [ -122.293625, 37.890570 ], [ -122.294397, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.892188", "INTPTLON10": "-122.293477" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.891850", "INTPTLON10": "-122.292985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.292938, 37.890773 ], [ -122.293196, 37.891044 ], [ -122.293110, 37.892873 ], [ -122.292852, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.890513", "INTPTLON10": "-122.294112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294054, 37.890638 ], [ -122.293882, 37.890638 ], [ -122.293882, 37.890434 ], [ -122.294054, 37.890434 ], [ -122.294054, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.890745", "INTPTLON10": "-122.293047" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.292938, 37.890638 ], [ -122.293196, 37.890638 ], [ -122.293196, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.890553", "INTPTLON10": "-122.293251" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.891713", "INTPTLON10": "-122.292394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.890599", "INTPTLON10": "-122.292415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.292767, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.889049", "INTPTLON10": "-122.293592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.888889", "INTPTLON10": "-122.292965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890367 ], [ -122.293196, 37.889825 ], [ -122.292509, 37.887725 ], [ -122.292767, 37.887657 ], [ -122.292767, 37.887793 ], [ -122.293625, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.889326", "INTPTLON10": "-122.292811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.889251", "INTPTLON10": "-122.292014" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.887916", "INTPTLON10": "-122.291592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.291136, 37.887996 ], [ -122.292166, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291136, 37.888064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.891804", "INTPTLON10": "-122.291474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.891823", "INTPTLON10": "-122.290615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.890645", "INTPTLON10": "-122.291484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291479, 37.890773 ], [ -122.291307, 37.890773 ], [ -122.291307, 37.890570 ], [ -122.291479, 37.890570 ], [ -122.291479, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.891906", "INTPTLON10": "-122.288910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.889411", "INTPTLON10": "-122.290964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.888122", "INTPTLON10": "-122.290573" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290106, 37.888199 ], [ -122.291136, 37.887996 ], [ -122.291136, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.889669", "INTPTLON10": "-122.289020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.888325", "INTPTLON10": "-122.289573" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.289162, 37.888402 ], [ -122.290106, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289162, 37.888470 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.885997", "INTPTLON10": "-122.293508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.887776", "INTPTLON10": "-122.292289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292166, 37.887793 ], [ -122.292509, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.886197", "INTPTLON10": "-122.292674" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292509, 37.887725 ], [ -122.291565, 37.884948 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887657 ], [ -122.292509, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.886495", "INTPTLON10": "-122.291137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.886608", "INTPTLON10": "-122.290117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.884079", "INTPTLON10": "-122.290980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.883995", "INTPTLON10": "-122.291315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884948 ], [ -122.290878, 37.883322 ], [ -122.291136, 37.883254 ], [ -122.291307, 37.883254 ], [ -122.291822, 37.884880 ], [ -122.291565, 37.884948 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.884369", "INTPTLON10": "-122.290441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289677, 37.884880 ], [ -122.289762, 37.884948 ], [ -122.289333, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.884009", "INTPTLON10": "-122.289530" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.883536", "INTPTLON10": "-122.296220" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.883481", "INTPTLON10": "-122.295359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.892606", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288733, 37.892128 ], [ -122.288389, 37.892128 ], [ -122.288389, 37.891721 ], [ -122.288733, 37.891721 ], [ -122.288733, 37.892128 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.890820", "INTPTLON10": "-122.288237" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288818, 37.890773 ], [ -122.288818, 37.890841 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.891809", "INTPTLON10": "-122.287323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.890891", "INTPTLON10": "-122.287082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287188, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.890952", "INTPTLON10": "-122.286179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286501, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888741 ], [ -122.288303, 37.888606 ], [ -122.288303, 37.888876 ], [ -122.288904, 37.890705 ], [ -122.288818, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.888673 ], [ -122.288733, 37.888673 ], [ -122.288733, 37.888402 ], [ -122.288990, 37.888402 ], [ -122.288990, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.888823", "INTPTLON10": "-122.287591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.888944 ], [ -122.287617, 37.888944 ], [ -122.287617, 37.888673 ], [ -122.287960, 37.888673 ], [ -122.287960, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.286636" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.890209", "INTPTLON10": "-122.285901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.285093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.285728, 37.891044 ], [ -122.284527, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.890214", "INTPTLON10": "-122.284831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.891068", "INTPTLON10": "-122.283973" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891180 ], [ -122.283497, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891180 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.890110", "INTPTLON10": "-122.283723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.889442", "INTPTLON10": "-122.285651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.285213, 37.889486 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.284441, 37.889418 ], [ -122.284098, 37.889351 ], [ -122.284098, 37.889283 ], [ -122.285213, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284098, 37.889283 ], [ -122.284098, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.887238", "INTPTLON10": "-122.288764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.886830", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.883875", "INTPTLON10": "-122.288628" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.884757", "INTPTLON10": "-122.286324" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.886439", "INTPTLON10": "-122.285682" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.285986, 37.885557 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.883871", "INTPTLON10": "-122.285076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284527, 37.884135 ], [ -122.285728, 37.883593 ], [ -122.285728, 37.883660 ], [ -122.284784, 37.884135 ], [ -122.284527, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.884436", "INTPTLON10": "-122.283924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884677 ], [ -122.284527, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283926, 37.884541 ], [ -122.283411, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.883493", "INTPTLON10": "-122.283797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.891126", "INTPTLON10": "-122.282947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283068, 37.891247 ], [ -122.282810, 37.891247 ], [ -122.282810, 37.891044 ], [ -122.283068, 37.891044 ], [ -122.283068, 37.891247 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.887945", "INTPTLON10": "-122.282371" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.886460", "INTPTLON10": "-122.283067" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.884902", "INTPTLON10": "-122.282679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.282038, 37.885015 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885083 ], [ -122.282038, 37.885083 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.883462", "INTPTLON10": "-122.287583" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.883465", "INTPTLON10": "-122.286818" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287102, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.882724", "INTPTLON10": "-122.287097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.883224", "INTPTLON10": "-122.286366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883660 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.882857", "INTPTLON10": "-122.286349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.897139", "INTPTLON10": "-122.312126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311606, 37.896869 ], [ -122.311563, 37.896835 ], [ -122.312164, 37.896937 ], [ -122.312465, 37.896937 ], [ -122.312551, 37.897140 ], [ -122.312508, 37.897445 ], [ -122.312078, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307830, 37.892805 ], [ -122.307873, 37.892297 ], [ -122.308044, 37.892162 ], [ -122.308259, 37.892196 ], [ -122.308345, 37.894431 ], [ -122.309418, 37.897309 ], [ -122.309546, 37.897851 ], [ -122.309375, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.308540" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897648 ], [ -122.309933, 37.895684 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308517, 37.892399 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.892568 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894837 ], [ -122.310534, 37.895819 ], [ -122.311864, 37.897546 ], [ -122.311478, 37.897648 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.895581", "INTPTLON10": "-122.309453" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309546, 37.897851 ], [ -122.309418, 37.897309 ], [ -122.308345, 37.894431 ], [ -122.308259, 37.892297 ], [ -122.307916, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308517, 37.892399 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895684 ], [ -122.311478, 37.897648 ], [ -122.310920, 37.897851 ], [ -122.309546, 37.897851 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.890405", "INTPTLON10": "-122.308694" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897546 ], [ -122.310534, 37.895819 ], [ -122.309718, 37.894465 ], [ -122.309160, 37.893144 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.888775 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.891247 ], [ -122.309031, 37.892094 ], [ -122.309246, 37.893076 ], [ -122.309546, 37.893855 ], [ -122.310019, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311563, 37.896835 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.892198", "INTPTLON10": "-122.307551" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.307701, 37.894261 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892568 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.890875 ], [ -122.307272, 37.890130 ], [ -122.307529, 37.889520 ], [ -122.307916, 37.890976 ], [ -122.307658, 37.891688 ], [ -122.307572, 37.892263 ], [ -122.307529, 37.892636 ], [ -122.307615, 37.893313 ], [ -122.307787, 37.893990 ], [ -122.308302, 37.895244 ], [ -122.309375, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.890773", "INTPTLON10": "-122.306765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.897987 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892229 ], [ -122.306714, 37.892026 ], [ -122.306714, 37.891721 ], [ -122.306414, 37.890807 ], [ -122.306843, 37.890705 ], [ -122.307401, 37.889757 ], [ -122.307229, 37.890299 ], [ -122.307057, 37.891247 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892568 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894261 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.897987 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.892031", "INTPTLON10": "-122.307713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893144 ], [ -122.307529, 37.892636 ], [ -122.307658, 37.891688 ], [ -122.307916, 37.890976 ], [ -122.308259, 37.892196 ], [ -122.308044, 37.892162 ], [ -122.307873, 37.892297 ], [ -122.307830, 37.893042 ], [ -122.307873, 37.893652 ], [ -122.308302, 37.895244 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.897374", "INTPTLON10": "-122.301248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.301006, 37.896700 ], [ -122.301135, 37.896700 ], [ -122.301650, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.897606", "INTPTLON10": "-122.300839" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896700 ], [ -122.301006, 37.896700 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.895545", "INTPTLON10": "-122.300683" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300491, 37.895074 ], [ -122.300620, 37.895074 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.892960", "INTPTLON10": "-122.301287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895074 ], [ -122.299976, 37.893482 ], [ -122.300105, 37.893449 ], [ -122.300577, 37.894871 ], [ -122.300620, 37.895074 ], [ -122.300491, 37.895074 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.893128", "INTPTLON10": "-122.300432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327056, 37.888707 ], [ -122.325468, 37.888097 ], [ -122.324910, 37.887928 ], [ -122.324610, 37.887894 ], [ -122.322936, 37.888301 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889080 ], [ -122.322550, 37.889317 ], [ -122.322249, 37.889384 ], [ -122.321949, 37.889418 ], [ -122.321348, 37.889283 ], [ -122.320919, 37.889249 ], [ -122.319632, 37.889452 ], [ -122.317271, 37.889283 ], [ -122.316842, 37.888944 ], [ -122.316756, 37.888741 ], [ -122.316070, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316499, 37.886133 ], [ -122.316456, 37.885964 ], [ -122.315984, 37.885964 ], [ -122.316027, 37.885659 ], [ -122.316885, 37.885659 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885523 ], [ -122.316113, 37.885456 ], [ -122.315726, 37.885286 ], [ -122.315469, 37.884710 ], [ -122.315683, 37.884304 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315340, 37.884067 ], [ -122.315040, 37.883965 ], [ -122.314396, 37.883389 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313623, 37.882441 ], [ -122.313066, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327657, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.886237", "INTPTLON10": "-122.314137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.315812, 37.889520 ], [ -122.315598, 37.889655 ], [ -122.311263, 37.889452 ], [ -122.310190, 37.888538 ], [ -122.309804, 37.888064 ], [ -122.309375, 37.887691 ], [ -122.309289, 37.887894 ], [ -122.309246, 37.887860 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887183 ], [ -122.309546, 37.886980 ], [ -122.309546, 37.886472 ], [ -122.308903, 37.884033 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882306 ], [ -122.312465, 37.881391 ], [ -122.313066, 37.882204 ], [ -122.313623, 37.882441 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314396, 37.883389 ], [ -122.315040, 37.883965 ], [ -122.315340, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884304 ], [ -122.315469, 37.884710 ], [ -122.315726, 37.885286 ], [ -122.316113, 37.885456 ], [ -122.316027, 37.885523 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885659 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316499, 37.886133 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316070, 37.887928 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888944 ], [ -122.317271, 37.889283 ], [ -122.319632, 37.889452 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889283 ], [ -122.321949, 37.889418 ], [ -122.322249, 37.889384 ], [ -122.322550, 37.889317 ], [ -122.322850, 37.889080 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888301 ], [ -122.324610, 37.887894 ], [ -122.324910, 37.887928 ], [ -122.325468, 37.888097 ], [ -122.327056, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.309499" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309632, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887894 ], [ -122.309375, 37.887691 ], [ -122.309804, 37.888064 ], [ -122.309804, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.887852", "INTPTLON10": "-122.309121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888775 ], [ -122.309074, 37.887454 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.308989, 37.888775 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890096 ], [ -122.308345, 37.889215 ], [ -122.308559, 37.888301 ], [ -122.308559, 37.887556 ], [ -122.308645, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888775 ], [ -122.308345, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.890134", "INTPTLON10": "-122.306301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306156, 37.889926 ], [ -122.306328, 37.890096 ], [ -122.306628, 37.890197 ], [ -122.306242, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307916, 37.890976 ], [ -122.307529, 37.889520 ], [ -122.308517, 37.887657 ], [ -122.308559, 37.888301 ], [ -122.308388, 37.889012 ], [ -122.308345, 37.890096 ], [ -122.307916, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307229, 37.887217 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887352 ], [ -122.308602, 37.887454 ], [ -122.307701, 37.889181 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.889007", "INTPTLON10": "-122.305389" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.888782", "INTPTLON10": "-122.306532" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889520 ], [ -122.306972, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.307229, 37.887217 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.887324", "INTPTLON10": "-122.308809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308989, 37.887352 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.886587", "INTPTLON10": "-122.309031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308989, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308860, 37.886472 ], [ -122.309031, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.886336 ], [ -122.309031, 37.885151 ], [ -122.308645, 37.883491 ], [ -122.308903, 37.884033 ], [ -122.309546, 37.886472 ], [ -122.309546, 37.887081 ], [ -122.309289, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308688, 37.887217 ], [ -122.308044, 37.887115 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886743 ], [ -122.307830, 37.882035 ], [ -122.308388, 37.882204 ], [ -122.308645, 37.883491 ], [ -122.309031, 37.885151 ], [ -122.308860, 37.886472 ], [ -122.308688, 37.887217 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887352 ], [ -122.308517, 37.887318 ], [ -122.307873, 37.887217 ], [ -122.307229, 37.887217 ], [ -122.307229, 37.887081 ], [ -122.308044, 37.887115 ], [ -122.308688, 37.887217 ], [ -122.308645, 37.887352 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.883745", "INTPTLON10": "-122.306961" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306199, 37.883288 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881899 ], [ -122.307315, 37.881933 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882035 ], [ -122.307358, 37.886743 ], [ -122.307229, 37.887081 ], [ -122.307186, 37.887081 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.890278", "INTPTLON10": "-122.303039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.889177", "INTPTLON10": "-122.304538" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.889339", "INTPTLON10": "-122.303697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.303281, 37.889418 ], [ -122.304139, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303324, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.889507", "INTPTLON10": "-122.302853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302465, 37.889588 ], [ -122.303281, 37.889418 ], [ -122.303324, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.303402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.891200", "INTPTLON10": "-122.299809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.890011", "INTPTLON10": "-122.300335" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299933, 37.890096 ], [ -122.300792, 37.889926 ], [ -122.300792, 37.889960 ], [ -122.299933, 37.890130 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.888863", "INTPTLON10": "-122.300805" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.888859", "INTPTLON10": "-122.299964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302122, 37.887623 ], [ -122.302079, 37.887522 ], [ -122.305856, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307229, 37.887217 ], [ -122.305427, 37.887488 ], [ -122.302208, 37.887623 ], [ -122.302122, 37.887623 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.883323", "INTPTLON10": "-122.303096" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.896818", "INTPTLON10": "-122.296083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.294569, 37.898766 ], [ -122.294612, 37.897750 ], [ -122.295728, 37.897783 ], [ -122.296243, 37.898935 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.892896", "INTPTLON10": "-122.298402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.896094", "INTPTLON10": "-122.295274" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897783 ], [ -122.294655, 37.894532 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897783 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.893232", "INTPTLON10": "-122.296730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.893566", "INTPTLON10": "-122.295039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.893680", "INTPTLON10": "-122.294492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294140, 37.892873 ], [ -122.294354, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894532 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.898210", "INTPTLON10": "-122.294138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898664 ], [ -122.293754, 37.897716 ], [ -122.294612, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.898096", "INTPTLON10": "-122.293296" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.898006", "INTPTLON10": "-122.292741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898393 ], [ -122.292681, 37.898359 ], [ -122.292638, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.292852, 37.898393 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.897196", "INTPTLON10": "-122.292756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.897482", "INTPTLON10": "-122.292153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.897321", "INTPTLON10": "-122.291217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.897247", "INTPTLON10": "-122.290340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.897228", "INTPTLON10": "-122.289472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.896227", "INTPTLON10": "-122.294213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.896238", "INTPTLON10": "-122.293364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.895784", "INTPTLON10": "-122.292824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.893908", "INTPTLON10": "-122.294157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.893803", "INTPTLON10": "-122.293455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.893843", "INTPTLON10": "-122.292906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.893834", "INTPTLON10": "-122.292309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.895751", "INTPTLON10": "-122.291350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.289977, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290063, 37.894803 ], [ -122.292767, 37.894871 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.895696", "INTPTLON10": "-122.289570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.893883", "INTPTLON10": "-122.291391" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.893860", "INTPTLON10": "-122.290522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.893833", "INTPTLON10": "-122.289663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.897345", "INTPTLON10": "-122.288150" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288175, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897817 ], [ -122.288175, 37.898122 ], [ -122.288132, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.897500", "INTPTLON10": "-122.287634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.898412", "INTPTLON10": "-122.287055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.898732 ], [ -122.287016, 37.898156 ], [ -122.287145, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.286973, 37.898732 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.897338", "INTPTLON10": "-122.287125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.895669", "INTPTLON10": "-122.288696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.895673", "INTPTLON10": "-122.288221" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.288260, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.895646", "INTPTLON10": "-122.287747" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.895607", "INTPTLON10": "-122.287205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.893809", "INTPTLON10": "-122.288787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.893772", "INTPTLON10": "-122.288313" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.894736 ], [ -122.288346, 37.892873 ], [ -122.288432, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288260, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.893780", "INTPTLON10": "-122.287836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.893731", "INTPTLON10": "-122.287275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891823 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.891101", "INTPTLON10": "-122.298726" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.891043", "INTPTLON10": "-122.299235" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890299 ], [ -122.299075, 37.890265 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891823 ], [ -122.299418, 37.891823 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.890172", "INTPTLON10": "-122.299448" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.890267", "INTPTLON10": "-122.298466" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298946, 37.890231 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890333 ], [ -122.298045, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.891205", "INTPTLON10": "-122.297856" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.890309", "INTPTLON10": "-122.297598" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.888934", "INTPTLON10": "-122.299083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.889016", "INTPTLON10": "-122.298589" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298131, 37.887793 ], [ -122.298260, 37.887759 ], [ -122.299075, 37.890265 ], [ -122.298946, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.888458", "INTPTLON10": "-122.297915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.891320", "INTPTLON10": "-122.297001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.891425", "INTPTLON10": "-122.296144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.890358", "INTPTLON10": "-122.296696" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890401 ], [ -122.296286, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.890411", "INTPTLON10": "-122.295818" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295599, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295599, 37.890468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.891538", "INTPTLON10": "-122.295286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.891658", "INTPTLON10": "-122.294418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.890469", "INTPTLON10": "-122.294939" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294698, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.295384, 37.890434 ], [ -122.295427, 37.890468 ], [ -122.294698, 37.890536 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.888734", "INTPTLON10": "-122.296175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.888848", "INTPTLON10": "-122.295319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.888930", "INTPTLON10": "-122.294456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299590, 37.887488 ], [ -122.300191, 37.887623 ], [ -122.300963, 37.887657 ], [ -122.300706, 37.887759 ], [ -122.298260, 37.887759 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.885827", "INTPTLON10": "-122.299123" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300191, 37.887623 ], [ -122.299590, 37.887488 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297273, 37.884609 ], [ -122.298303, 37.884406 ], [ -122.299933, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300148, 37.885117 ], [ -122.300963, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.886758", "INTPTLON10": "-122.297347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296929, 37.886844 ], [ -122.297616, 37.886675 ], [ -122.297788, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.296929, 37.886878 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.883579", "INTPTLON10": "-122.299068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.885644", "INTPTLON10": "-122.297509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.297788, 37.886675 ], [ -122.297144, 37.884643 ], [ -122.297273, 37.884609 ], [ -122.297916, 37.886709 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.883931", "INTPTLON10": "-122.297603" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297273, 37.884609 ], [ -122.296929, 37.883525 ], [ -122.297788, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298303, 37.884406 ], [ -122.297273, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296071, 37.886980 ], [ -122.296929, 37.886844 ], [ -122.296929, 37.886878 ], [ -122.296114, 37.887081 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295213, 37.887183 ], [ -122.296071, 37.886980 ], [ -122.296114, 37.887081 ], [ -122.295256, 37.887251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.887267", "INTPTLON10": "-122.294807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294440, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.885811", "INTPTLON10": "-122.294338" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.884198", "INTPTLON10": "-122.297050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884643 ], [ -122.296886, 37.883830 ], [ -122.297015, 37.883796 ], [ -122.297273, 37.884609 ], [ -122.297144, 37.884643 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.883655", "INTPTLON10": "-122.296873" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296929, 37.883525 ], [ -122.297015, 37.883796 ], [ -122.296886, 37.883830 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.883527", "INTPTLON10": "-122.294503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.891485", "INTPTLON10": "-122.293695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891044 ], [ -122.293196, 37.890604 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.892188", "INTPTLON10": "-122.293477" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.891850", "INTPTLON10": "-122.292985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.292938, 37.890739 ], [ -122.293153, 37.891044 ], [ -122.293067, 37.892839 ], [ -122.292852, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.890513", "INTPTLON10": "-122.294112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.890745", "INTPTLON10": "-122.293047" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891044 ], [ -122.292938, 37.890739 ], [ -122.292895, 37.890604 ], [ -122.293196, 37.890604 ], [ -122.293153, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.890553", "INTPTLON10": "-122.293251" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890570 ], [ -122.293410, 37.890536 ], [ -122.293625, 37.890536 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.891713", "INTPTLON10": "-122.292394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.890599", "INTPTLON10": "-122.292415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292895, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292724, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.889049", "INTPTLON10": "-122.293592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.888889", "INTPTLON10": "-122.292965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.890333 ], [ -122.293153, 37.889825 ], [ -122.292466, 37.887725 ], [ -122.292724, 37.887657 ], [ -122.292724, 37.887759 ], [ -122.293582, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.889326", "INTPTLON10": "-122.292811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.889251", "INTPTLON10": "-122.292014" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.887916", "INTPTLON10": "-122.291592" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291093, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.891804", "INTPTLON10": "-122.291474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.891823", "INTPTLON10": "-122.290615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.890645", "INTPTLON10": "-122.291484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.890705 ], [ -122.291093, 37.890671 ], [ -122.291951, 37.890671 ], [ -122.291093, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.891824", "INTPTLON10": "-122.289764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.891906", "INTPTLON10": "-122.288910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.889411", "INTPTLON10": "-122.290964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.888122", "INTPTLON10": "-122.290573" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291093, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.889518", "INTPTLON10": "-122.289959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.889669", "INTPTLON10": "-122.289020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.888325", "INTPTLON10": "-122.289573" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289119, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.885997", "INTPTLON10": "-122.293508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.887776", "INTPTLON10": "-122.292289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.886197", "INTPTLON10": "-122.292674" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887725 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291737, 37.884880 ], [ -122.291780, 37.884880 ], [ -122.292724, 37.887657 ], [ -122.292466, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.886495", "INTPTLON10": "-122.291137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.886608", "INTPTLON10": "-122.290117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.884079", "INTPTLON10": "-122.290980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.883995", "INTPTLON10": "-122.291315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.290835, 37.883322 ], [ -122.291093, 37.883254 ], [ -122.291265, 37.883254 ], [ -122.291780, 37.884880 ], [ -122.291522, 37.884914 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.884369", "INTPTLON10": "-122.290441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289290, 37.885862 ], [ -122.289634, 37.884880 ], [ -122.289720, 37.884914 ], [ -122.289333, 37.885998 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.884009", "INTPTLON10": "-122.289530" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.883536", "INTPTLON10": "-122.296220" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.883481", "INTPTLON10": "-122.295359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.892606", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.288432, 37.891484 ], [ -122.288775, 37.891044 ], [ -122.288775, 37.890841 ], [ -122.288861, 37.890841 ], [ -122.288818, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288432, 37.892873 ], [ -122.288346, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.890820", "INTPTLON10": "-122.288237" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890841 ], [ -122.287960, 37.890875 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.891809", "INTPTLON10": "-122.287323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.890891", "INTPTLON10": "-122.287082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890909 ], [ -122.287188, 37.890942 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.890952", "INTPTLON10": "-122.286179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286458, 37.890976 ], [ -122.285728, 37.891010 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890841 ], [ -122.288775, 37.890671 ], [ -122.288132, 37.888707 ], [ -122.288175, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288260, 37.888876 ], [ -122.288861, 37.890705 ], [ -122.288861, 37.890841 ], [ -122.288775, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888673 ], [ -122.288303, 37.888572 ], [ -122.288947, 37.888436 ], [ -122.289119, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288260, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.888823", "INTPTLON10": "-122.287591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287102, 37.889012 ], [ -122.287316, 37.888910 ], [ -122.288175, 37.888606 ], [ -122.288132, 37.888707 ], [ -122.287102, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286158, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.888441", "INTPTLON10": "-122.286636" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.890209", "INTPTLON10": "-122.285901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.891015", "INTPTLON10": "-122.285093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.285686, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.890214", "INTPTLON10": "-122.284831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.891068", "INTPTLON10": "-122.283973" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891146 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.890110", "INTPTLON10": "-122.283723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.889442", "INTPTLON10": "-122.285651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.285213, 37.889452 ], [ -122.285600, 37.889452 ], [ -122.286158, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286029, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.284441, 37.889418 ], [ -122.284055, 37.889317 ], [ -122.284055, 37.889249 ], [ -122.284698, 37.889418 ], [ -122.285213, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284055, 37.889317 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284055, 37.889249 ], [ -122.284055, 37.889317 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.888027", "INTPTLON10": "-122.283424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.887238", "INTPTLON10": "-122.288764" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.886830", "INTPTLON10": "-122.288382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.883875", "INTPTLON10": "-122.288628" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.884757", "INTPTLON10": "-122.286324" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.886439", "INTPTLON10": "-122.285682" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.883871", "INTPTLON10": "-122.285076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284484, 37.884135 ], [ -122.285728, 37.883559 ], [ -122.285686, 37.883660 ], [ -122.284741, 37.884101 ], [ -122.284527, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.885308", "INTPTLON10": "-122.283651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.884436", "INTPTLON10": "-122.283924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884744 ], [ -122.283368, 37.884677 ], [ -122.284484, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283883, 37.884541 ], [ -122.283411, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.883493", "INTPTLON10": "-122.283797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.891126", "INTPTLON10": "-122.282947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.282424, 37.891180 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282853, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.283497, 37.889114 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.282853, 37.889147 ], [ -122.282295, 37.889249 ], [ -122.281909, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.887945", "INTPTLON10": "-122.282371" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.886460", "INTPTLON10": "-122.283067" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.884902", "INTPTLON10": "-122.282679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.281995, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282424, 37.884981 ], [ -122.283368, 37.884677 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885049 ], [ -122.282038, 37.885083 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.883462", "INTPTLON10": "-122.287583" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.883465", "INTPTLON10": "-122.286818" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.286973, 37.882983 ], [ -122.287102, 37.882915 ], [ -122.287059, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.882724", "INTPTLON10": "-122.287097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.883224", "INTPTLON10": "-122.286366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.882857", "INTPTLON10": "-122.286349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ] ] ] } } +] } +] } +] } diff --git a/tests/join-population/tabblock_06001420-null.json.sort.joined.standard b/tests/join-population/tabblock_06001420-null.json.sort.joined.standard new file mode 100644 index 0000000..529ca41 --- /dev/null +++ b/tests/join-population/tabblock_06001420-null.json.sort.joined.standard @@ -0,0 +1,260 @@ +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1000","GEOID10":"060014201001000","NAME10":"Block 1000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10019.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897247","INTPTLON10":"-122.290340","population":16},"geometry":{"type":"Polygon","coordinates":[[[-122.289862,37.897825],[-122.289872,37.897693],[-122.289881,37.897585],[-122.289941,37.896871],[-122.289963,37.896634],[-122.290131,37.896638],[-122.290636,37.896652],[-122.290805,37.896657],[-122.290787,37.896901],[-122.29074,37.897638],[-122.290726,37.897886],[-122.290583,37.89787],[-122.29018,37.897826],[-122.290063,37.897825],[-122.289889,37.897825],[-122.289862,37.897825]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1001","GEOID10":"060014201001001","NAME10":"Block 1001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11297.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897321","INTPTLON10":"-122.291217","population":21},"geometry":{"type":"Polygon","coordinates":[[[-122.290726,37.897886],[-122.29074,37.897638],[-122.290787,37.896901],[-122.290805,37.896657],[-122.290984,37.896663],[-122.291521,37.896682],[-122.291701,37.896689],[-122.291678,37.89697],[-122.291634,37.897545],[-122.291618,37.897816],[-122.291605,37.8981],[-122.291468,37.898054],[-122.291079,37.897926],[-122.290938,37.89791],[-122.290756,37.897889],[-122.290726,37.897886]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1002","GEOID10":"060014201001002","NAME10":"Block 1002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14980.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897482","INTPTLON10":"-122.292153","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.291605,37.8981],[-122.291618,37.897816],[-122.291634,37.897545],[-122.291678,37.89697],[-122.291701,37.896689],[-122.291893,37.896692],[-122.292469,37.896704],[-122.292661,37.896708],[-122.292651,37.896903],[-122.292624,37.89749],[-122.292615,37.897686],[-122.292632,37.897815],[-122.292655,37.897974],[-122.292657,37.898134],[-122.292647,37.898178],[-122.292648,37.898205],[-122.292649,37.898267],[-122.292653,37.89833],[-122.292655,37.898338],[-122.292526,37.898316],[-122.292346,37.898286],[-122.291979,37.898225],[-122.291911,37.898202],[-122.291815,37.89817],[-122.291644,37.898113],[-122.291605,37.8981]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1003","GEOID10":"060014201001003","NAME10":"Block 1003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1246.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898006","INTPTLON10":"-122.292741"},"geometry":{"type":"Polygon","coordinates":[[[-122.292828,37.898367],[-122.29271,37.898347],[-122.292655,37.898338],[-122.292653,37.89833],[-122.292649,37.898267],[-122.292648,37.898205],[-122.292647,37.898178],[-122.292657,37.898134],[-122.292655,37.897974],[-122.292632,37.897815],[-122.292615,37.897686],[-122.292837,37.897691],[-122.292846,37.897692],[-122.292828,37.898367]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1004","GEOID10":"060014201001004","NAME10":"Block 1004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":6640.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898096","INTPTLON10":"-122.293296","population":9},"geometry":{"type":"Polygon","coordinates":[[[-122.293661,37.898516],[-122.293684,37.898637],[-122.293656,37.898634],[-122.293579,37.898625],[-122.293547,37.898608],[-122.29345,37.89856],[-122.29342,37.898545],[-122.293253,37.898461],[-122.29318,37.898425],[-122.29283,37.898368],[-122.292828,37.898367],[-122.292846,37.897692],[-122.293505,37.897709],[-122.293728,37.897715],[-122.29372,37.897876],[-122.293697,37.898359],[-122.293696,37.898391],[-122.293661,37.898516]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1005","GEOID10":"060014201001005","NAME10":"Block 1005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":8083.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898210","INTPTLON10":"-122.294138"},"geometry":{"type":"Polygon","coordinates":[[[-122.294554,37.898735],[-122.29448,37.898725],[-122.294359,37.898711],[-122.293774,37.898647],[-122.293684,37.898637],[-122.293661,37.898516],[-122.293696,37.898391],[-122.293697,37.898359],[-122.29372,37.897876],[-122.293728,37.897715],[-122.293898,37.89772],[-122.294408,37.897737],[-122.294579,37.897743],[-122.294573,37.897941],[-122.294558,37.898536],[-122.294555,37.898689],[-122.294554,37.898735]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1006","GEOID10":"060014201001006","NAME10":"Block 1006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14453.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898332","INTPTLON10":"-122.295280"},"geometry":{"type":"Polygon","coordinates":[[[-122.294554,37.898735],[-122.294555,37.898689],[-122.294558,37.898536],[-122.294573,37.897941],[-122.294579,37.897743],[-122.294803,37.897747],[-122.295478,37.897759],[-122.295703,37.897763],[-122.295794,37.897999],[-122.295882,37.898223],[-122.2961,37.898695],[-122.296207,37.898925],[-122.29598,37.898925],[-122.295874,37.898911],[-122.295176,37.898818],[-122.294884,37.898779],[-122.294554,37.898735]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1007","GEOID10":"060014201001007","NAME10":"Block 1007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17265.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896623","INTPTLON10":"-122.294972","population":87},"geometry":{"type":"Polygon","coordinates":[[[-122.294579,37.897743],[-122.294615,37.897096],[-122.294631,37.896828],[-122.294639,37.896549],[-122.294709,37.895468],[-122.2947,37.895378],[-122.294677,37.895296],[-122.294628,37.895169],[-122.294395,37.894565],[-122.294444,37.894555],[-122.294591,37.894529],[-122.294641,37.894521],[-122.294853,37.895169],[-122.295037,37.895732],[-122.295218,37.896312],[-122.295397,37.896857],[-122.295482,37.897117],[-122.295557,37.897346],[-122.295703,37.897763],[-122.295478,37.897759],[-122.294803,37.897747],[-122.294579,37.897743]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1008","GEOID10":"060014201001008","NAME10":"Block 1008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":25122.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896227","INTPTLON10":"-122.294213","population":37},"geometry":{"type":"Polygon","coordinates":[[[-122.293728,37.897715],[-122.293755,37.897106],[-122.293837,37.895278],[-122.293865,37.89467],[-122.293971,37.894649],[-122.294289,37.894586],[-122.294395,37.894565],[-122.294628,37.895169],[-122.294677,37.895296],[-122.2947,37.895378],[-122.294709,37.895468],[-122.294639,37.896549],[-122.294631,37.896828],[-122.294615,37.897096],[-122.294579,37.897743],[-122.294408,37.897737],[-122.293898,37.89772],[-122.293728,37.897715]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1009","GEOID10":"060014201001009","NAME10":"Block 1009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24911.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896238","INTPTLON10":"-122.293364","population":44},"geometry":{"type":"Polygon","coordinates":[[[-122.293728,37.897715],[-122.293505,37.897709],[-122.292846,37.897692],[-122.292905,37.896719],[-122.292992,37.894863],[-122.293641,37.894719],[-122.293865,37.89467],[-122.293837,37.895278],[-122.293755,37.897106],[-122.293728,37.897715]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1010","GEOID10":"060014201001010","NAME10":"Block 1010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":2269.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897196","INTPTLON10":"-122.292756","population":2},"geometry":{"type":"Polygon","coordinates":[[[-122.292846,37.897692],[-122.292837,37.897691],[-122.292615,37.897686],[-122.292624,37.89749],[-122.292651,37.896903],[-122.292661,37.896708],[-122.292905,37.896719],[-122.292846,37.897692]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1011","GEOID10":"060014201001011","NAME10":"Block 1011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":4495.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895784","INTPTLON10":"-122.292824","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.292905,37.896719],[-122.292661,37.896708],[-122.292676,37.896339],[-122.292723,37.895234],[-122.29274,37.894866],[-122.292969,37.894863],[-122.292992,37.894863],[-122.292905,37.896719]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1012","GEOID10":"060014201001012","NAME10":"Block 1012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":48606.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895751","INTPTLON10":"-122.291350"},"geometry":{"type":"Polygon","coordinates":[[[-122.289998,37.895835],[-122.290007,37.895625],[-122.290012,37.895525],[-122.290039,37.894995],[-122.290045,37.894895],[-122.290056,37.894786],[-122.290228,37.89479],[-122.290745,37.894805],[-122.290918,37.89481],[-122.291093,37.894815],[-122.291598,37.894832],[-122.29162,37.894834],[-122.291796,37.894851],[-122.291984,37.894854],[-122.292551,37.894863],[-122.29274,37.894866],[-122.292723,37.895234],[-122.292676,37.896339],[-122.292661,37.896708],[-122.292469,37.896704],[-122.291893,37.896692],[-122.291701,37.896689],[-122.291521,37.896682],[-122.290984,37.896663],[-122.290805,37.896657],[-122.290636,37.896652],[-122.290131,37.896638],[-122.289963,37.896634],[-122.28997,37.896474],[-122.28999,37.895994],[-122.289998,37.895835]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1013","GEOID10":"060014201001013","NAME10":"Block 1013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18897.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893834","INTPTLON10":"-122.292309","population":38},"geometry":{"type":"Polygon","coordinates":[[[-122.29274,37.894866],[-122.292551,37.894863],[-122.291984,37.894854],[-122.291796,37.894851],[-122.29181,37.894472],[-122.291855,37.893338],[-122.291858,37.893285],[-122.291877,37.892961],[-122.291877,37.89293],[-122.291877,37.89284],[-122.291878,37.89281],[-122.292067,37.89281],[-122.292633,37.89281],[-122.292823,37.892811],[-122.292806,37.893221],[-122.292756,37.894455],[-122.29274,37.894866]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1014","GEOID10":"060014201001014","NAME10":"Block 1014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":5007.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893843","INTPTLON10":"-122.292906","population":2},"geometry":{"type":"Polygon","coordinates":[[[-122.293071,37.892826],[-122.292992,37.894863],[-122.292969,37.894863],[-122.29274,37.894866],[-122.292756,37.894455],[-122.292806,37.893221],[-122.292823,37.892811],[-122.293043,37.892824],[-122.293071,37.892826]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1015","GEOID10":"060014201001015","NAME10":"Block 1015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16238.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893803","INTPTLON10":"-122.293455","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.292992,37.894863],[-122.293071,37.892826],[-122.293706,37.89284],[-122.293928,37.892845],[-122.293915,37.893209],[-122.293877,37.894305],[-122.293865,37.89467],[-122.293641,37.894719],[-122.292992,37.894863]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1016","GEOID10":"060014201001016","NAME10":"Block 1016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":8255.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893908","INTPTLON10":"-122.294157","population":13},"geometry":{"type":"Polygon","coordinates":[[[-122.293865,37.89467],[-122.293877,37.894305],[-122.293915,37.893209],[-122.293928,37.892845],[-122.293962,37.892846],[-122.294065,37.892849],[-122.2941,37.89285],[-122.294208,37.893184],[-122.29437,37.893682],[-122.294533,37.894186],[-122.294641,37.894521],[-122.294591,37.894529],[-122.294444,37.894555],[-122.294395,37.894565],[-122.294289,37.894586],[-122.293971,37.894649],[-122.293865,37.89467]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1017","GEOID10":"060014201001017","NAME10":"Block 1017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10769.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892188","INTPTLON10":"-122.293477","population":22},"geometry":{"type":"Polygon","coordinates":[[[-122.293139,37.891024],[-122.293649,37.891725],[-122.293834,37.891979],[-122.2941,37.89285],[-122.294065,37.892849],[-122.293962,37.892846],[-122.293928,37.892845],[-122.293706,37.89284],[-122.293071,37.892826],[-122.293139,37.891024]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1018","GEOID10":"060014201001018","NAME10":"Block 1018","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":4538.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891850","INTPTLON10":"-122.292985"},"geometry":{"type":"Polygon","coordinates":[[[-122.293139,37.891024],[-122.293071,37.892826],[-122.293043,37.892824],[-122.292823,37.892811],[-122.292846,37.892392],[-122.292859,37.892176],[-122.292897,37.891137],[-122.292905,37.890921],[-122.292898,37.890719],[-122.293092,37.890965],[-122.293139,37.891024]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"1019","GEOID10":"060014201001019","NAME10":"Block 1019","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":20486.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891713","INTPTLON10":"-122.292394","population":42},"geometry":{"type":"Polygon","coordinates":[[[-122.291921,37.890645],[-122.292115,37.890635],[-122.292699,37.890609],[-122.292894,37.890601],[-122.292894,37.890624],[-122.292897,37.890695],[-122.292898,37.890719],[-122.292905,37.890921],[-122.292897,37.891137],[-122.292859,37.892176],[-122.292846,37.892392],[-122.292823,37.892811],[-122.292633,37.89281],[-122.292067,37.89281],[-122.291878,37.89281],[-122.291892,37.892376],[-122.291936,37.891075],[-122.291946,37.890796],[-122.291943,37.890729],[-122.291921,37.890645]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2000","GEOID10":"060014201002000","NAME10":"Block 2000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":948.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898412","INTPTLON10":"-122.287055"},"geometry":{"type":"Polygon","coordinates":[[[-122.286934,37.898707],[-122.286946,37.898592],[-122.286955,37.898519],[-122.286985,37.89825],[-122.286998,37.898136],[-122.287031,37.898136],[-122.287133,37.898139],[-122.287167,37.89814],[-122.287159,37.898239],[-122.287147,37.898437],[-122.28714,37.898539],[-122.287135,37.89864],[-122.287106,37.898649],[-122.286977,37.898692],[-122.286934,37.898707]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2001","GEOID10":"060014201002001","NAME10":"Block 2001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":2708.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897338","INTPTLON10":"-122.287125","population":9},"geometry":{"type":"Polygon","coordinates":[[[-122.286998,37.898136],[-122.287014,37.89782],[-122.287061,37.896872],[-122.287078,37.896557],[-122.287114,37.896558],[-122.287223,37.896561],[-122.28726,37.896563],[-122.287241,37.896878],[-122.287185,37.897824],[-122.287167,37.89814],[-122.287133,37.898139],[-122.287031,37.898136],[-122.286998,37.898136]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2002","GEOID10":"060014201002002","NAME10":"Block 2002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16183.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897500","INTPTLON10":"-122.287634","population":35},"geometry":{"type":"Polygon","coordinates":[[[-122.28814,37.896582],[-122.288099,37.89793],[-122.288092,37.89814],[-122.28796,37.898212],[-122.28758,37.898425],[-122.287356,37.898536],[-122.28718,37.898625],[-122.28715,37.898635],[-122.287135,37.89864],[-122.28714,37.898539],[-122.287147,37.898437],[-122.287159,37.898239],[-122.287167,37.89814],[-122.287185,37.897824],[-122.287241,37.896878],[-122.28726,37.896563],[-122.28745,37.896567],[-122.28802,37.896579],[-122.28814,37.896582]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2003","GEOID10":"060014201002003","NAME10":"Block 2003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1027.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897345","INTPTLON10":"-122.288150"},"geometry":{"type":"Polygon","coordinates":[[[-122.288161,37.898102],[-122.288092,37.89814],[-122.288099,37.89793],[-122.28814,37.896582],[-122.288211,37.896582],[-122.2882,37.896885],[-122.28817,37.897797],[-122.288168,37.897886],[-122.288161,37.898102]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2004","GEOID10":"060014201002004","NAME10":"Block 2004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11206.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897263","INTPTLON10":"-122.288602","population":16},"geometry":{"type":"Polygon","coordinates":[[[-122.288161,37.898102],[-122.288168,37.897886],[-122.28817,37.897797],[-122.2882,37.896885],[-122.288211,37.896582],[-122.288386,37.896587],[-122.288914,37.896604],[-122.28909,37.89661],[-122.28907,37.896861],[-122.289013,37.897619],[-122.289008,37.897701],[-122.288996,37.897874],[-122.288869,37.897886],[-122.28848,37.897925],[-122.288326,37.89801],[-122.288161,37.898102]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2005","GEOID10":"060014201002005","NAME10":"Block 2005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10320.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897228","INTPTLON10":"-122.289472","population":17},"geometry":{"type":"Polygon","coordinates":[[[-122.288996,37.897874],[-122.289008,37.897701],[-122.289013,37.897619],[-122.28907,37.896861],[-122.28909,37.89661],[-122.289264,37.896614],[-122.289788,37.896629],[-122.289963,37.896634],[-122.289941,37.896871],[-122.289881,37.897585],[-122.289872,37.897693],[-122.289862,37.897825],[-122.289722,37.897825],[-122.28948,37.897825],[-122.289223,37.897851],[-122.289058,37.897868],[-122.288996,37.897874]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2006","GEOID10":"060014201002006","NAME10":"Block 2006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15730.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895696","INTPTLON10":"-122.289570","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.289184,37.894754],[-122.289358,37.89476],[-122.289881,37.894779],[-122.290056,37.894786],[-122.290045,37.894895],[-122.290039,37.894995],[-122.290012,37.895525],[-122.290007,37.895625],[-122.289998,37.895835],[-122.28999,37.895994],[-122.28997,37.896474],[-122.289963,37.896634],[-122.289788,37.896629],[-122.289264,37.896614],[-122.28909,37.89661],[-122.289108,37.896238],[-122.289164,37.895125],[-122.289184,37.894754]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2007","GEOID10":"060014201002007","NAME10":"Block 2007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15930.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895669","INTPTLON10":"-122.288696","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.28909,37.89661],[-122.288914,37.896604],[-122.288386,37.896587],[-122.288211,37.896582],[-122.288229,37.896212],[-122.288283,37.895104],[-122.288302,37.894735],[-122.288478,37.894738],[-122.289007,37.89475],[-122.289184,37.894754],[-122.289164,37.895125],[-122.289108,37.896238],[-122.28909,37.89661]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2008","GEOID10":"060014201002008","NAME10":"Block 2008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1214.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895673","INTPTLON10":"-122.288221"},"geometry":{"type":"Polygon","coordinates":[[[-122.288211,37.896582],[-122.28814,37.896582],[-122.288238,37.89473],[-122.288302,37.894735],[-122.288283,37.895104],[-122.288229,37.896212],[-122.288211,37.896582]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2009","GEOID10":"060014201002009","NAME10":"Block 2009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15974.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895646","INTPTLON10":"-122.287747","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.28814,37.896582],[-122.28802,37.896579],[-122.28745,37.896567],[-122.28726,37.896563],[-122.287278,37.896193],[-122.287332,37.895085],[-122.287351,37.894716],[-122.287541,37.894719],[-122.288111,37.894728],[-122.288238,37.89473],[-122.28814,37.896582]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2010","GEOID10":"060014201002010","NAME10":"Block 2010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":3628.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895607","INTPTLON10":"-122.287205","population":10},"geometry":{"type":"Polygon","coordinates":[[[-122.287078,37.896557],[-122.287088,37.896187],[-122.28712,37.895078],[-122.287132,37.894709],[-122.287175,37.89471],[-122.287307,37.894714],[-122.287351,37.894716],[-122.287332,37.895085],[-122.287278,37.896193],[-122.28726,37.896563],[-122.287223,37.896561],[-122.287114,37.896558],[-122.287078,37.896557]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2011","GEOID10":"060014201002011","NAME10":"Block 2011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":4556.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893731","INTPTLON10":"-122.287275","population":11},"geometry":{"type":"Polygon","coordinates":[[[-122.287132,37.894709],[-122.28714,37.894329],[-122.287163,37.893189],[-122.287172,37.89281],[-122.287224,37.89281],[-122.28738,37.89281],[-122.287432,37.89281],[-122.287422,37.893191],[-122.287416,37.89345],[-122.28737,37.894334],[-122.287351,37.894716],[-122.287307,37.894714],[-122.287175,37.89471],[-122.287132,37.894709]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2012","GEOID10":"060014201002012","NAME10":"Block 2012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16253.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893780","INTPTLON10":"-122.287836","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.288317,37.892856],[-122.288238,37.89473],[-122.288111,37.894728],[-122.287541,37.894719],[-122.287351,37.894716],[-122.28737,37.894334],[-122.287416,37.89345],[-122.287422,37.893191],[-122.287432,37.89281],[-122.287609,37.892825],[-122.287623,37.892825],[-122.2882,37.89285],[-122.288317,37.892856]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2013","GEOID10":"060014201002013","NAME10":"Block 2013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1269.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893772","INTPTLON10":"-122.288313"},"geometry":{"type":"Polygon","coordinates":[[[-122.288238,37.89473],[-122.288317,37.892856],[-122.28835,37.892856],[-122.288392,37.892863],[-122.288373,37.893237],[-122.28832,37.89436],[-122.288302,37.894735],[-122.288238,37.89473]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2014","GEOID10":"060014201002014","NAME10":"Block 2014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16117.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893809","INTPTLON10":"-122.288787","population":32},"geometry":{"type":"Polygon","coordinates":[[[-122.288302,37.894735],[-122.28832,37.89436],[-122.288373,37.893237],[-122.288392,37.892863],[-122.288568,37.892867],[-122.289097,37.892882],[-122.289274,37.892887],[-122.289255,37.89326],[-122.289202,37.89438],[-122.289184,37.894754],[-122.289007,37.89475],[-122.288478,37.894738],[-122.288302,37.894735]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"2015","GEOID10":"060014201002015","NAME10":"Block 2015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15921.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893833","INTPTLON10":"-122.289663","population":35},"geometry":{"type":"Polygon","coordinates":[[[-122.289274,37.892887],[-122.289447,37.89289],[-122.289966,37.892899],[-122.29014,37.892903],[-122.290122,37.893279],[-122.290072,37.894409],[-122.290056,37.894786],[-122.289881,37.894779],[-122.289358,37.89476],[-122.289184,37.894754],[-122.289202,37.89438],[-122.289255,37.89326],[-122.289274,37.892887]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3000","GEOID10":"060014201003000","NAME10":"Block 3000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15665.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893860","INTPTLON10":"-122.290522","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.290056,37.894786],[-122.290072,37.894409],[-122.290122,37.893279],[-122.29014,37.892903],[-122.290308,37.892908],[-122.290813,37.892925],[-122.290982,37.892931],[-122.290968,37.893306],[-122.29093,37.894434],[-122.290918,37.89481],[-122.290745,37.894805],[-122.290228,37.89479],[-122.290056,37.894786]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3001","GEOID10":"060014201003001","NAME10":"Block 3001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16246.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893883","INTPTLON10":"-122.291391","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.291796,37.894851],[-122.29162,37.894834],[-122.291598,37.894832],[-122.291093,37.894815],[-122.290918,37.89481],[-122.29093,37.894434],[-122.290968,37.893306],[-122.290982,37.892931],[-122.29116,37.892937],[-122.291698,37.892955],[-122.291877,37.892961],[-122.291858,37.893285],[-122.291855,37.893338],[-122.29181,37.894472],[-122.291796,37.894851]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3002","GEOID10":"060014201003002","NAME10":"Block 3002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19544.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891804","INTPTLON10":"-122.291474","population":38},"geometry":{"type":"Polygon","coordinates":[[[-122.291921,37.890645],[-122.291943,37.890729],[-122.291946,37.890796],[-122.291936,37.891075],[-122.291892,37.892376],[-122.291878,37.89281],[-122.291877,37.89284],[-122.291877,37.89293],[-122.291877,37.892961],[-122.291698,37.892955],[-122.29116,37.892937],[-122.290982,37.892931],[-122.29102,37.892483],[-122.291024,37.89244],[-122.29105,37.891137],[-122.29106,37.890689],[-122.291232,37.890679],[-122.291748,37.890653],[-122.291921,37.890645]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3003","GEOID10":"060014201003003","NAME10":"Block 3003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18064.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891823","INTPTLON10":"-122.290615","population":32},"geometry":{"type":"Polygon","coordinates":[[[-122.290982,37.892931],[-122.290813,37.892925],[-122.290308,37.892908],[-122.29014,37.892903],[-122.290162,37.892467],[-122.290228,37.89116],[-122.290251,37.890725],[-122.290358,37.89072],[-122.290682,37.890709],[-122.290791,37.890706],[-122.290844,37.890702],[-122.291006,37.890692],[-122.29106,37.890689],[-122.29105,37.891137],[-122.291024,37.89244],[-122.29102,37.892483],[-122.290982,37.892931]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3004","GEOID10":"060014201003004","NAME10":"Block 3004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18095.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891824","INTPTLON10":"-122.289764","population":41},"geometry":{"type":"Polygon","coordinates":[[[-122.29014,37.892903],[-122.289966,37.892899],[-122.289447,37.89289],[-122.289274,37.892887],[-122.289296,37.892464],[-122.289362,37.891196],[-122.289385,37.890774],[-122.289485,37.890769],[-122.289786,37.890756],[-122.289887,37.890752],[-122.289959,37.890746],[-122.290178,37.89073],[-122.290251,37.890725],[-122.290228,37.89116],[-122.290162,37.892467],[-122.29014,37.892903]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3005","GEOID10":"060014201003005","NAME10":"Block 3005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16537.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891906","INTPTLON10":"-122.288910","population":29},"geometry":{"type":"Polygon","coordinates":[[[-122.288392,37.892863],[-122.28841,37.892428],[-122.288448,37.891575],[-122.288456,37.891528],[-122.288475,37.891476],[-122.288517,37.891402],[-122.288685,37.891199],[-122.288694,37.891189],[-122.288746,37.891135],[-122.288786,37.891077],[-122.288809,37.891023],[-122.288829,37.890933],[-122.288847,37.890809],[-122.288954,37.890801],[-122.289277,37.890781],[-122.289385,37.890774],[-122.289362,37.891196],[-122.289296,37.892464],[-122.289274,37.892887],[-122.289097,37.892882],[-122.288568,37.892867],[-122.288392,37.892863]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3006","GEOID10":"060014201003006","NAME10":"Block 3006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1509.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892606","INTPTLON10":"-122.288382"},"geometry":{"type":"Polygon","coordinates":[[[-122.288317,37.892856],[-122.28838,37.891572],[-122.288401,37.891473],[-122.288438,37.891395],[-122.288481,37.891327],[-122.288619,37.891164],[-122.28871,37.891072],[-122.288738,37.89102],[-122.288751,37.890966],[-122.28877,37.890812],[-122.288847,37.890809],[-122.288829,37.890933],[-122.288809,37.891023],[-122.288786,37.891077],[-122.288746,37.891135],[-122.288694,37.891189],[-122.288685,37.891199],[-122.288517,37.891402],[-122.288475,37.891476],[-122.288456,37.891528],[-122.288448,37.891575],[-122.28841,37.892428],[-122.288392,37.892863],[-122.28835,37.892856],[-122.288317,37.892856]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3007","GEOID10":"060014201003007","NAME10":"Block 3007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18637.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891785","INTPTLON10":"-122.287969","population":28},"geometry":{"type":"Polygon","coordinates":[[[-122.28877,37.890812],[-122.288751,37.890966],[-122.288738,37.89102],[-122.28871,37.891072],[-122.288619,37.891164],[-122.288481,37.891327],[-122.288438,37.891395],[-122.288401,37.891473],[-122.28838,37.891572],[-122.288317,37.892856],[-122.2882,37.89285],[-122.287623,37.892825],[-122.287609,37.892825],[-122.287432,37.89281],[-122.287448,37.892424],[-122.287498,37.891267],[-122.287516,37.890882],[-122.287553,37.890879],[-122.287668,37.890874],[-122.287706,37.890872],[-122.287934,37.890859],[-122.288618,37.890821],[-122.288767,37.890813],[-122.28877,37.890812]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420100","BLOCKCE10":"3008","GEOID10":"060014201003008","NAME10":"Block 3008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":5620.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891809","INTPTLON10":"-122.287323","population":12},"geometry":{"type":"Polygon","coordinates":[[[-122.287432,37.89281],[-122.28738,37.89281],[-122.287224,37.89281],[-122.287172,37.89281],[-122.287172,37.89243],[-122.287172,37.891291],[-122.287172,37.890912],[-122.28724,37.890905],[-122.287447,37.890888],[-122.287516,37.890882],[-122.287498,37.891267],[-122.287448,37.892424],[-122.287432,37.89281]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1000","GEOID10":"060014202001000","NAME10":"Block 1000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":13452.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898271","INTPTLON10":"-122.296474","population":113},"geometry":{"type":"Polygon","coordinates":[[[-122.295703,37.897763],[-122.295745,37.897753],[-122.295873,37.897727],[-122.295916,37.897719],[-122.296087,37.897683],[-122.296603,37.897579],[-122.296775,37.897544],[-122.296859,37.897814],[-122.297113,37.898626],[-122.297144,37.898723],[-122.297162,37.898783],[-122.297197,37.898898],[-122.297,37.898922],[-122.29698,37.898925],[-122.296405,37.898925],[-122.296338,37.898925],[-122.296207,37.898925],[-122.2961,37.898695],[-122.295882,37.898223],[-122.295794,37.897999],[-122.295703,37.897763]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1001","GEOID10":"060014202001001","NAME10":"Block 1001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11928.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.898151","INTPTLON10":"-122.297410","population":49},"geometry":{"type":"Polygon","coordinates":[[[-122.297197,37.898898],[-122.297162,37.898783],[-122.297144,37.898723],[-122.297113,37.898626],[-122.296859,37.897814],[-122.296775,37.897544],[-122.296942,37.897512],[-122.297443,37.897418],[-122.297611,37.897387],[-122.297697,37.897656],[-122.297958,37.898466],[-122.298008,37.89862],[-122.298024,37.898671],[-122.298044,37.898737],[-122.297879,37.898791],[-122.29778,37.898825],[-122.297368,37.898876],[-122.297197,37.898898]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1002","GEOID10":"060014202001002","NAME10":"Block 1002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11372.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897951","INTPTLON10":"-122.298233","population":68},"geometry":{"type":"Polygon","coordinates":[[[-122.298044,37.898737],[-122.298024,37.898671],[-122.298008,37.89862],[-122.297958,37.898466],[-122.297697,37.897656],[-122.297611,37.897387],[-122.297777,37.89735],[-122.298276,37.897243],[-122.298443,37.897207],[-122.298525,37.89746],[-122.298771,37.898221],[-122.298804,37.898322],[-122.298828,37.898395],[-122.298855,37.898475],[-122.298691,37.898521],[-122.29868,37.898525],[-122.298205,37.898683],[-122.298044,37.898737]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1003","GEOID10":"060014202001003","NAME10":"Block 1003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10975.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897749","INTPTLON10":"-122.299069","population":62},"geometry":{"type":"Polygon","coordinates":[[[-122.298855,37.898475],[-122.298828,37.898395],[-122.298804,37.898322],[-122.298771,37.898221],[-122.298525,37.89746],[-122.298443,37.897207],[-122.29861,37.897174],[-122.299111,37.897077],[-122.299279,37.897045],[-122.299366,37.897293],[-122.299625,37.898034],[-122.299627,37.898039],[-122.299684,37.898193],[-122.299718,37.898287],[-122.299541,37.898306],[-122.29938,37.898325],[-122.299025,37.898426],[-122.298855,37.898475]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1004","GEOID10":"060014202001004","NAME10":"Block 1004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11306.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897601","INTPTLON10":"-122.299928","population":56},"geometry":{"type":"Polygon","coordinates":[[[-122.299718,37.898287],[-122.299684,37.898193],[-122.299627,37.898039],[-122.299625,37.898034],[-122.299366,37.897293],[-122.299279,37.897045],[-122.299447,37.897009],[-122.299955,37.896901],[-122.300124,37.896866],[-122.300217,37.897152],[-122.30049,37.89799],[-122.300497,37.898013],[-122.300522,37.898093],[-122.300587,37.898302],[-122.300415,37.898259],[-122.30028,37.898225],[-122.299893,37.898267],[-122.299718,37.898287]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1005","GEOID10":"060014202001005","NAME10":"Block 1005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14639.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897606","INTPTLON10":"-122.300839","population":4},"geometry":{"type":"Polygon","coordinates":[[[-122.301587,37.898525],[-122.301517,37.898525],[-122.301479,37.898525],[-122.300819,37.89836],[-122.300587,37.898302],[-122.300522,37.898093],[-122.300497,37.898013],[-122.30049,37.89799],[-122.300217,37.897152],[-122.300124,37.896866],[-122.300321,37.896826],[-122.300915,37.89671],[-122.300975,37.896699],[-122.30147,37.898191],[-122.301543,37.898411],[-122.301587,37.898525]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1006","GEOID10":"060014202001006","NAME10":"Block 1006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1461.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897374","INTPTLON10":"-122.301248"},"geometry":{"type":"Polygon","coordinates":[[[-122.301625,37.898525],[-122.301587,37.898525],[-122.301543,37.898411],[-122.30147,37.898191],[-122.300975,37.896699],[-122.301114,37.896678],[-122.30121,37.897048],[-122.301503,37.898162],[-122.301527,37.898252],[-122.301572,37.898423],[-122.301625,37.898525]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1007","GEOID10":"060014202001007","NAME10":"Block 1007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":914.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896362","INTPTLON10":"-122.300941"},"geometry":{"type":"Polygon","coordinates":[[[-122.301114,37.896678],[-122.300975,37.896699],[-122.300771,37.896045],[-122.300903,37.896019],[-122.300945,37.89615],[-122.301071,37.896546],[-122.301114,37.896678]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1008","GEOID10":"060014202001008","NAME10":"Block 1008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14452.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895967","INTPTLON10":"-122.300291","population":11},"geometry":{"type":"Polygon","coordinates":[[[-122.300771,37.896045],[-122.300975,37.896699],[-122.300915,37.89671],[-122.300321,37.896826],[-122.300124,37.896866],[-122.300019,37.896541],[-122.299707,37.895569],[-122.299604,37.895245],[-122.299801,37.895204],[-122.300395,37.895083],[-122.300464,37.89507],[-122.300771,37.896045]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1009","GEOID10":"060014202001009","NAME10":"Block 1009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14237.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896143","INTPTLON10":"-122.299442","population":47},"geometry":{"type":"Polygon","coordinates":[[[-122.299279,37.897045],[-122.299176,37.896719],[-122.298867,37.895741],[-122.298764,37.895415],[-122.298932,37.895381],[-122.299436,37.895279],[-122.299604,37.895245],[-122.299707,37.895569],[-122.300019,37.896541],[-122.300124,37.896866],[-122.299955,37.896901],[-122.299447,37.897009],[-122.299279,37.897045]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1010","GEOID10":"060014202001010","NAME10":"Block 1010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14169.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896311","INTPTLON10":"-122.298601","population":32},"geometry":{"type":"Polygon","coordinates":[[[-122.298443,37.897207],[-122.298338,37.896882],[-122.298025,37.89591],[-122.297921,37.895586],[-122.298089,37.895551],[-122.298595,37.895449],[-122.298764,37.895415],[-122.298867,37.895741],[-122.299176,37.896719],[-122.299279,37.897045],[-122.299111,37.897077],[-122.29861,37.897174],[-122.298443,37.897207]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1011","GEOID10":"060014202001011","NAME10":"Block 1011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14193.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896481","INTPTLON10":"-122.297762","population":32},"geometry":{"type":"Polygon","coordinates":[[[-122.297611,37.897387],[-122.297504,37.897059],[-122.297185,37.896079],[-122.297079,37.895752],[-122.297247,37.895718],[-122.297752,37.895619],[-122.297921,37.895586],[-122.298025,37.89591],[-122.298338,37.896882],[-122.298443,37.897207],[-122.298276,37.897243],[-122.297777,37.89735],[-122.297611,37.897387]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1012","GEOID10":"060014202001012","NAME10":"Block 1012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14000.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896653","INTPTLON10":"-122.296931","population":29},"geometry":{"type":"Polygon","coordinates":[[[-122.296258,37.895928],[-122.296422,37.895892],[-122.296914,37.895787],[-122.297079,37.895752],[-122.297185,37.896079],[-122.297504,37.897059],[-122.297611,37.897387],[-122.297443,37.897418],[-122.296942,37.897512],[-122.296775,37.897544],[-122.296671,37.89722],[-122.296361,37.896251],[-122.296258,37.895928]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1013","GEOID10":"060014202001013","NAME10":"Block 1013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14541.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896818","INTPTLON10":"-122.296083","population":27},"geometry":{"type":"Polygon","coordinates":[[[-122.295916,37.897719],[-122.29581,37.897392],[-122.295495,37.896411],[-122.295391,37.896085],[-122.295564,37.896053],[-122.296084,37.895959],[-122.296258,37.895928],[-122.296361,37.896251],[-122.296671,37.89722],[-122.296775,37.897544],[-122.296603,37.897579],[-122.296087,37.897683],[-122.295916,37.897719]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"1014","GEOID10":"060014202001014","NAME10":"Block 1014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1324.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895545","INTPTLON10":"-122.300683"},"geometry":{"type":"Polygon","coordinates":[[[-122.300771,37.896045],[-122.300464,37.89507],[-122.300593,37.895043],[-122.300655,37.895238],[-122.300841,37.895823],[-122.300903,37.896019],[-122.300771,37.896045]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2000","GEOID10":"060014202002000","NAME10":"Block 2000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":7737.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.896094","INTPTLON10":"-122.295274"},"geometry":{"type":"Polygon","coordinates":[[[-122.294881,37.894468],[-122.294983,37.894791],[-122.295289,37.895761],[-122.295391,37.896085],[-122.295495,37.896411],[-122.29581,37.897392],[-122.295916,37.897719],[-122.295873,37.897727],[-122.295745,37.897753],[-122.295703,37.897763],[-122.295557,37.897346],[-122.295482,37.897117],[-122.295397,37.896857],[-122.295218,37.896312],[-122.295037,37.895732],[-122.294853,37.895169],[-122.294641,37.894521],[-122.294688,37.89451],[-122.294833,37.894478],[-122.294881,37.894468]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2001","GEOID10":"060014202002001","NAME10":"Block 2001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":3995.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893680","INTPTLON10":"-122.294492"},"geometry":{"type":"Polygon","coordinates":[[[-122.2941,37.89285],[-122.294147,37.89285],[-122.294234,37.892851],[-122.29429,37.892845],[-122.294338,37.892841],[-122.294446,37.893166],[-122.294772,37.894142],[-122.294881,37.894468],[-122.294833,37.894478],[-122.294688,37.89451],[-122.294641,37.894521],[-122.294533,37.894186],[-122.29437,37.893682],[-122.294208,37.893184],[-122.2941,37.89285]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2002","GEOID10":"060014202002002","NAME10":"Block 2002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14523.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893566","INTPTLON10":"-122.295039","population":32},"geometry":{"type":"Polygon","coordinates":[[[-122.294881,37.894468],[-122.294772,37.894142],[-122.294446,37.893166],[-122.294338,37.892841],[-122.294476,37.892826],[-122.294515,37.892817],[-122.29504,37.892706],[-122.295215,37.89267],[-122.295317,37.892994],[-122.295626,37.893968],[-122.295729,37.894293],[-122.295559,37.894327],[-122.29505,37.894432],[-122.294881,37.894468]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2003","GEOID10":"060014202002003","NAME10":"Block 2003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14449.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895194","INTPTLON10":"-122.295566","population":28},"geometry":{"type":"Polygon","coordinates":[[[-122.295391,37.896085],[-122.295289,37.895761],[-122.294983,37.894791],[-122.294881,37.894468],[-122.29505,37.894432],[-122.295559,37.894327],[-122.295729,37.894293],[-122.295834,37.89462],[-122.296152,37.895601],[-122.296258,37.895928],[-122.296084,37.895959],[-122.295564,37.896053],[-122.295391,37.896085]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2004","GEOID10":"060014202002004","NAME10":"Block 2004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14101.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895019","INTPTLON10":"-122.296405","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.296559,37.894113],[-122.296662,37.89444],[-122.296974,37.895424],[-122.297079,37.895752],[-122.296914,37.895787],[-122.296422,37.895892],[-122.296258,37.895928],[-122.296152,37.895601],[-122.295834,37.89462],[-122.295729,37.894293],[-122.295895,37.894257],[-122.296394,37.894149],[-122.29647,37.894126],[-122.296559,37.894113]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2005","GEOID10":"060014202002005","NAME10":"Block 2005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14270.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894854","INTPTLON10":"-122.297242","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.297079,37.895752],[-122.296974,37.895424],[-122.296662,37.89444],[-122.296559,37.894113],[-122.29668,37.894103],[-122.296731,37.894094],[-122.296759,37.89409],[-122.297241,37.89399],[-122.297411,37.893956],[-122.297512,37.894282],[-122.297819,37.89526],[-122.297921,37.895586],[-122.297752,37.895619],[-122.297247,37.895718],[-122.297079,37.895752]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2006","GEOID10":"060014202002006","NAME10":"Block 2006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14158.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893232","INTPTLON10":"-122.296730","population":32},"geometry":{"type":"Polygon","coordinates":[[[-122.296056,37.892502],[-122.296222,37.892468],[-122.296721,37.892368],[-122.296888,37.892335],[-122.296992,37.892659],[-122.297306,37.893631],[-122.297411,37.893956],[-122.297241,37.89399],[-122.296759,37.89409],[-122.296731,37.894094],[-122.29668,37.894103],[-122.296559,37.894113],[-122.296458,37.89379],[-122.296156,37.892824],[-122.296056,37.892502]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2007","GEOID10":"060014202002007","NAME10":"Block 2007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14053.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893393","INTPTLON10":"-122.295888","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.296056,37.892502],[-122.296156,37.892824],[-122.296458,37.89379],[-122.296559,37.894113],[-122.29647,37.894126],[-122.296394,37.894149],[-122.295895,37.894257],[-122.295729,37.894293],[-122.295626,37.893968],[-122.295317,37.892994],[-122.295215,37.89267],[-122.295383,37.892636],[-122.295887,37.892535],[-122.296056,37.892502]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2008","GEOID10":"060014202002008","NAME10":"Block 2008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18377.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891538","INTPTLON10":"-122.295286","population":50},"geometry":{"type":"Polygon","coordinates":[[[-122.294504,37.890519],[-122.294681,37.890508],[-122.295212,37.890478],[-122.29539,37.890468],[-122.295523,37.890874],[-122.295922,37.892095],[-122.296056,37.892502],[-122.295887,37.892535],[-122.295383,37.892636],[-122.295215,37.89267],[-122.295072,37.892239],[-122.294646,37.890949],[-122.294504,37.890519]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2009","GEOID10":"060014202002009","NAME10":"Block 2009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19818.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891658","INTPTLON10":"-122.294418","population":57},"geometry":{"type":"Polygon","coordinates":[[[-122.293622,37.890561],[-122.293645,37.890559],[-122.293714,37.890556],[-122.293738,37.890555],[-122.29377,37.890552],[-122.293869,37.890547],[-122.293902,37.890546],[-122.294022,37.890541],[-122.294243,37.890533],[-122.294383,37.890525],[-122.294504,37.890519],[-122.294646,37.890949],[-122.295072,37.892239],[-122.295215,37.89267],[-122.29504,37.892706],[-122.294515,37.892817],[-122.294476,37.892826],[-122.294338,37.892841],[-122.294194,37.892385],[-122.293765,37.891017],[-122.293622,37.890561]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2010","GEOID10":"060014202002010","NAME10":"Block 2010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":8445.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891485","INTPTLON10":"-122.293695"},"geometry":{"type":"Polygon","coordinates":[[[-122.293139,37.891024],[-122.293159,37.890585],[-122.293288,37.890575],[-122.293302,37.890574],[-122.293364,37.890568],[-122.293387,37.890567],[-122.293622,37.890561],[-122.293765,37.891017],[-122.294194,37.892385],[-122.294338,37.892841],[-122.29429,37.892845],[-122.294234,37.892851],[-122.294147,37.89285],[-122.2941,37.89285],[-122.293834,37.891979],[-122.293649,37.891725],[-122.293139,37.891024]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2011","GEOID10":"060014202002011","NAME10":"Block 2011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":700.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890745","INTPTLON10":"-122.293047"},"geometry":{"type":"Polygon","coordinates":[[[-122.293159,37.890585],[-122.293139,37.891024],[-122.293092,37.890965],[-122.292898,37.890719],[-122.292897,37.890695],[-122.292894,37.890624],[-122.292894,37.890601],[-122.292992,37.890595],[-122.293159,37.890585]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"2012","GEOID10":"060014202002012","NAME10":"Block 2012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17230.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891425","INTPTLON10":"-122.296144","population":51},"geometry":{"type":"Polygon","coordinates":[[[-122.296056,37.892502],[-122.295922,37.892095],[-122.295523,37.890874],[-122.29539,37.890468],[-122.295564,37.890454],[-122.296087,37.890415],[-122.296262,37.890403],[-122.296387,37.890789],[-122.296762,37.891948],[-122.296888,37.892335],[-122.296721,37.892368],[-122.296222,37.892468],[-122.296056,37.892502]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3000","GEOID10":"060014202003000","NAME10":"Block 3000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14087.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894692","INTPTLON10":"-122.298085","population":46},"geometry":{"type":"Polygon","coordinates":[[[-122.297921,37.895586],[-122.297819,37.89526],[-122.297512,37.894282],[-122.297411,37.893956],[-122.297578,37.893925],[-122.29808,37.893836],[-122.298248,37.893806],[-122.298351,37.894127],[-122.29866,37.895093],[-122.298764,37.895415],[-122.298595,37.895449],[-122.298089,37.895551],[-122.297921,37.895586]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3001","GEOID10":"060014202003001","NAME10":"Block 3001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14042.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894523","INTPTLON10":"-122.298922","population":46},"geometry":{"type":"Polygon","coordinates":[[[-122.298764,37.895415],[-122.29866,37.895093],[-122.298351,37.894127],[-122.298248,37.893806],[-122.298412,37.893768],[-122.298907,37.893658],[-122.299072,37.893621],[-122.299178,37.893945],[-122.299497,37.89492],[-122.299604,37.895245],[-122.299436,37.895279],[-122.298932,37.895381],[-122.298764,37.895415]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3002","GEOID10":"060014202003002","NAME10":"Block 3002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14593.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894345","INTPTLON10":"-122.299770","population":57},"geometry":{"type":"Polygon","coordinates":[[[-122.299947,37.893455],[-122.300464,37.89507],[-122.300395,37.895083],[-122.299801,37.895204],[-122.299604,37.895245],[-122.299497,37.89492],[-122.299178,37.893945],[-122.299072,37.893621],[-122.299271,37.893582],[-122.29987,37.893469],[-122.299947,37.893455]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3003","GEOID10":"060014202003003","NAME10":"Block 3003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":2234.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894252","INTPTLON10":"-122.300273"},"geometry":{"type":"Polygon","coordinates":[[[-122.300464,37.89507],[-122.299947,37.893455],[-122.300069,37.893425],[-122.300119,37.893571],[-122.300269,37.894009],[-122.30032,37.894156],[-122.300374,37.894333],[-122.300538,37.894865],[-122.300593,37.895043],[-122.300464,37.89507]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3004","GEOID10":"060014202003004","NAME10":"Block 3004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1457.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892870","INTPTLON10":"-122.299826","population":12},"geometry":{"type":"Polygon","coordinates":[[[-122.299947,37.893455],[-122.299584,37.892313],[-122.299706,37.892285],[-122.299778,37.892513],[-122.299996,37.893197],[-122.300069,37.893425],[-122.299947,37.893455]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3005","GEOID10":"060014202003005","NAME10":"Block 3005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14799.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892719","INTPTLON10":"-122.299249","population":10},"geometry":{"type":"Polygon","coordinates":[[[-122.299584,37.892313],[-122.299947,37.893455],[-122.29987,37.893469],[-122.299271,37.893582],[-122.299072,37.893621],[-122.298968,37.893293],[-122.298657,37.892312],[-122.298554,37.891985],[-122.298751,37.891946],[-122.299342,37.89183],[-122.299416,37.891816],[-122.299584,37.892313]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3006","GEOID10":"060014202003006","NAME10":"Block 3006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14044.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892896","INTPTLON10":"-122.298402","population":53},"geometry":{"type":"Polygon","coordinates":[[[-122.298248,37.893806],[-122.298145,37.893479],[-122.297838,37.892498],[-122.297736,37.892171],[-122.297899,37.892133],[-122.29839,37.892022],[-122.298554,37.891985],[-122.298657,37.892312],[-122.298968,37.893293],[-122.299072,37.893621],[-122.298907,37.893658],[-122.298412,37.893768],[-122.298248,37.893806]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3007","GEOID10":"060014202003007","NAME10":"Block 3007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14185.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893063","INTPTLON10":"-122.297570","population":41},"geometry":{"type":"Polygon","coordinates":[[[-122.297411,37.893956],[-122.297306,37.893631],[-122.296992,37.892659],[-122.296888,37.892335],[-122.297057,37.892301],[-122.297566,37.892203],[-122.297736,37.892171],[-122.297838,37.892498],[-122.298145,37.893479],[-122.298248,37.893806],[-122.29808,37.893836],[-122.297578,37.893925],[-122.297411,37.893956]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3008","GEOID10":"060014202003008","NAME10":"Block 3008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16353.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891320","INTPTLON10":"-122.297001","population":51},"geometry":{"type":"Polygon","coordinates":[[[-122.296888,37.892335],[-122.296762,37.891948],[-122.296387,37.890789],[-122.296262,37.890403],[-122.296437,37.890394],[-122.296963,37.890371],[-122.297139,37.890363],[-122.297258,37.890724],[-122.297616,37.891809],[-122.297736,37.892171],[-122.297566,37.892203],[-122.297057,37.892301],[-122.296888,37.892335]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3009","GEOID10":"060014202003009","NAME10":"Block 3009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15100.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891205","INTPTLON10":"-122.297856","population":84},"geometry":{"type":"Polygon","coordinates":[[[-122.297736,37.892171],[-122.297616,37.891809],[-122.297258,37.890724],[-122.297139,37.890363],[-122.297316,37.890353],[-122.297849,37.890327],[-122.298027,37.890319],[-122.298132,37.890652],[-122.298448,37.891651],[-122.298554,37.891985],[-122.29839,37.892022],[-122.297899,37.892133],[-122.297736,37.892171]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3010","GEOID10":"060014202003010","NAME10":"Block 3010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14291.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891101","INTPTLON10":"-122.298726","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.298929,37.890275],[-122.299416,37.891816],[-122.299342,37.89183],[-122.298751,37.891946],[-122.298554,37.891985],[-122.298448,37.891651],[-122.298132,37.890652],[-122.298027,37.890319],[-122.298232,37.890312],[-122.298514,37.890304],[-122.298724,37.890294],[-122.298846,37.890282],[-122.298929,37.890275]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3011","GEOID10":"060014202003011","NAME10":"Block 3011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1922.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891043","INTPTLON10":"-122.299235"},"geometry":{"type":"Polygon","coordinates":[[[-122.299416,37.891816],[-122.298929,37.890275],[-122.299051,37.890264],[-122.299148,37.890569],[-122.299442,37.891486],[-122.29954,37.891792],[-122.299416,37.891816]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420200","BLOCKCE10":"3012","GEOID10":"060014202003012","NAME10":"Block 3012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":636.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892051","INTPTLON10":"-122.299561"},"geometry":{"type":"Polygon","coordinates":[[[-122.299706,37.892285],[-122.299584,37.892313],[-122.299416,37.891816],[-122.29954,37.891792],[-122.299573,37.89189],[-122.299672,37.892186],[-122.299706,37.892285]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1000","GEOID10":"060014203001000","NAME10":"Block 1000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16605.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895003","INTPTLON10":"-122.301039","population":42},"geometry":{"type":"Polygon","coordinates":[[[-122.300593,37.895043],[-122.300538,37.894865],[-122.300374,37.894333],[-122.30032,37.894156],[-122.300487,37.89412],[-122.300989,37.894014],[-122.301157,37.893979],[-122.30128,37.89435],[-122.301651,37.895463],[-122.301775,37.895834],[-122.3016,37.895871],[-122.301077,37.895981],[-122.300903,37.896019],[-122.300841,37.895823],[-122.300655,37.895238],[-122.300593,37.895043]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1001","GEOID10":"060014203001001","NAME10":"Block 1001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16165.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894817","INTPTLON10":"-122.301882","population":41},"geometry":{"type":"Polygon","coordinates":[[[-122.301775,37.895834],[-122.301651,37.895463],[-122.30128,37.89435],[-122.301157,37.893979],[-122.301327,37.893945],[-122.301839,37.893845],[-122.30201,37.893812],[-122.302127,37.894182],[-122.302481,37.895293],[-122.302599,37.895664],[-122.302434,37.895697],[-122.301939,37.895799],[-122.301775,37.895834]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1002","GEOID10":"060014203001002","NAME10":"Block 1002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16535.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892960","INTPTLON10":"-122.301287","population":46},"geometry":{"type":"Polygon","coordinates":[[[-122.301157,37.893979],[-122.301038,37.893605],[-122.300684,37.892483],[-122.300567,37.892109],[-122.300737,37.892075],[-122.301247,37.891974],[-122.301418,37.891941],[-122.301536,37.892315],[-122.301891,37.893437],[-122.30201,37.893812],[-122.301839,37.893845],[-122.301327,37.893945],[-122.301157,37.893979]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1003","GEOID10":"060014203001003","NAME10":"Block 1003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16635.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.893128","INTPTLON10":"-122.300432","population":24},"geometry":{"type":"Polygon","coordinates":[[[-122.300069,37.893425],[-122.299996,37.893197],[-122.299778,37.892513],[-122.299706,37.892285],[-122.299878,37.892249],[-122.300394,37.892144],[-122.300567,37.892109],[-122.300684,37.892483],[-122.301038,37.893605],[-122.301157,37.893979],[-122.300989,37.894014],[-122.300487,37.89412],[-122.30032,37.894156],[-122.300269,37.894009],[-122.300119,37.893571],[-122.300069,37.893425]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1004","GEOID10":"060014203001004","NAME10":"Block 1004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17893.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891200","INTPTLON10":"-122.299809","population":38},"geometry":{"type":"Polygon","coordinates":[[[-122.29954,37.891792],[-122.299442,37.891486],[-122.299148,37.890569],[-122.299051,37.890264],[-122.299225,37.890244],[-122.299295,37.890236],[-122.29955,37.890197],[-122.299742,37.890154],[-122.299914,37.890116],[-122.300044,37.890514],[-122.300436,37.89171],[-122.300567,37.892109],[-122.300394,37.892144],[-122.299878,37.892249],[-122.299706,37.892285],[-122.299672,37.892186],[-122.299573,37.89189],[-122.29954,37.891792]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1005","GEOID10":"060014203001005","NAME10":"Block 1005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17622.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891028","INTPTLON10":"-122.300665","population":86},"geometry":{"type":"Polygon","coordinates":[[[-122.300567,37.892109],[-122.300436,37.89171],[-122.300044,37.890514],[-122.299914,37.890116],[-122.300084,37.890082],[-122.300596,37.889984],[-122.300767,37.889952],[-122.300897,37.890349],[-122.301287,37.891543],[-122.301418,37.891941],[-122.301247,37.891974],[-122.300737,37.892075],[-122.300567,37.892109]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1006","GEOID10":"060014203001006","NAME10":"Block 1006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17308.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890858","INTPTLON10":"-122.301509","population":87},"geometry":{"type":"Polygon","coordinates":[[[-122.301418,37.891941],[-122.301287,37.891543],[-122.300897,37.890349],[-122.300767,37.889952],[-122.301636,37.889784],[-122.301712,37.890102],[-122.302247,37.891772],[-122.302081,37.891805],[-122.301583,37.891906],[-122.301418,37.891941]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1007","GEOID10":"060014203001007","NAME10":"Block 1007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16120.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892790","INTPTLON10":"-122.302128","population":34},"geometry":{"type":"Polygon","coordinates":[[[-122.30201,37.893812],[-122.301891,37.893437],[-122.301536,37.892315],[-122.301418,37.891941],[-122.301583,37.891906],[-122.302081,37.891805],[-122.302247,37.891772],[-122.302365,37.892145],[-122.302721,37.893264],[-122.30284,37.893637],[-122.302673,37.893671],[-122.302175,37.893776],[-122.30201,37.893812]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1008","GEOID10":"060014203001008","NAME10":"Block 1008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15574.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892632","INTPTLON10":"-122.302910","population":11},"geometry":{"type":"Polygon","coordinates":[[[-122.303086,37.891599],[-122.303167,37.891846],[-122.30341,37.892587],[-122.303492,37.892834],[-122.303335,37.893065],[-122.303298,37.893132],[-122.303254,37.893216],[-122.303181,37.893366],[-122.303128,37.893528],[-122.3031,37.893715],[-122.303084,37.893855],[-122.303093,37.89404],[-122.303106,37.894159],[-122.303117,37.894247],[-122.303089,37.894513],[-122.303039,37.894337],[-122.302889,37.893812],[-122.30284,37.893637],[-122.302721,37.893264],[-122.302365,37.892145],[-122.302247,37.891772],[-122.302414,37.891737],[-122.302918,37.891633],[-122.303086,37.891599]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1009","GEOID10":"060014203001009","NAME10":"Block 1009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17210.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890696","INTPTLON10":"-122.302349","population":37},"geometry":{"type":"Polygon","coordinates":[[[-122.301636,37.889784],[-122.302445,37.889617],[-122.302573,37.890013],[-122.302957,37.891202],[-122.303086,37.891599],[-122.302918,37.891633],[-122.302414,37.891737],[-122.302247,37.891772],[-122.301712,37.890102],[-122.301636,37.889784]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1010","GEOID10":"060014203001010","NAME10":"Block 1010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":20386.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888634","INTPTLON10":"-122.301622","population":43},"geometry":{"type":"Polygon","coordinates":[[[-122.302431,37.889568],[-122.302445,37.889617],[-122.301636,37.889784],[-122.301618,37.88974],[-122.30068,37.887725],[-122.301821,37.887615],[-122.301946,37.888015],[-122.302321,37.889216],[-122.302431,37.889568]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1011","GEOID10":"060014203001011","NAME10":"Block 1011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16453.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888863","INTPTLON10":"-122.300805","population":69},"geometry":{"type":"Polygon","coordinates":[[[-122.300767,37.889952],[-122.300752,37.889909],[-122.300045,37.88771],[-122.30068,37.887725],[-122.301618,37.88974],[-122.301636,37.889784],[-122.300767,37.889952]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1012","GEOID10":"060014203001012","NAME10":"Block 1012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":372.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890011","INTPTLON10":"-122.300335"},"geometry":{"type":"Polygon","coordinates":[[[-122.300752,37.889909],[-122.300767,37.889952],[-122.300596,37.889984],[-122.300084,37.890082],[-122.299914,37.890116],[-122.299902,37.890073],[-122.300752,37.889909]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1013","GEOID10":"060014203001013","NAME10":"Block 1013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":568.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890172","INTPTLON10":"-122.299448","population":4},"geometry":{"type":"Polygon","coordinates":[[[-122.299902,37.890073],[-122.299914,37.890116],[-122.299742,37.890154],[-122.29955,37.890197],[-122.299295,37.890236],[-122.299225,37.890244],[-122.299051,37.890264],[-122.299031,37.890196],[-122.299278,37.890164],[-122.299902,37.890073]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1014","GEOID10":"060014203001014","NAME10":"Block 1014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":21543.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888934","INTPTLON10":"-122.299083","population":43},"geometry":{"type":"Polygon","coordinates":[[[-122.299171,37.887725],[-122.299319,37.888203],[-122.299766,37.889637],[-122.299902,37.890073],[-122.299278,37.890164],[-122.299031,37.890196],[-122.298891,37.889762],[-122.298409,37.888259],[-122.298249,37.887758],[-122.298433,37.887751],[-122.298986,37.887731],[-122.299171,37.887725]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"1015","GEOID10":"060014203001015","NAME10":"Block 1015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19773.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888859","INTPTLON10":"-122.299964","population":70},"geometry":{"type":"Polygon","coordinates":[[[-122.300752,37.889909],[-122.299902,37.890073],[-122.299766,37.889637],[-122.299319,37.888203],[-122.299171,37.887725],[-122.300045,37.88771],[-122.300752,37.889909]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"2000","GEOID10":"060014203002000","NAME10":"Block 2000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":412555.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894918","INTPTLON10":"-122.304889","population":1118},"geometry":{"type":"Polygon","coordinates":[[[-122.308946,37.89797],[-122.30878,37.898025],[-122.308634,37.898036],[-122.308451,37.89805],[-122.307352,37.898134],[-122.307065,37.898157],[-122.306747,37.898181],[-122.30618,37.898225],[-122.306,37.898264],[-122.30546,37.898385],[-122.305336,37.898413],[-122.30528,37.898425],[-122.305184,37.898425],[-122.304896,37.898425],[-122.304801,37.898425],[-122.304756,37.898425],[-122.304629,37.898425],[-122.304624,37.898425],[-122.30458,37.898425],[-122.30438,37.898445],[-122.30378,37.898505],[-122.30371,37.898512],[-122.30358,37.898525],[-122.303513,37.898525],[-122.303314,37.898525],[-122.303248,37.898525],[-122.303194,37.898525],[-122.303033,37.898525],[-122.30298,37.898525],[-122.30282,37.898525],[-122.30234,37.898525],[-122.30218,37.898525],[-122.302095,37.898525],[-122.301841,37.898525],[-122.301757,37.898525],[-122.301625,37.898525],[-122.301572,37.898423],[-122.301527,37.898252],[-122.301503,37.898162],[-122.30121,37.897048],[-122.301114,37.896678],[-122.301071,37.896546],[-122.300945,37.89615],[-122.300903,37.896019],[-122.301077,37.895981],[-122.3016,37.895871],[-122.301775,37.895834],[-122.301939,37.895799],[-122.302434,37.895697],[-122.302599,37.895664],[-122.302481,37.895293],[-122.302127,37.894182],[-122.30201,37.893812],[-122.302175,37.893776],[-122.302673,37.893671],[-122.30284,37.893637],[-122.302889,37.893812],[-122.303039,37.894337],[-122.303089,37.894513],[-122.303117,37.894247],[-122.303106,37.894159],[-122.303093,37.89404],[-122.303084,37.893855],[-122.3031,37.893715],[-122.303128,37.893528],[-122.303181,37.893366],[-122.303254,37.893216],[-122.303298,37.893132],[-122.303335,37.893065],[-122.303492,37.892834],[-122.30341,37.892587],[-122.303167,37.891846],[-122.303086,37.891599],[-122.303167,37.891344],[-122.303231,37.891145],[-122.303317,37.890839],[-122.303426,37.890586],[-122.303452,37.890527],[-122.303489,37.890457],[-122.30355,37.890349],[-122.303608,37.890289],[-122.303731,37.89018],[-122.303748,37.890166],[-122.303899,37.890065],[-122.303948,37.890041],[-122.304141,37.889968],[-122.304412,37.889904],[-122.304574,37.889878],[-122.304658,37.889874],[-122.304928,37.889814],[-122.30574,37.889635],[-122.306013,37.889587],[-122.306058,37.889717],[-122.306123,37.889905],[-122.306193,37.89011],[-122.306238,37.890241],[-122.30627,37.890353],[-122.306369,37.89069],[-122.306402,37.890803],[-122.306688,37.891695],[-122.30671,37.891848],[-122.306693,37.891995],[-122.306661,37.892132],[-122.306645,37.892217],[-122.306636,37.892274],[-122.306634,37.89229],[-122.306624,37.892398],[-122.306639,37.892531],[-122.306669,37.892657],[-122.306745,37.892813],[-122.306895,37.893102],[-122.307218,37.893753],[-122.307868,37.89533],[-122.308155,37.896034],[-122.308363,37.896551],[-122.308476,37.896829],[-122.308584,37.897145],[-122.308915,37.897902],[-122.308946,37.89797]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3000","GEOID10":"060014203003000","NAME10":"Block 3000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":27350.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890773","INTPTLON10":"-122.306765"},"geometry":{"type":"Polygon","coordinates":[[[-122.306645,37.892217],[-122.306661,37.892132],[-122.306693,37.891995],[-122.30671,37.891848],[-122.306688,37.891695],[-122.306402,37.890803],[-122.306645,37.890753],[-122.306699,37.890733],[-122.306734,37.890722],[-122.306801,37.890682],[-122.306872,37.890585],[-122.307209,37.88999],[-122.307235,37.889945],[-122.307392,37.889746],[-122.307248,37.890123],[-122.307198,37.890282],[-122.307168,37.89038],[-122.307108,37.890625],[-122.307063,37.890866],[-122.307023,37.891219],[-122.307004,37.891586],[-122.307012,37.891922],[-122.307017,37.891973],[-122.307048,37.892278],[-122.307084,37.89254],[-122.307125,37.892734],[-122.307171,37.892889],[-122.307215,37.893037],[-122.307344,37.893366],[-122.307532,37.893809],[-122.307566,37.893897],[-122.307652,37.894118],[-122.307699,37.894233],[-122.308022,37.894958],[-122.308817,37.896731],[-122.308994,37.897137],[-122.309278,37.897782],[-122.309315,37.897867],[-122.30926,37.89788],[-122.309184,37.8979],[-122.309148,37.897908],[-122.30908,37.897925],[-122.309042,37.897937],[-122.309008,37.897949],[-122.308946,37.89797],[-122.308915,37.897902],[-122.308584,37.897145],[-122.308476,37.896829],[-122.308363,37.896551],[-122.308155,37.896034],[-122.307868,37.89533],[-122.307218,37.893753],[-122.306895,37.893102],[-122.306745,37.892813],[-122.306669,37.892657],[-122.306639,37.892531],[-122.306624,37.892398],[-122.306634,37.89229],[-122.306636,37.892274],[-122.306645,37.892217]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3001","GEOID10":"060014203003001","NAME10":"Block 3001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24651.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892198","INTPTLON10":"-122.307551"},"geometry":{"type":"Polygon","coordinates":[[[-122.308278,37.895224],[-122.308486,37.895736],[-122.30881,37.896534],[-122.309021,37.897067],[-122.309105,37.897276],[-122.309311,37.89779],[-122.309339,37.89786],[-122.309315,37.897867],[-122.309278,37.897782],[-122.308994,37.897137],[-122.308817,37.896731],[-122.308022,37.894958],[-122.307699,37.894233],[-122.307652,37.894118],[-122.307566,37.893897],[-122.307532,37.893809],[-122.307344,37.893366],[-122.307215,37.893037],[-122.307171,37.892889],[-122.307125,37.892734],[-122.307084,37.89254],[-122.307048,37.892278],[-122.307017,37.891973],[-122.307012,37.891922],[-122.307004,37.891586],[-122.307023,37.891219],[-122.307063,37.890866],[-122.307108,37.890625],[-122.307168,37.89038],[-122.307198,37.890282],[-122.307248,37.890123],[-122.307392,37.889746],[-122.307401,37.889726],[-122.30743,37.889668],[-122.30744,37.889649],[-122.307457,37.889617],[-122.307508,37.889523],[-122.307526,37.889492],[-122.307599,37.889787],[-122.307818,37.890672],[-122.307892,37.890968],[-122.307799,37.891168],[-122.307748,37.891325],[-122.307655,37.89166],[-122.307626,37.89181],[-122.307602,37.891942],[-122.307553,37.892239],[-122.307526,37.892606],[-122.307533,37.892786],[-122.307561,37.893117],[-122.307582,37.893282],[-122.307691,37.893709],[-122.307773,37.893973],[-122.307946,37.894401],[-122.308278,37.895224]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3002","GEOID10":"060014203003002","NAME10":"Block 3002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":9773.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.892031","INTPTLON10":"-122.307713"},"geometry":{"type":"Polygon","coordinates":[[[-122.307892,37.890968],[-122.307962,37.891208],[-122.30808,37.891615],[-122.308169,37.891932],[-122.308207,37.892067],[-122.308225,37.892177],[-122.308097,37.892154],[-122.30802,37.892156],[-122.307942,37.89218],[-122.307883,37.892218],[-122.307848,37.892279],[-122.307835,37.892371],[-122.307831,37.892454],[-122.307823,37.892534],[-122.3078,37.892781],[-122.307805,37.893022],[-122.307824,37.893232],[-122.30787,37.89364],[-122.307952,37.89401],[-122.308104,37.894559],[-122.308117,37.894606],[-122.308278,37.895224],[-122.307946,37.894401],[-122.307773,37.893973],[-122.307691,37.893709],[-122.307582,37.893282],[-122.307561,37.893117],[-122.307533,37.892786],[-122.307526,37.892606],[-122.307553,37.892239],[-122.307602,37.891942],[-122.307626,37.89181],[-122.307655,37.89166],[-122.307748,37.891325],[-122.307799,37.891168],[-122.307892,37.890968]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3003","GEOID10":"060014203003003","NAME10":"Block 3003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18792.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.894669","INTPTLON10":"-122.308429"},"geometry":{"type":"Polygon","coordinates":[[[-122.309311,37.89779],[-122.309105,37.897276],[-122.309021,37.897067],[-122.30881,37.896534],[-122.308486,37.895736],[-122.308278,37.895224],[-122.308117,37.894606],[-122.308104,37.894559],[-122.307952,37.89401],[-122.30787,37.89364],[-122.307824,37.893232],[-122.307805,37.893022],[-122.3078,37.892781],[-122.307823,37.892534],[-122.307831,37.892454],[-122.307835,37.892371],[-122.307848,37.892279],[-122.307883,37.892218],[-122.307942,37.89218],[-122.30802,37.892156],[-122.308097,37.892154],[-122.308225,37.892177],[-122.308244,37.892297],[-122.308261,37.892455],[-122.308307,37.893167],[-122.308297,37.893346],[-122.308277,37.893764],[-122.308329,37.894318],[-122.308344,37.894409],[-122.308662,37.895298],[-122.309066,37.896481],[-122.309159,37.896725],[-122.309336,37.89719],[-122.309376,37.897308],[-122.309411,37.897469],[-122.309502,37.897789],[-122.309512,37.897825],[-122.309491,37.897825],[-122.309481,37.897825],[-122.309457,37.897831],[-122.309339,37.89786],[-122.309311,37.89779]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3004","GEOID10":"060014203003004","NAME10":"Block 3004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":59347.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.895581","INTPTLON10":"-122.309453"},"geometry":{"type":"Polygon","coordinates":[[[-122.309376,37.897308],[-122.309336,37.89719],[-122.309159,37.896725],[-122.309066,37.896481],[-122.308662,37.895298],[-122.308344,37.894409],[-122.308329,37.894318],[-122.308277,37.893764],[-122.308297,37.893346],[-122.308307,37.893167],[-122.308261,37.892455],[-122.308244,37.892297],[-122.308225,37.892177],[-122.308207,37.892067],[-122.308169,37.891932],[-122.30808,37.891615],[-122.307962,37.891208],[-122.307892,37.890968],[-122.307927,37.890892],[-122.308033,37.890667],[-122.308069,37.890592],[-122.308211,37.891226],[-122.308372,37.891856],[-122.308438,37.892134],[-122.308495,37.892366],[-122.308649,37.892921],[-122.308903,37.893714],[-122.308987,37.89392],[-122.309086,37.894158],[-122.30927,37.894558],[-122.309462,37.8949],[-122.30958,37.895102],[-122.309727,37.89534],[-122.309925,37.895651],[-122.310267,37.896113],[-122.310484,37.896381],[-122.310534,37.896442],[-122.311026,37.897062],[-122.311236,37.897331],[-122.311468,37.897629],[-122.311134,37.89774],[-122.310881,37.897825],[-122.309965,37.897825],[-122.309571,37.897825],[-122.309512,37.897825],[-122.309502,37.897789],[-122.309411,37.897469],[-122.309376,37.897308]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3005","GEOID10":"060014203003005","NAME10":"Block 3005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":30820.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891015","INTPTLON10":"-122.308540"},"geometry":{"type":"Polygon","coordinates":[[[-122.308069,37.890592],[-122.308123,37.890487],[-122.308286,37.890175],[-122.308341,37.890071],[-122.30839,37.890315],[-122.308405,37.890387],[-122.308495,37.890723],[-122.30857,37.891042],[-122.308628,37.891285],[-122.308707,37.891602],[-122.308766,37.891836],[-122.308965,37.892548],[-122.309054,37.892863],[-122.309128,37.893126],[-122.309284,37.893557],[-122.309414,37.893875],[-122.309421,37.893891],[-122.309529,37.894133],[-122.309682,37.894452],[-122.309874,37.894805],[-122.310186,37.895308],[-122.310342,37.895535],[-122.310502,37.895789],[-122.310635,37.895983],[-122.310941,37.896401],[-122.311153,37.896666],[-122.311388,37.89696],[-122.311568,37.897186],[-122.311622,37.897255],[-122.311826,37.897491],[-122.311845,37.897514],[-122.31181,37.89752],[-122.311781,37.897525],[-122.311583,37.89759],[-122.311508,37.897616],[-122.311468,37.897629],[-122.311236,37.897331],[-122.311026,37.897062],[-122.310534,37.896442],[-122.310484,37.896381],[-122.310267,37.896113],[-122.309925,37.895651],[-122.309727,37.89534],[-122.30958,37.895102],[-122.309462,37.8949],[-122.30927,37.894558],[-122.309086,37.894158],[-122.308987,37.89392],[-122.308903,37.893714],[-122.308649,37.892921],[-122.308495,37.892366],[-122.308438,37.892134],[-122.308372,37.891856],[-122.308211,37.891226],[-122.308069,37.890592]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3006","GEOID10":"060014203003006","NAME10":"Block 3006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19563.000000,"AWATER10":24.000000,"INTPTLAT10":"+37.890405","INTPTLON10":"-122.308694"},"geometry":{"type":"Polygon","coordinates":[[[-122.311538,37.896806],[-122.311565,37.896838],[-122.311758,37.897088],[-122.312009,37.897413],[-122.312063,37.897478],[-122.312004,37.897487],[-122.311889,37.897507],[-122.311845,37.897514],[-122.311826,37.897491],[-122.311622,37.897255],[-122.311568,37.897186],[-122.311388,37.89696],[-122.311153,37.896666],[-122.310941,37.896401],[-122.310635,37.895983],[-122.310502,37.895789],[-122.310342,37.895535],[-122.310186,37.895308],[-122.309874,37.894805],[-122.309682,37.894452],[-122.309529,37.894133],[-122.309421,37.893891],[-122.309414,37.893875],[-122.309284,37.893557],[-122.309128,37.893126],[-122.309054,37.892863],[-122.308965,37.892548],[-122.308766,37.891836],[-122.308707,37.891602],[-122.308628,37.891285],[-122.30857,37.891042],[-122.308495,37.890723],[-122.308405,37.890387],[-122.30839,37.890315],[-122.308341,37.890071],[-122.30847,37.889804],[-122.308738,37.889253],[-122.308805,37.88913],[-122.308964,37.888766],[-122.308925,37.88939],[-122.308887,37.890063],[-122.30888,37.890482],[-122.308925,37.890958],[-122.308979,37.891237],[-122.308948,37.891714],[-122.30899,37.892061],[-122.309093,37.892584],[-122.309151,37.892825],[-122.309223,37.893051],[-122.309413,37.893595],[-122.309515,37.893845],[-122.309641,37.894105],[-122.309978,37.894761],[-122.31028,37.895227],[-122.310482,37.895512],[-122.310654,37.895738],[-122.311505,37.896707],[-122.311591,37.896819],[-122.311538,37.896806]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3007","GEOID10":"060014203003007","NAME10":"Block 3007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":3648.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.897139","INTPTLON10":"-122.312126"},"geometry":{"type":"Polygon","coordinates":[[[-122.311565,37.896838],[-122.311538,37.896806],[-122.311591,37.896819],[-122.311959,37.8969],[-122.31214,37.896928],[-122.312424,37.896928],[-122.312521,37.89701],[-122.312542,37.89712],[-122.312466,37.897411],[-122.31235,37.89743],[-122.312171,37.89746],[-122.312063,37.897478],[-122.312009,37.897413],[-122.311758,37.897088],[-122.311565,37.896838]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3008","GEOID10":"060014203003008","NAME10":"Block 3008","MTFCC10":"G5040","UR10":"R","UACE10":null,"UATYP10":null,"FUNCSTAT10":"S","ALAND10":0.000000,"AWATER10":1111196.000000,"INTPTLAT10":"+37.892891","INTPTLON10":"-122.320295"},"geometry":{"type":"Polygon","coordinates":[[[-122.334735,37.889576],[-122.333398,37.892794],[-122.331039,37.893317],[-122.329414,37.893677],[-122.317113,37.896408],[-122.312981,37.897325],[-122.312466,37.897411],[-122.312542,37.89712],[-122.312521,37.89701],[-122.312424,37.896928],[-122.31214,37.896928],[-122.311959,37.8969],[-122.311591,37.896819],[-122.311505,37.896707],[-122.311502,37.896697],[-122.311578,37.896477],[-122.311564,37.89628],[-122.311516,37.896164],[-122.311412,37.89612],[-122.311259,37.896098],[-122.311127,37.896049],[-122.311169,37.895928],[-122.311245,37.89584],[-122.311301,37.89573],[-122.311127,37.895521],[-122.310989,37.895494],[-122.310704,37.895494],[-122.310656,37.89539],[-122.31067,37.895274],[-122.310552,37.89506],[-122.310462,37.894956],[-122.310226,37.894785],[-122.310122,37.894736],[-122.309699,37.893983],[-122.309443,37.893456],[-122.309228,37.892769],[-122.309089,37.892208],[-122.309064,37.891804],[-122.309034,37.891285],[-122.309055,37.89117],[-122.309256,37.889698],[-122.309422,37.889126],[-122.309658,37.888852],[-122.30979,37.888808],[-122.309914,37.888813],[-122.310032,37.888901],[-122.310143,37.889132],[-122.310753,37.88967],[-122.31085,37.889747],[-122.310933,37.889846],[-122.310996,37.890192],[-122.311128,37.890242],[-122.311183,37.890132],[-122.31119,37.889906],[-122.311329,37.889895],[-122.31144,37.889978],[-122.311606,37.890313],[-122.311682,37.890395],[-122.3118,37.890472],[-122.312722,37.891187],[-122.313561,37.891818],[-122.313686,37.891879],[-122.314261,37.891956],[-122.314386,37.892033],[-122.31458,37.892346],[-122.314677,37.892434],[-122.314816,37.892439],[-122.314573,37.892137],[-122.314531,37.892033],[-122.314524,37.891917],[-122.314663,37.891868],[-122.315356,37.891901],[-122.315648,37.891868],[-122.3158,37.891901],[-122.315939,37.89189],[-122.31598,37.891791],[-122.315939,37.891681],[-122.31596,37.891351],[-122.315946,37.891242],[-122.316015,37.891132],[-122.316029,37.891132],[-122.316868,37.891027],[-122.317152,37.890972],[-122.317582,37.890917],[-122.318982,37.89034],[-122.319086,37.890269],[-122.319571,37.890022],[-122.319835,37.889934],[-122.320119,37.889923],[-122.321256,37.889928],[-122.3217,37.88995],[-122.322275,37.889928],[-122.322552,37.889928],[-122.322684,37.889972],[-122.32274,37.890071],[-122.322747,37.890186],[-122.322788,37.890307],[-122.323003,37.890653],[-122.323114,37.890983],[-122.323461,37.891505],[-122.323634,37.891873],[-122.323801,37.892203],[-122.323946,37.892395],[-122.324424,37.892452],[-122.324681,37.892483],[-122.324945,37.89245],[-122.324967,37.892444],[-122.325548,37.892527],[-122.325686,37.892527],[-122.325818,37.892488],[-122.325832,37.892378],[-122.325894,37.892285],[-122.32561,37.892153],[-122.325548,37.89206],[-122.325561,37.891851],[-122.325527,37.89151],[-122.325561,37.891175],[-122.325575,37.890928],[-122.325638,37.890834],[-122.32579,37.89078],[-122.326185,37.890785],[-122.326622,37.890851],[-122.327024,37.890812],[-122.327156,37.890779],[-122.327301,37.890785],[-122.327364,37.890884],[-122.327378,37.891345],[-122.327399,37.891455],[-122.327489,37.891537],[-122.327593,37.891444],[-122.327648,37.890988],[-122.327613,37.890768],[-122.327669,37.890219],[-122.327592,37.889922],[-122.327558,37.889779],[-122.327572,37.88967],[-122.327568,37.889656],[-122.33177,37.889609],[-122.334735,37.889576]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3009","GEOID10":"060014203003009","NAME10":"Block 3009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":265574.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890586","INTPTLON10":"-122.318113"},"geometry":{"type":"Polygon","coordinates":[[[-122.308964,37.888766],[-122.308995,37.888658],[-122.309087,37.888384],[-122.309215,37.887843],[-122.309275,37.887867],[-122.309322,37.887885],[-122.309598,37.888019],[-122.309792,37.888119],[-122.30999,37.888327],[-122.310172,37.888518],[-122.311228,37.889446],[-122.315581,37.889625],[-122.31577,37.889504],[-122.327568,37.889656],[-122.327572,37.88967],[-122.327558,37.889779],[-122.327592,37.889922],[-122.327669,37.890219],[-122.327613,37.890768],[-122.327648,37.890988],[-122.327593,37.891444],[-122.327489,37.891537],[-122.327399,37.891455],[-122.327378,37.891345],[-122.327364,37.890884],[-122.327301,37.890785],[-122.327156,37.890779],[-122.327024,37.890812],[-122.326622,37.890851],[-122.326185,37.890785],[-122.32579,37.89078],[-122.325638,37.890834],[-122.325575,37.890928],[-122.325561,37.891175],[-122.325527,37.89151],[-122.325561,37.891851],[-122.325548,37.89206],[-122.32561,37.892153],[-122.325894,37.892285],[-122.325832,37.892378],[-122.325818,37.892488],[-122.325686,37.892527],[-122.325548,37.892527],[-122.324967,37.892444],[-122.324945,37.89245],[-122.324681,37.892483],[-122.324424,37.892452],[-122.323946,37.892395],[-122.323801,37.892203],[-122.323634,37.891873],[-122.323461,37.891505],[-122.323114,37.890983],[-122.323003,37.890653],[-122.322788,37.890307],[-122.322747,37.890186],[-122.32274,37.890071],[-122.322684,37.889972],[-122.322552,37.889928],[-122.322275,37.889928],[-122.3217,37.88995],[-122.321256,37.889928],[-122.320119,37.889923],[-122.319835,37.889934],[-122.319571,37.890022],[-122.319086,37.890269],[-122.318982,37.89034],[-122.317582,37.890917],[-122.317152,37.890972],[-122.316868,37.891027],[-122.316029,37.891132],[-122.316015,37.891132],[-122.315946,37.891242],[-122.31596,37.891351],[-122.315939,37.891681],[-122.31598,37.891791],[-122.315939,37.89189],[-122.3158,37.891901],[-122.315648,37.891868],[-122.315356,37.891901],[-122.314663,37.891868],[-122.314524,37.891917],[-122.314531,37.892033],[-122.314573,37.892137],[-122.314816,37.892439],[-122.314677,37.892434],[-122.31458,37.892346],[-122.314386,37.892033],[-122.314261,37.891956],[-122.313686,37.891879],[-122.313561,37.891818],[-122.312722,37.891187],[-122.3118,37.890472],[-122.311682,37.890395],[-122.311606,37.890313],[-122.31144,37.889978],[-122.311329,37.889895],[-122.31119,37.889906],[-122.311183,37.890132],[-122.311128,37.890242],[-122.310996,37.890192],[-122.310933,37.889846],[-122.31085,37.889747],[-122.310753,37.88967],[-122.310143,37.889132],[-122.310032,37.888901],[-122.309914,37.888813],[-122.30979,37.888808],[-122.309658,37.888852],[-122.309422,37.889126],[-122.309256,37.889698],[-122.309055,37.89117],[-122.309034,37.891285],[-122.309064,37.891804],[-122.309089,37.892208],[-122.309228,37.892769],[-122.309443,37.893456],[-122.309699,37.893983],[-122.310122,37.894736],[-122.310226,37.894785],[-122.310462,37.894956],[-122.310552,37.89506],[-122.31067,37.895274],[-122.310656,37.89539],[-122.310704,37.895494],[-122.310989,37.895494],[-122.311127,37.895521],[-122.311301,37.89573],[-122.311245,37.89584],[-122.311169,37.895928],[-122.311127,37.896049],[-122.311259,37.896098],[-122.311412,37.89612],[-122.311516,37.896164],[-122.311564,37.89628],[-122.311578,37.896477],[-122.311502,37.896697],[-122.311505,37.896707],[-122.310654,37.895738],[-122.310482,37.895512],[-122.31028,37.895227],[-122.309978,37.894761],[-122.309641,37.894105],[-122.309515,37.893845],[-122.309413,37.893595],[-122.309223,37.893051],[-122.309151,37.892825],[-122.309093,37.892584],[-122.30899,37.892061],[-122.308948,37.891714],[-122.308979,37.891237],[-122.308925,37.890958],[-122.30888,37.890482],[-122.308887,37.890063],[-122.308925,37.88939],[-122.308964,37.888766]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3010","GEOID10":"060014203003010","NAME10":"Block 3010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1835.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887852","INTPTLON10":"-122.309121"},"geometry":{"type":"Polygon","coordinates":[[[-122.309278,37.887316],[-122.309277,37.887586],[-122.309215,37.887843],[-122.309087,37.888384],[-122.308995,37.888658],[-122.308964,37.888766],[-122.30903,37.888072],[-122.309031,37.888046],[-122.309048,37.887421],[-122.309153,37.887377],[-122.309278,37.887316]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3011","GEOID10":"060014203003011","NAME10":"Block 3011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10961.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888506","INTPTLON10":"-122.308680"},"geometry":{"type":"Polygon","coordinates":[[[-122.308524,37.887547],[-122.308568,37.887443],[-122.308577,37.887421],[-122.308606,37.887356],[-122.308616,37.887335],[-122.308754,37.887367],[-122.308766,37.88737],[-122.308862,37.887406],[-122.308951,37.887423],[-122.309048,37.887421],[-122.309031,37.888046],[-122.30903,37.888072],[-122.308964,37.888766],[-122.308805,37.88913],[-122.308738,37.889253],[-122.30847,37.889804],[-122.308341,37.890071],[-122.308315,37.88987],[-122.308306,37.889557],[-122.308309,37.889517],[-122.308337,37.889206],[-122.308366,37.88899],[-122.30841,37.888794],[-122.308536,37.888278],[-122.308531,37.888121],[-122.308524,37.887959],[-122.308507,37.887769],[-122.308485,37.88764],[-122.308524,37.887547]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3012","GEOID10":"060014203003012","NAME10":"Block 3012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14539.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889402","INTPTLON10":"-122.308055"},"geometry":{"type":"Polygon","coordinates":[[[-122.308485,37.88764],[-122.308507,37.887769],[-122.308524,37.887959],[-122.308531,37.888121],[-122.308536,37.888278],[-122.30841,37.888794],[-122.308366,37.88899],[-122.308337,37.889206],[-122.308309,37.889517],[-122.308306,37.889557],[-122.308315,37.88987],[-122.308341,37.890071],[-122.308286,37.890175],[-122.308123,37.890487],[-122.308069,37.890592],[-122.308033,37.890667],[-122.307927,37.890892],[-122.307892,37.890968],[-122.307818,37.890672],[-122.307599,37.889787],[-122.307526,37.889492],[-122.307559,37.889428],[-122.30766,37.889239],[-122.307694,37.889176],[-122.307716,37.889135],[-122.30788,37.888834],[-122.308139,37.888362],[-122.308317,37.888045],[-122.308418,37.887801],[-122.308485,37.88764]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3013","GEOID10":"060014203003013","NAME10":"Block 3013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":7694.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887764","INTPTLON10":"-122.307126"},"geometry":{"type":"Polygon","coordinates":[[[-122.305423,37.887459],[-122.30565,37.887434],[-122.305667,37.887433],[-122.306049,37.887367],[-122.306572,37.88727],[-122.30688,37.887214],[-122.306941,37.887205],[-122.306991,37.887199],[-122.307125,37.887191],[-122.307163,37.887189],[-122.307187,37.887189],[-122.307286,37.887586],[-122.307334,37.887777],[-122.307458,37.888258],[-122.307589,37.888779],[-122.307598,37.888813],[-122.307694,37.889176],[-122.30766,37.889239],[-122.307559,37.889428],[-122.307526,37.889492],[-122.307518,37.889454],[-122.307494,37.889342],[-122.307486,37.889305],[-122.307446,37.889177],[-122.307326,37.888793],[-122.307286,37.888666],[-122.307272,37.888616],[-122.307248,37.88852],[-122.307142,37.888081],[-122.307107,37.887935],[-122.307067,37.887783],[-122.307013,37.887571],[-122.306983,37.887508],[-122.306931,37.887465],[-122.306892,37.887451],[-122.306843,37.887444],[-122.306821,37.887445],[-122.306665,37.887457],[-122.306464,37.887471],[-122.306262,37.887481],[-122.30607,37.887496],[-122.305501,37.887501],[-122.305439,37.887468],[-122.305423,37.887459]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3014","GEOID10":"060014203003014","NAME10":"Block 3014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10339.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888418","INTPTLON10":"-122.306440","population":35},"geometry":{"type":"Polygon","coordinates":[[[-122.307107,37.887935],[-122.307142,37.888081],[-122.307248,37.88852],[-122.307272,37.888616],[-122.305798,37.888894],[-122.305768,37.888806],[-122.305624,37.888382],[-122.305577,37.888241],[-122.305882,37.888179],[-122.306801,37.887996],[-122.307107,37.887935]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3015","GEOID10":"060014203003015","NAME10":"Block 3015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":782.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888782","INTPTLON10":"-122.306532","population":7},"geometry":{"type":"Polygon","coordinates":[[[-122.307272,37.888616],[-122.307286,37.888666],[-122.306991,37.888722],[-122.306108,37.888891],[-122.305814,37.888948],[-122.305798,37.888894],[-122.307272,37.888616]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3016","GEOID10":"060014203003016","NAME10":"Block 3016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":12044.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889955","INTPTLON10":"-122.306745","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.30659,37.890189],[-122.30646,37.890161],[-122.306368,37.890127],[-122.306302,37.890086],[-122.306227,37.890027],[-122.306123,37.889905],[-122.306058,37.889717],[-122.306013,37.889587],[-122.306307,37.88953],[-122.307191,37.889361],[-122.307486,37.889305],[-122.307494,37.889342],[-122.307518,37.889454],[-122.307526,37.889492],[-122.307508,37.889523],[-122.307457,37.889617],[-122.30744,37.889649],[-122.30743,37.889668],[-122.307401,37.889726],[-122.307392,37.889746],[-122.307235,37.889945],[-122.307209,37.88999],[-122.306872,37.890585],[-122.306801,37.890682],[-122.306734,37.890722],[-122.306699,37.890733],[-122.306645,37.890753],[-122.306402,37.890803],[-122.306369,37.89069],[-122.30627,37.890353],[-122.306238,37.890241],[-122.306357,37.890223],[-122.30659,37.890189]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3017","GEOID10":"060014203003017","NAME10":"Block 3017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":393.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890134","INTPTLON10":"-122.306301"},"geometry":{"type":"Polygon","coordinates":[[[-122.306238,37.890241],[-122.306193,37.89011],[-122.306123,37.889905],[-122.306227,37.890027],[-122.306302,37.890086],[-122.306368,37.890127],[-122.30646,37.890161],[-122.30659,37.890189],[-122.306357,37.890223],[-122.306238,37.890241]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3018","GEOID10":"060014203003018","NAME10":"Block 3018","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":9739.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889126","INTPTLON10":"-122.306649","population":29},"geometry":{"type":"Polygon","coordinates":[[[-122.306013,37.889587],[-122.305973,37.889459],[-122.305853,37.889075],[-122.305814,37.888948],[-122.306108,37.888891],[-122.306991,37.888722],[-122.307286,37.888666],[-122.307326,37.888793],[-122.307446,37.889177],[-122.307486,37.889305],[-122.307191,37.889361],[-122.306307,37.88953],[-122.306013,37.889587]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3019","GEOID10":"060014203003019","NAME10":"Block 3019","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17581.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889545","INTPTLON10":"-122.304605","population":50},"geometry":{"type":"Polygon","coordinates":[[[-122.303281,37.889446],[-122.30345,37.889412],[-122.303958,37.889314],[-122.304128,37.889282],[-122.304294,37.889249],[-122.304796,37.889153],[-122.304963,37.889121],[-122.305133,37.889086],[-122.305643,37.888982],[-122.305814,37.888948],[-122.305853,37.889075],[-122.305973,37.889459],[-122.306013,37.889587],[-122.30574,37.889635],[-122.304928,37.889814],[-122.304658,37.889874],[-122.304574,37.889878],[-122.304412,37.889904],[-122.304141,37.889968],[-122.303948,37.890041],[-122.303899,37.890065],[-122.303748,37.890166],[-122.303731,37.89018],[-122.303608,37.890289],[-122.30355,37.890349],[-122.303496,37.890168],[-122.303334,37.889626],[-122.303281,37.889446]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3020","GEOID10":"060014203003020","NAME10":"Block 3020","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":409.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889177","INTPTLON10":"-122.304538","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.30411,37.889235],[-122.30495,37.889073],[-122.304963,37.889121],[-122.304796,37.889153],[-122.304294,37.889249],[-122.304128,37.889282],[-122.30411,37.889235]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3021","GEOID10":"060014203003021","NAME10":"Block 3021","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11997.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890278","INTPTLON10":"-122.303039","population":23},"geometry":{"type":"Polygon","coordinates":[[[-122.303281,37.889446],[-122.303334,37.889626],[-122.303496,37.890168],[-122.30355,37.890349],[-122.303489,37.890457],[-122.303452,37.890527],[-122.303426,37.890586],[-122.303317,37.890839],[-122.303231,37.891145],[-122.303167,37.891344],[-122.303086,37.891599],[-122.302957,37.891202],[-122.302573,37.890013],[-122.302445,37.889617],[-122.302612,37.889582],[-122.303113,37.88948],[-122.303281,37.889446]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3022","GEOID10":"060014203003022","NAME10":"Block 3022","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":411.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889507","INTPTLON10":"-122.302853"},"geometry":{"type":"Polygon","coordinates":[[[-122.302431,37.889568],[-122.303267,37.889399],[-122.303281,37.889446],[-122.303113,37.88948],[-122.302612,37.889582],[-122.302445,37.889617],[-122.302431,37.889568]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3023","GEOID10":"060014203003023","NAME10":"Block 3023","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16332.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888540","INTPTLON10":"-122.302547","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.303267,37.889399],[-122.302431,37.889568],[-122.302321,37.889216],[-122.301946,37.888015],[-122.301821,37.887615],[-122.302081,37.887603],[-122.302202,37.887597],[-122.302568,37.88758],[-122.302691,37.887575],[-122.302809,37.887949],[-122.303163,37.889071],[-122.303267,37.889399]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3024","GEOID10":"060014203003024","NAME10":"Block 3024","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15240.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888441","INTPTLON10":"-122.303402","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.30411,37.889235],[-122.303267,37.889399],[-122.303163,37.889071],[-122.302809,37.887949],[-122.302691,37.887575],[-122.302865,37.887568],[-122.303387,37.88755],[-122.303562,37.887544],[-122.303674,37.887891],[-122.304012,37.888935],[-122.30411,37.889235]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3025","GEOID10":"060014203003025","NAME10":"Block 3025","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":406.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889339","INTPTLON10":"-122.303697"},"geometry":{"type":"Polygon","coordinates":[[[-122.303267,37.889399],[-122.30411,37.889235],[-122.304128,37.889282],[-122.303958,37.889314],[-122.30345,37.889412],[-122.303281,37.889446],[-122.303267,37.889399]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3026","GEOID10":"060014203003026","NAME10":"Block 3026","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14219.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888340","INTPTLON10":"-122.304261","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.30495,37.889073],[-122.30411,37.889235],[-122.304012,37.888935],[-122.303674,37.887891],[-122.303562,37.887544],[-122.303591,37.887543],[-122.303679,37.887541],[-122.303709,37.887541],[-122.303857,37.887534],[-122.3043,37.887515],[-122.304449,37.887509],[-122.304552,37.887831],[-122.304861,37.888798],[-122.30495,37.889073]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3027","GEOID10":"060014203003027","NAME10":"Block 3027","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":13106.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888238","INTPTLON10":"-122.305124","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.30534,37.887469],[-122.305376,37.887589],[-122.305386,37.887623],[-122.305529,37.888086],[-122.305577,37.888241],[-122.305624,37.888382],[-122.305768,37.888806],[-122.305798,37.888894],[-122.30495,37.889073],[-122.304861,37.888798],[-122.304552,37.887831],[-122.304449,37.887509],[-122.304627,37.887501],[-122.305162,37.887481],[-122.30521,37.88748],[-122.30534,37.887469]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3028","GEOID10":"060014203003028","NAME10":"Block 3028","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":444.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889007","INTPTLON10":"-122.305389","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.305798,37.888894],[-122.305814,37.888948],[-122.305643,37.888982],[-122.305133,37.889086],[-122.304963,37.889121],[-122.30495,37.889073],[-122.305798,37.888894]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3029","GEOID10":"060014203003029","NAME10":"Block 3029","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14565.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887885","INTPTLON10":"-122.307846"},"geometry":{"type":"Polygon","coordinates":[[[-122.308568,37.887443],[-122.308524,37.887547],[-122.308485,37.88764],[-122.308418,37.887801],[-122.308317,37.888045],[-122.308139,37.888362],[-122.30788,37.888834],[-122.307716,37.889135],[-122.307694,37.889176],[-122.307598,37.888813],[-122.307589,37.888779],[-122.307458,37.888258],[-122.307334,37.887777],[-122.307286,37.887586],[-122.307187,37.887189],[-122.307331,37.887186],[-122.307475,37.887186],[-122.307682,37.887188],[-122.307839,37.887191],[-122.308121,37.887222],[-122.308334,37.88727],[-122.308507,37.88731],[-122.308616,37.887335],[-122.308606,37.887356],[-122.308577,37.887421],[-122.308568,37.887443]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3030","GEOID10":"060014203003030","NAME10":"Block 3030","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":744.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887885","INTPTLON10":"-122.309499"},"geometry":{"type":"Polygon","coordinates":[[[-122.309322,37.887885],[-122.309275,37.887867],[-122.309348,37.887659],[-122.30946,37.887751],[-122.309503,37.887786],[-122.309685,37.887954],[-122.309765,37.888043],[-122.309792,37.888119],[-122.309598,37.888019],[-122.309322,37.887885]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420300","BLOCKCE10":"3031","GEOID10":"060014203003031","NAME10":"Block 3031","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":9685.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887789","INTPTLON10":"-122.306195","population":38},"geometry":{"type":"Polygon","coordinates":[[[-122.305423,37.887459],[-122.305439,37.887468],[-122.305501,37.887501],[-122.30607,37.887496],[-122.306262,37.887481],[-122.306464,37.887471],[-122.306665,37.887457],[-122.306821,37.887445],[-122.306843,37.887444],[-122.306892,37.887451],[-122.306931,37.887465],[-122.306983,37.887508],[-122.307013,37.887571],[-122.307067,37.887783],[-122.307107,37.887935],[-122.306801,37.887996],[-122.305882,37.888179],[-122.305577,37.888241],[-122.305529,37.888086],[-122.305386,37.887623],[-122.305376,37.887589],[-122.30534,37.887469],[-122.305423,37.887459]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1000","GEOID10":"060014204001000","NAME10":"Block 1000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11282.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887379","INTPTLON10":"-122.298870"},"geometry":{"type":"Polygon","coordinates":[[[-122.297909,37.886679],[-122.298141,37.886738],[-122.298268,37.886779],[-122.29839,37.88683],[-122.298512,37.886889],[-122.299303,37.887341],[-122.299439,37.887404],[-122.299559,37.887454],[-122.299732,37.887512],[-122.299918,37.887554],[-122.300166,37.887596],[-122.300568,37.887616],[-122.300681,37.887655],[-122.300951,37.88765],[-122.30068,37.887725],[-122.300045,37.88771],[-122.299171,37.887725],[-122.298986,37.887731],[-122.298433,37.887751],[-122.298249,37.887758],[-122.297934,37.886756],[-122.297909,37.886679]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1001","GEOID10":"060014204001001","NAME10":"Block 1001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":98716.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886596","INTPTLON10":"-122.303980","population":212},"geometry":{"type":"Polygon","coordinates":[[[-122.304573,37.88584],[-122.304523,37.885471],[-122.304479,37.885327],[-122.306096,37.885505],[-122.306779,37.88558],[-122.306857,37.885902],[-122.306863,37.885924],[-122.306958,37.886303],[-122.307077,37.886785],[-122.307099,37.886868],[-122.307158,37.887081],[-122.30694,37.887113],[-122.306429,37.887205],[-122.305825,37.887307],[-122.305599,37.887335],[-122.304665,37.887386],[-122.304241,37.887397],[-122.303956,37.887414],[-122.303552,37.887424],[-122.303472,37.887426],[-122.302065,37.887501],[-122.302081,37.887603],[-122.301821,37.887615],[-122.30068,37.887725],[-122.300951,37.88765],[-122.300824,37.88725],[-122.300809,37.887203],[-122.300512,37.886317],[-122.301623,37.886123],[-122.301798,37.886099],[-122.302323,37.88603],[-122.302499,37.886007],[-122.303416,37.885931],[-122.303935,37.885888],[-122.304204,37.885867],[-122.304573,37.88584]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1002","GEOID10":"060014204001002","NAME10":"Block 1002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":5453.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887412","INTPTLON10":"-122.304567"},"geometry":{"type":"Polygon","coordinates":[[[-122.305423,37.887459],[-122.30534,37.887469],[-122.30521,37.88748],[-122.305162,37.887481],[-122.304627,37.887501],[-122.304449,37.887509],[-122.3043,37.887515],[-122.303857,37.887534],[-122.303709,37.887541],[-122.303679,37.887541],[-122.303591,37.887543],[-122.303562,37.887544],[-122.303387,37.88755],[-122.302865,37.887568],[-122.302691,37.887575],[-122.302568,37.88758],[-122.302202,37.887597],[-122.302081,37.887603],[-122.302065,37.887501],[-122.303472,37.887426],[-122.303552,37.887424],[-122.303956,37.887414],[-122.304241,37.887397],[-122.304665,37.887386],[-122.305599,37.887335],[-122.305825,37.887307],[-122.306429,37.887205],[-122.30694,37.887113],[-122.307158,37.887081],[-122.307224,37.887072],[-122.307217,37.887093],[-122.307187,37.887189],[-122.307163,37.887189],[-122.307125,37.887191],[-122.306991,37.887199],[-122.306941,37.887205],[-122.30688,37.887214],[-122.306572,37.88727],[-122.306049,37.887367],[-122.305667,37.887433],[-122.30565,37.887434],[-122.305423,37.887459]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1003","GEOID10":"060014204001003","NAME10":"Block 1003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":82198.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883707","INTPTLON10":"-122.304949","population":145},"geometry":{"type":"Polygon","coordinates":[[[-122.303441,37.883679],[-122.303419,37.882877],[-122.30293,37.883008],[-122.302598,37.883056],[-122.30243,37.882752],[-122.302414,37.8827],[-122.302369,37.882546],[-122.302354,37.882495],[-122.302525,37.882456],[-122.302599,37.882454],[-122.30274,37.882451],[-122.302948,37.882407],[-122.303128,37.882313],[-122.303318,37.882277],[-122.303329,37.882275],[-122.303537,37.882275],[-122.303568,37.882273],[-122.303967,37.882247],[-122.304018,37.882249],[-122.304383,37.882269],[-122.304504,37.88226],[-122.305229,37.882209],[-122.305367,37.882182],[-122.305811,37.882098],[-122.305912,37.882427],[-122.305918,37.882446],[-122.306004,37.882718],[-122.306098,37.883018],[-122.306174,37.883264],[-122.30619,37.883316],[-122.306226,37.883495],[-122.306229,37.883506],[-122.306309,37.883851],[-122.306415,37.884193],[-122.306423,37.884219],[-122.306479,37.884432],[-122.306517,37.884577],[-122.306655,37.885086],[-122.306691,37.885232],[-122.306779,37.88558],[-122.306096,37.885505],[-122.304479,37.885327],[-122.304347,37.884861],[-122.304115,37.88413],[-122.303948,37.883579],[-122.303761,37.883615],[-122.303585,37.883651],[-122.303441,37.883679]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1004","GEOID10":"060014204001004","NAME10":"Block 1004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":5050.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883323","INTPTLON10":"-122.303096","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.303441,37.883679],[-122.303296,37.883708],[-122.302939,37.88378],[-122.302814,37.883508],[-122.302657,37.883163],[-122.302598,37.883056],[-122.30293,37.883008],[-122.303419,37.882877],[-122.303441,37.883679]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1005","GEOID10":"060014204001005","NAME10":"Block 1005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":52400.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883745","INTPTLON10":"-122.306961"},"geometry":{"type":"Polygon","coordinates":[[[-122.306174,37.883264],[-122.306098,37.883018],[-122.306004,37.882718],[-122.305918,37.882446],[-122.305912,37.882427],[-122.305811,37.882098],[-122.306036,37.882055],[-122.306269,37.882011],[-122.306714,37.881938],[-122.306941,37.881902],[-122.30708,37.881879],[-122.307294,37.881912],[-122.307357,37.881857],[-122.307824,37.882009],[-122.307551,37.884164],[-122.307337,37.886712],[-122.307307,37.886807],[-122.307224,37.887072],[-122.307158,37.887081],[-122.307099,37.886868],[-122.307077,37.886785],[-122.306958,37.886303],[-122.306863,37.885924],[-122.306857,37.885902],[-122.306779,37.88558],[-122.306691,37.885232],[-122.306655,37.885086],[-122.306517,37.884577],[-122.306479,37.884432],[-122.306423,37.884219],[-122.306415,37.884193],[-122.306309,37.883851],[-122.306229,37.883506],[-122.306226,37.883495],[-122.30619,37.883316],[-122.306174,37.883264]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1006","GEOID10":"060014204001006","NAME10":"Block 1006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":59431.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884942","INTPTLON10":"-122.308145"},"geometry":{"type":"Polygon","coordinates":[[[-122.308628,37.883478],[-122.308734,37.883956],[-122.308993,37.885125],[-122.308999,37.885374],[-122.308963,37.885626],[-122.308886,37.885917],[-122.308856,37.886205],[-122.308831,37.886458],[-122.308736,37.886896],[-122.308721,37.886977],[-122.308695,37.887049],[-122.308693,37.887055],[-122.308653,37.887209],[-122.308538,37.887181],[-122.308125,37.887107],[-122.308033,37.887095],[-122.307715,37.887066],[-122.3074,37.887049],[-122.307224,37.887072],[-122.307307,37.886807],[-122.307337,37.886712],[-122.307551,37.884164],[-122.307824,37.882009],[-122.307931,37.882043],[-122.30807,37.882088],[-122.308102,37.882099],[-122.308253,37.882148],[-122.308361,37.882183],[-122.308365,37.882201],[-122.308379,37.882257],[-122.308384,37.882276],[-122.308395,37.88232],[-122.308434,37.882516],[-122.308579,37.883237],[-122.308628,37.883478]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1007","GEOID10":"060014204001007","NAME10":"Block 1007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1737.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887163","INTPTLON10":"-122.307922"},"geometry":{"type":"Polygon","coordinates":[[[-122.308507,37.88731],[-122.308334,37.88727],[-122.308121,37.887222],[-122.307839,37.887191],[-122.307682,37.887188],[-122.307475,37.887186],[-122.307331,37.887186],[-122.307187,37.887189],[-122.307217,37.887093],[-122.307224,37.887072],[-122.3074,37.887049],[-122.307715,37.887066],[-122.308033,37.887095],[-122.308125,37.887107],[-122.308538,37.887181],[-122.308653,37.887209],[-122.308616,37.887335],[-122.308507,37.88731]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1008","GEOID10":"060014204001008","NAME10":"Block 1008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":447.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887324","INTPTLON10":"-122.308809"},"geometry":{"type":"Polygon","coordinates":[[[-122.308653,37.887209],[-122.30879,37.887246],[-122.308893,37.887285],[-122.30896,37.88733],[-122.309048,37.887421],[-122.308951,37.887423],[-122.308862,37.887406],[-122.308766,37.88737],[-122.308754,37.887367],[-122.308616,37.887335],[-122.308653,37.887209]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1009","GEOID10":"060014204001009","NAME10":"Block 1009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":7572.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886587","INTPTLON10":"-122.309031"},"geometry":{"type":"Polygon","coordinates":[[[-122.308993,37.885125],[-122.309052,37.88539],[-122.309159,37.885869],[-122.309222,37.886138],[-122.309233,37.886207],[-122.30925,37.886311],[-122.309316,37.886821],[-122.309321,37.88697],[-122.309287,37.887238],[-122.309278,37.887316],[-122.309153,37.887377],[-122.309048,37.887421],[-122.30896,37.88733],[-122.308893,37.887285],[-122.30879,37.887246],[-122.308653,37.887209],[-122.308693,37.887055],[-122.308695,37.887049],[-122.308721,37.886977],[-122.308736,37.886896],[-122.308831,37.886458],[-122.308856,37.886205],[-122.308886,37.885917],[-122.308963,37.885626],[-122.308999,37.885374],[-122.308993,37.885125]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1010","GEOID10":"060014204001010","NAME10":"Block 1010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":6192.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885673","INTPTLON10":"-122.309189"},"geometry":{"type":"Polygon","coordinates":[[[-122.308993,37.885125],[-122.308734,37.883956],[-122.308628,37.883478],[-122.308869,37.884002],[-122.308961,37.884379],[-122.308985,37.884467],[-122.309138,37.885022],[-122.309412,37.88606],[-122.309523,37.88645],[-122.309532,37.88666],[-122.309546,37.886834],[-122.309542,37.886964],[-122.309513,37.887059],[-122.30945,37.887157],[-122.30938,37.88722],[-122.309278,37.887316],[-122.309287,37.887238],[-122.309321,37.88697],[-122.309316,37.886821],[-122.30925,37.886311],[-122.309233,37.886207],[-122.309222,37.886138],[-122.309159,37.885869],[-122.309052,37.88539],[-122.308993,37.885125]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1011","GEOID10":"060014204001011","NAME10":"Block 1011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":542505.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886237","INTPTLON10":"-122.314137"},"geometry":{"type":"Polygon","coordinates":[[[-122.309215,37.887843],[-122.309277,37.887586],[-122.309278,37.887316],[-122.30938,37.88722],[-122.30945,37.887157],[-122.309513,37.887059],[-122.309542,37.886964],[-122.309546,37.886834],[-122.309532,37.88666],[-122.309523,37.88645],[-122.309412,37.88606],[-122.309138,37.885022],[-122.308985,37.884467],[-122.308961,37.884379],[-122.308869,37.884002],[-122.308628,37.883478],[-122.308579,37.883237],[-122.308434,37.882516],[-122.308395,37.88232],[-122.308384,37.882276],[-122.308542,37.882242],[-122.30917,37.882102],[-122.311528,37.881579],[-122.312315,37.881405],[-122.312451,37.881375],[-122.312881,37.882011],[-122.313034,37.882193],[-122.313325,37.882325],[-122.313582,37.882413],[-122.313907,37.882632],[-122.314136,37.883072],[-122.314372,37.883358],[-122.314573,37.883517],[-122.315017,37.883956],[-122.315162,37.884022],[-122.315315,37.88405],[-122.315453,37.884011],[-122.315585,37.884055],[-122.315641,37.884275],[-122.315606,37.88439],[-122.315453,37.884588],[-122.315446,37.884698],[-122.315474,37.884824],[-122.315491,37.884857],[-122.315696,37.885253],[-122.316084,37.885429],[-122.316022,37.885495],[-122.317041,37.885489],[-122.317034,37.885753],[-122.316861,37.885758],[-122.316861,37.885638],[-122.316015,37.885649],[-122.315966,37.885945],[-122.316445,37.885945],[-122.316459,37.886116],[-122.315932,37.886231],[-122.315876,37.886572],[-122.315897,37.886802],[-122.315862,37.887143],[-122.315828,37.887374],[-122.316036,37.887907],[-122.316209,37.888121],[-122.316445,37.88839],[-122.316583,37.888582],[-122.316743,37.888725],[-122.316833,37.888918],[-122.317027,37.889104],[-122.317249,37.889269],[-122.317637,37.88933],[-122.317797,37.889346],[-122.318934,37.889373],[-122.319453,37.889434],[-122.319606,37.889428],[-122.320022,37.889357],[-122.320916,37.889236],[-122.321332,37.889264],[-122.32163,37.889357],[-122.321921,37.889401],[-122.32224,37.889379],[-122.322525,37.889291],[-122.32276,37.889153],[-122.322837,37.889055],[-122.322927,37.88884],[-122.322934,37.888719],[-122.322899,37.888373],[-122.322927,37.888269],[-122.323481,37.888164],[-122.323558,37.888143],[-122.324597,37.887873],[-122.324895,37.887906],[-122.325429,37.888065],[-122.325824,37.888236],[-122.326705,37.888587],[-122.327017,37.888681],[-122.327162,37.888664],[-122.327412,37.888609],[-122.327551,37.888675],[-122.327447,37.88901],[-122.327433,37.889126],[-122.327474,37.889235],[-122.327481,37.889345],[-122.327568,37.889656],[-122.31577,37.889504],[-122.315581,37.889625],[-122.311228,37.889446],[-122.310172,37.888518],[-122.30999,37.888327],[-122.309792,37.888119],[-122.309765,37.888043],[-122.309685,37.887954],[-122.309503,37.887786],[-122.30946,37.887751],[-122.309348,37.887659],[-122.309275,37.887867],[-122.309215,37.887843]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1012","GEOID10":"060014204001012","NAME10":"Block 1012","MTFCC10":"G5040","UR10":"R","UACE10":null,"UATYP10":null,"FUNCSTAT10":"S","ALAND10":0.000000,"AWATER10":1632801.000000,"INTPTLAT10":"+37.884202","INTPTLON10":"-122.323753"},"geometry":{"type":"Polygon","coordinates":[[[-122.32763,37.877356],[-122.334735,37.889576],[-122.33177,37.889609],[-122.327568,37.889656],[-122.327481,37.889345],[-122.327474,37.889235],[-122.327433,37.889126],[-122.327447,37.88901],[-122.327551,37.888675],[-122.327412,37.888609],[-122.327162,37.888664],[-122.327017,37.888681],[-122.326705,37.888587],[-122.325824,37.888236],[-122.325429,37.888065],[-122.324895,37.887906],[-122.324597,37.887873],[-122.323558,37.888143],[-122.323481,37.888164],[-122.322927,37.888269],[-122.322899,37.888373],[-122.322934,37.888719],[-122.322927,37.88884],[-122.322837,37.889055],[-122.32276,37.889153],[-122.322525,37.889291],[-122.32224,37.889379],[-122.321921,37.889401],[-122.32163,37.889357],[-122.321332,37.889264],[-122.320916,37.889236],[-122.320022,37.889357],[-122.319606,37.889428],[-122.319453,37.889434],[-122.318934,37.889373],[-122.317797,37.889346],[-122.317637,37.88933],[-122.317249,37.889269],[-122.317027,37.889104],[-122.316833,37.888918],[-122.316743,37.888725],[-122.316583,37.888582],[-122.316445,37.88839],[-122.316209,37.888121],[-122.316036,37.887907],[-122.315828,37.887374],[-122.315862,37.887143],[-122.315897,37.886802],[-122.315876,37.886572],[-122.315932,37.886231],[-122.316459,37.886116],[-122.316445,37.885945],[-122.315966,37.885945],[-122.316015,37.885649],[-122.316861,37.885638],[-122.316861,37.885758],[-122.317034,37.885753],[-122.317041,37.885489],[-122.316022,37.885495],[-122.316084,37.885429],[-122.315696,37.885253],[-122.315491,37.884857],[-122.315474,37.884824],[-122.315446,37.884698],[-122.315453,37.884588],[-122.315606,37.88439],[-122.315641,37.884275],[-122.315585,37.884055],[-122.315453,37.884011],[-122.315315,37.88405],[-122.315162,37.884022],[-122.315017,37.883956],[-122.314573,37.883517],[-122.314372,37.883358],[-122.314136,37.883072],[-122.313907,37.882632],[-122.313582,37.882413],[-122.313325,37.882325],[-122.313034,37.882193],[-122.312881,37.882011],[-122.312451,37.881375],[-122.323517,37.878445],[-122.32763,37.877356]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1013","GEOID10":"060014204001013","NAME10":"Block 1013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":9671.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884896","INTPTLON10":"-122.303418","population":133},"geometry":{"type":"Polygon","coordinates":[[[-122.303296,37.883708],[-122.303564,37.884638],[-122.30372,37.885124],[-122.303849,37.885526],[-122.303888,37.885647],[-122.303935,37.885888],[-122.303416,37.885931],[-122.30316,37.884775],[-122.30309,37.88446],[-122.303037,37.884222],[-122.302939,37.88378],[-122.303296,37.883708]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1014","GEOID10":"060014204001014","NAME10":"Block 1014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":85670.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884677","INTPTLON10":"-122.301576","population":414},"geometry":{"type":"Polygon","coordinates":[[[-122.302598,37.883056],[-122.302657,37.883163],[-122.302814,37.883508],[-122.302939,37.88378],[-122.303037,37.884222],[-122.30309,37.88446],[-122.30316,37.884775],[-122.303416,37.885931],[-122.302499,37.886007],[-122.302323,37.88603],[-122.301798,37.886099],[-122.301623,37.886123],[-122.300512,37.886317],[-122.300408,37.886006],[-122.300391,37.885956],[-122.300341,37.885807],[-122.300325,37.885758],[-122.300218,37.88542],[-122.300122,37.885113],[-122.300045,37.884869],[-122.299956,37.884587],[-122.299916,37.884429],[-122.299913,37.884403],[-122.299892,37.884174],[-122.299894,37.88405],[-122.299797,37.884069],[-122.299804,37.883984],[-122.299809,37.883933],[-122.299817,37.88388],[-122.299837,37.883801],[-122.299855,37.883747],[-122.299871,37.883692],[-122.299892,37.883625],[-122.299923,37.883547],[-122.299947,37.883495],[-122.299978,37.883432],[-122.300008,37.883386],[-122.300055,37.883324],[-122.300147,37.883277],[-122.300231,37.88322],[-122.300296,37.883215],[-122.300335,37.883252],[-122.300392,37.883266],[-122.300454,37.883271],[-122.300515,37.883287],[-122.300591,37.883321],[-122.30065,37.883349],[-122.300715,37.883366],[-122.30078,37.883385],[-122.300848,37.883398],[-122.300919,37.883401],[-122.300983,37.883396],[-122.300928,37.883375],[-122.300972,37.88335],[-122.301036,37.883353],[-122.301104,37.883342],[-122.301164,37.883331],[-122.301221,37.883317],[-122.301274,37.883298],[-122.301329,37.883279],[-122.301393,37.883265],[-122.301457,37.883262],[-122.301521,37.88325],[-122.301591,37.883239],[-122.30165,37.883211],[-122.301718,37.88319],[-122.301784,37.883174],[-122.30185,37.883158],[-122.301917,37.883149],[-122.302002,37.883127],[-122.30206,37.883116],[-122.302115,37.883104],[-122.302197,37.883115],[-122.302598,37.883056]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1015","GEOID10":"060014204001015","NAME10":"Block 1015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":79019.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885827","INTPTLON10":"-122.299123"},"geometry":{"type":"Polygon","coordinates":[[[-122.298281,37.884381],[-122.298604,37.884318],[-122.298823,37.884276],[-122.299365,37.884157],[-122.299571,37.884115],[-122.299797,37.884069],[-122.299894,37.88405],[-122.299892,37.884174],[-122.299913,37.884403],[-122.299916,37.884429],[-122.299956,37.884587],[-122.300045,37.884869],[-122.300122,37.885113],[-122.300218,37.88542],[-122.300325,37.885758],[-122.300341,37.885807],[-122.300391,37.885956],[-122.300408,37.886006],[-122.300512,37.886317],[-122.300809,37.887203],[-122.300824,37.88725],[-122.300951,37.88765],[-122.300681,37.887655],[-122.300568,37.887616],[-122.300166,37.887596],[-122.299918,37.887554],[-122.299732,37.887512],[-122.299559,37.887454],[-122.299439,37.887404],[-122.299303,37.887341],[-122.298512,37.886889],[-122.29839,37.88683],[-122.298268,37.886779],[-122.298141,37.886738],[-122.297909,37.886679],[-122.297237,37.884582],[-122.297445,37.884541],[-122.298072,37.884421],[-122.298281,37.884381]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1016","GEOID10":"060014204001016","NAME10":"Block 1016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":8910.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884743","INTPTLON10":"-122.304095","population":116},"geometry":{"type":"Polygon","coordinates":[[[-122.303886,37.884729],[-122.303739,37.884204],[-122.303585,37.883651],[-122.303761,37.883615],[-122.303948,37.883579],[-122.304115,37.88413],[-122.304347,37.884861],[-122.304479,37.885327],[-122.304523,37.885471],[-122.304573,37.88584],[-122.304204,37.885867],[-122.304152,37.885644],[-122.304083,37.885435],[-122.303886,37.884729]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1017","GEOID10":"060014204001017","NAME10":"Block 1017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":6144.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884747","INTPTLON10":"-122.303748","population":90},"geometry":{"type":"Polygon","coordinates":[[[-122.303296,37.883708],[-122.303441,37.883679],[-122.303585,37.883651],[-122.303739,37.884204],[-122.303886,37.884729],[-122.304083,37.885435],[-122.304152,37.885644],[-122.304204,37.885867],[-122.303935,37.885888],[-122.303888,37.885647],[-122.303849,37.885526],[-122.30372,37.885124],[-122.303564,37.884638],[-122.303296,37.883708]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1018","GEOID10":"060014204001018","NAME10":"Block 1018","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":22069.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883579","INTPTLON10":"-122.299068","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.300239,37.883031],[-122.300258,37.88311],[-122.300282,37.883158],[-122.300296,37.883215],[-122.300231,37.88322],[-122.300147,37.883277],[-122.300055,37.883324],[-122.300008,37.883386],[-122.299978,37.883432],[-122.299947,37.883495],[-122.299923,37.883547],[-122.299892,37.883625],[-122.299871,37.883692],[-122.299855,37.883747],[-122.299837,37.883801],[-122.299817,37.88388],[-122.299809,37.883933],[-122.299804,37.883984],[-122.299797,37.884069],[-122.299571,37.884115],[-122.299365,37.884157],[-122.298823,37.884276],[-122.298604,37.884318],[-122.298281,37.884381],[-122.298225,37.884178],[-122.298217,37.884155],[-122.298113,37.883846],[-122.298097,37.883769],[-122.298088,37.88355],[-122.298067,37.883474],[-122.298042,37.883377],[-122.298001,37.88325],[-122.298151,37.883197],[-122.298288,37.883165],[-122.298969,37.88301],[-122.29917,37.882984],[-122.299392,37.882956],[-122.299469,37.88295],[-122.299614,37.882938],[-122.299808,37.882923],[-122.300049,37.882889],[-122.300194,37.882869],[-122.300219,37.882955],[-122.300225,37.882973],[-122.300239,37.883031]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1019","GEOID10":"060014204001019","NAME10":"Block 1019","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11921.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883931","INTPTLON10":"-122.297603"},"geometry":{"type":"Polygon","coordinates":[[[-122.297237,37.884582],[-122.297189,37.884423],[-122.297125,37.884209],[-122.29704,37.883951],[-122.296989,37.883794],[-122.296969,37.883734],[-122.29691,37.883557],[-122.296891,37.883498],[-122.297118,37.883475],[-122.297153,37.883472],[-122.297749,37.88334],[-122.297786,37.883326],[-122.298001,37.88325],[-122.298042,37.883377],[-122.298067,37.883474],[-122.298088,37.88355],[-122.298097,37.883769],[-122.298113,37.883846],[-122.298217,37.884155],[-122.298225,37.884178],[-122.298281,37.884381],[-122.298072,37.884421],[-122.297445,37.884541],[-122.297237,37.884582]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420400","BLOCKCE10":"1020","GEOID10":"060014204001020","NAME10":"Block 1020","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":12062.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.882965","INTPTLON10":"-122.301396","population":44},"geometry":{"type":"Polygon","coordinates":[[[-122.300258,37.88311],[-122.300239,37.883031],[-122.300225,37.882973],[-122.300219,37.882955],[-122.300194,37.882869],[-122.300628,37.882808],[-122.300674,37.882802],[-122.30109,37.882763],[-122.30152,37.882665],[-122.301901,37.882571],[-122.301921,37.882567],[-122.302331,37.8825],[-122.302354,37.882495],[-122.302369,37.882546],[-122.302414,37.8827],[-122.30243,37.882752],[-122.302598,37.883056],[-122.302197,37.883115],[-122.302115,37.883104],[-122.30206,37.883116],[-122.302002,37.883127],[-122.301917,37.883149],[-122.30185,37.883158],[-122.301784,37.883174],[-122.301718,37.88319],[-122.30165,37.883211],[-122.301591,37.883239],[-122.301521,37.88325],[-122.301457,37.883262],[-122.301393,37.883265],[-122.301329,37.883279],[-122.301274,37.883298],[-122.301221,37.883317],[-122.301164,37.883331],[-122.301104,37.883342],[-122.301036,37.883353],[-122.300972,37.88335],[-122.300928,37.883375],[-122.300983,37.883396],[-122.300919,37.883401],[-122.300848,37.883398],[-122.30078,37.883385],[-122.300715,37.883366],[-122.30065,37.883349],[-122.300591,37.883321],[-122.300515,37.883287],[-122.300454,37.883271],[-122.300392,37.883266],[-122.300335,37.883252],[-122.300296,37.883215],[-122.300282,37.883158],[-122.300258,37.88311]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1000","GEOID10":"060014205001000","NAME10":"Block 1000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":367.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890513","INTPTLON10":"-122.294112"},"geometry":{"type":"Polygon","coordinates":[[[-122.293699,37.890506],[-122.29387,37.890502],[-122.294221,37.890483],[-122.294488,37.890471],[-122.294504,37.890519],[-122.294383,37.890525],[-122.294243,37.890533],[-122.294022,37.890541],[-122.293902,37.890546],[-122.293869,37.890547],[-122.29377,37.890552],[-122.293738,37.890555],[-122.293699,37.890506]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1001","GEOID10":"060014205001001","NAME10":"Block 1001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":419.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890469","INTPTLON10":"-122.294939"},"geometry":{"type":"Polygon","coordinates":[[[-122.294488,37.890471],[-122.295376,37.89042],[-122.29539,37.890468],[-122.295212,37.890478],[-122.294681,37.890508],[-122.294504,37.890519],[-122.294488,37.890471]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1002","GEOID10":"060014205001002","NAME10":"Block 1002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":411.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890411","INTPTLON10":"-122.295818"},"geometry":{"type":"Polygon","coordinates":[[[-122.296247,37.890355],[-122.296262,37.890403],[-122.296087,37.890415],[-122.295564,37.890454],[-122.29539,37.890468],[-122.295376,37.89042],[-122.296247,37.890355]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1003","GEOID10":"060014205001003","NAME10":"Block 1003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":422.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890358","INTPTLON10":"-122.296696"},"geometry":{"type":"Polygon","coordinates":[[[-122.296247,37.890355],[-122.297123,37.890313],[-122.297139,37.890363],[-122.296963,37.890371],[-122.296437,37.890394],[-122.296262,37.890403],[-122.296247,37.890355]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1004","GEOID10":"060014205001004","NAME10":"Block 1004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":521.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890309","INTPTLON10":"-122.297598"},"geometry":{"type":"Polygon","coordinates":[[[-122.297123,37.890313],[-122.298005,37.890249],[-122.298027,37.890319],[-122.297849,37.890327],[-122.297316,37.890353],[-122.297139,37.890363],[-122.297123,37.890313]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1005","GEOID10":"060014205001005","NAME10":"Block 1005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":627.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890267","INTPTLON10":"-122.298466"},"geometry":{"type":"Polygon","coordinates":[[[-122.298027,37.890319],[-122.298005,37.890249],[-122.298509,37.890232],[-122.29891,37.890211],[-122.298929,37.890275],[-122.298846,37.890282],[-122.298724,37.890294],[-122.298514,37.890304],[-122.298232,37.890312],[-122.298027,37.890319]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1006","GEOID10":"060014205001006","NAME10":"Block 1006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":25175.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889049","INTPTLON10":"-122.293592","population":49},"geometry":{"type":"Polygon","coordinates":[[[-122.29271,37.887727],[-122.292685,37.887655],[-122.29358,37.887625],[-122.293557,37.887489],[-122.29358,37.887559],[-122.293747,37.888094],[-122.294314,37.889913],[-122.294488,37.890471],[-122.294221,37.890483],[-122.29387,37.890502],[-122.293699,37.890506],[-122.293619,37.890403],[-122.293543,37.890307],[-122.293411,37.889872],[-122.293263,37.889429],[-122.293047,37.888782],[-122.292828,37.888098],[-122.29271,37.887727]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1007","GEOID10":"060014205001007","NAME10":"Block 1007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":32096.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888458","INTPTLON10":"-122.297915","population":70},"geometry":{"type":"Polygon","coordinates":[[[-122.297787,37.886735],[-122.297764,37.886665],[-122.297909,37.886679],[-122.297934,37.886756],[-122.298249,37.887758],[-122.298127,37.887769],[-122.29891,37.890211],[-122.298509,37.890232],[-122.298005,37.890249],[-122.297803,37.889617],[-122.297131,37.887512],[-122.296929,37.886878],[-122.297533,37.886751],[-122.297787,37.886735]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1008","GEOID10":"060014205001008","NAME10":"Block 1008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":3061.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889016","INTPTLON10":"-122.298589"},"geometry":{"type":"Polygon","coordinates":[[[-122.298127,37.887769],[-122.298249,37.887758],[-122.298409,37.888259],[-122.298891,37.889762],[-122.299031,37.890196],[-122.299051,37.890264],[-122.298929,37.890275],[-122.29891,37.890211],[-122.298127,37.887769]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1009","GEOID10":"060014205001009","NAME10":"Block 1009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":5818.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888889","INTPTLON10":"-122.292965"},"geometry":{"type":"Polygon","coordinates":[[[-122.29271,37.887727],[-122.292828,37.888098],[-122.293047,37.888782],[-122.293263,37.889429],[-122.293411,37.889872],[-122.293543,37.890307],[-122.293251,37.889959],[-122.293128,37.889812],[-122.292997,37.889389],[-122.292951,37.88924],[-122.292791,37.888749],[-122.292593,37.888123],[-122.292567,37.888041],[-122.292473,37.887775],[-122.29245,37.887705],[-122.292685,37.887655],[-122.29271,37.887727]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1010","GEOID10":"060014205001010","NAME10":"Block 1010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":26672.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888848","INTPTLON10":"-122.295319","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.296247,37.890355],[-122.295376,37.89042],[-122.295189,37.889836],[-122.294586,37.887944],[-122.294408,37.887386],[-122.295234,37.88722],[-122.295421,37.8878],[-122.296052,37.889752],[-122.296247,37.890355]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1011","GEOID10":"060014205001011","NAME10":"Block 1011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":26518.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888930","INTPTLON10":"-122.294456","population":68},"geometry":{"type":"Polygon","coordinates":[[[-122.294408,37.887386],[-122.294586,37.887944],[-122.295189,37.889836],[-122.295376,37.89042],[-122.294488,37.890471],[-122.294314,37.889913],[-122.293747,37.888094],[-122.29358,37.887559],[-122.293557,37.887489],[-122.293723,37.887456],[-122.293845,37.887432],[-122.29422,37.88735],[-122.294386,37.887314],[-122.294408,37.887386]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1012","GEOID10":"060014205001012","NAME10":"Block 1012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":615.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887267","INTPTLON10":"-122.294807"},"geometry":{"type":"Polygon","coordinates":[[[-122.295234,37.88722],[-122.294408,37.887386],[-122.294386,37.887314],[-122.294551,37.88728],[-122.295046,37.887182],[-122.295212,37.88715],[-122.295234,37.88722]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1013","GEOID10":"060014205001013","NAME10":"Block 1013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":616.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887099","INTPTLON10":"-122.295642"},"geometry":{"type":"Polygon","coordinates":[[[-122.296075,37.887049],[-122.295234,37.88722],[-122.295212,37.88715],[-122.295379,37.887115],[-122.295883,37.887013],[-122.296051,37.886979],[-122.296075,37.887049]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1014","GEOID10":"060014205001014","NAME10":"Block 1014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":28068.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888734","INTPTLON10":"-122.296175","population":69},"geometry":{"type":"Polygon","coordinates":[[[-122.297123,37.890313],[-122.296247,37.890355],[-122.296052,37.889752],[-122.295421,37.8878],[-122.295234,37.88722],[-122.296075,37.887049],[-122.296269,37.887655],[-122.296442,37.888196],[-122.296714,37.888984],[-122.296929,37.889683],[-122.297123,37.890313]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1015","GEOID10":"060014205001015","NAME10":"Block 1015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":29154.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888616","INTPTLON10":"-122.297036","population":83},"geometry":{"type":"Polygon","coordinates":[[[-122.297123,37.890313],[-122.296929,37.889683],[-122.296714,37.888984],[-122.296442,37.888196],[-122.296269,37.887655],[-122.296075,37.887049],[-122.296929,37.886878],[-122.297131,37.887512],[-122.297803,37.889617],[-122.298005,37.890249],[-122.297123,37.890313]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1016","GEOID10":"060014205001016","NAME10":"Block 1016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":614.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886929","INTPTLON10":"-122.296487"},"geometry":{"type":"Polygon","coordinates":[[[-122.296906,37.886811],[-122.296929,37.886878],[-122.296075,37.887049],[-122.296051,37.886979],[-122.296221,37.886945],[-122.296735,37.886844],[-122.296906,37.886811]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"1017","GEOID10":"060014205001017","NAME10":"Block 1017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":621.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886758","INTPTLON10":"-122.297347"},"geometry":{"type":"Polygon","coordinates":[[[-122.297764,37.886665],[-122.297787,37.886735],[-122.297533,37.886751],[-122.296929,37.886878],[-122.296906,37.886811],[-122.297105,37.886767],[-122.297514,37.886679],[-122.297611,37.886671],[-122.297706,37.886667],[-122.297764,37.886665]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2000","GEOID10":"060014205002000","NAME10":"Block 2000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":6434.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886278","INTPTLON10":"-122.292116"},"geometry":{"type":"Polygon","coordinates":[[[-122.29245,37.887705],[-122.292278,37.887138],[-122.292198,37.886874],[-122.292038,37.886378],[-122.291733,37.885447],[-122.291677,37.885275],[-122.291516,37.884897],[-122.291565,37.884886],[-122.291714,37.884857],[-122.291764,37.884847],[-122.292685,37.887655],[-122.29245,37.887705]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2001","GEOID10":"060014205002001","NAME10":"Block 2001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":26078.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886197","INTPTLON10":"-122.292674","population":58},"geometry":{"type":"Polygon","coordinates":[[[-122.293557,37.887489],[-122.29358,37.887625],[-122.292685,37.887655],[-122.291764,37.884847],[-122.291937,37.884811],[-122.292458,37.884704],[-122.292632,37.884669],[-122.292724,37.884949],[-122.293001,37.88579],[-122.293094,37.886071],[-122.293186,37.886354],[-122.293464,37.887205],[-122.293557,37.887489]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2002","GEOID10":"060014205002002","NAME10":"Block 2002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24228.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885997","INTPTLON10":"-122.293508","population":60},"geometry":{"type":"Polygon","coordinates":[[[-122.294386,37.887314],[-122.29422,37.88735],[-122.293845,37.887432],[-122.293723,37.887456],[-122.293557,37.887489],[-122.293464,37.887205],[-122.293186,37.886354],[-122.293094,37.886071],[-122.293001,37.88579],[-122.292724,37.884949],[-122.292632,37.884669],[-122.292796,37.884635],[-122.293289,37.884536],[-122.293454,37.884503],[-122.29364,37.885065],[-122.294199,37.886751],[-122.294386,37.887314]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2003","GEOID10":"060014205002003","NAME10":"Block 2003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24754.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885811","INTPTLON10":"-122.294338","population":58},"geometry":{"type":"Polygon","coordinates":[[[-122.295212,37.88715],[-122.295046,37.887182],[-122.294551,37.88728],[-122.294386,37.887314],[-122.294199,37.886751],[-122.29364,37.885065],[-122.293454,37.884503],[-122.293481,37.884497],[-122.293562,37.884481],[-122.29359,37.884476],[-122.293735,37.884446],[-122.293758,37.884442],[-122.294168,37.884349],[-122.294313,37.884317],[-122.294492,37.884883],[-122.295032,37.886583],[-122.295212,37.88715]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2004","GEOID10":"060014205002004","NAME10":"Block 2004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24848.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885646","INTPTLON10":"-122.295184","population":63},"geometry":{"type":"Polygon","coordinates":[[[-122.295167,37.884153],[-122.296051,37.886979],[-122.295883,37.887013],[-122.295379,37.887115],[-122.295212,37.88715],[-122.295032,37.886583],[-122.294492,37.884883],[-122.294313,37.884317],[-122.295167,37.884153]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2005","GEOID10":"060014205002005","NAME10":"Block 2005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24545.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885491","INTPTLON10":"-122.296030","population":98},"geometry":{"type":"Polygon","coordinates":[[[-122.296051,37.886979],[-122.295167,37.884153],[-122.295536,37.884076],[-122.295985,37.883986],[-122.296169,37.884551],[-122.296721,37.886246],[-122.296906,37.886811],[-122.296735,37.886844],[-122.296221,37.886945],[-122.296051,37.886979]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2006","GEOID10":"060014205002006","NAME10":"Block 2006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":25305.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885307","INTPTLON10":"-122.296875","population":91},"geometry":{"type":"Polygon","coordinates":[[[-122.296859,37.88382],[-122.297114,37.88461],[-122.297764,37.886665],[-122.297706,37.886667],[-122.297611,37.886671],[-122.297514,37.886679],[-122.297105,37.886767],[-122.296906,37.886811],[-122.296721,37.886246],[-122.296169,37.884551],[-122.295985,37.883986],[-122.296185,37.883947],[-122.296788,37.883833],[-122.296859,37.88382]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2007","GEOID10":"060014205002007","NAME10":"Block 2007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":2761.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885644","INTPTLON10":"-122.297509"},"geometry":{"type":"Polygon","coordinates":[[[-122.297764,37.886665],[-122.297114,37.88461],[-122.297237,37.884582],[-122.297909,37.886679],[-122.297764,37.886665]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2008","GEOID10":"060014205002008","NAME10":"Block 2008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1060.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884198","INTPTLON10":"-122.297050"},"geometry":{"type":"Polygon","coordinates":[[[-122.297114,37.88461],[-122.296859,37.88382],[-122.296989,37.883794],[-122.29704,37.883951],[-122.297125,37.884209],[-122.297189,37.884423],[-122.297237,37.884582],[-122.297114,37.88461]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2009","GEOID10":"060014205002009","NAME10":"Block 2009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":410.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883655","INTPTLON10":"-122.296873"},"geometry":{"type":"Polygon","coordinates":[[[-122.296859,37.88382],[-122.296756,37.883511],[-122.296891,37.883498],[-122.29691,37.883557],[-122.296969,37.883734],[-122.296989,37.883794],[-122.296859,37.88382]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2010","GEOID10":"060014205002010","NAME10":"Block 2010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":6161.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883536","INTPTLON10":"-122.296220","population":24},"geometry":{"type":"Polygon","coordinates":[[[-122.295958,37.883046],[-122.296092,37.883065],[-122.296231,37.88318],[-122.296356,37.883329],[-122.296629,37.883473],[-122.296709,37.883516],[-122.296756,37.883511],[-122.296859,37.88382],[-122.296788,37.883833],[-122.296185,37.883947],[-122.295985,37.883986],[-122.295688,37.88301],[-122.295958,37.883046]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2011","GEOID10":"060014205002011","NAME10":"Block 2011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10125.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883481","INTPTLON10":"-122.295359","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.295167,37.884153],[-122.294804,37.883082],[-122.294707,37.882775],[-122.295448,37.882977],[-122.295688,37.88301],[-122.295985,37.883986],[-122.295536,37.884076],[-122.295167,37.884153]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2012","GEOID10":"060014205002012","NAME10":"Block 2012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":12579.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883527","INTPTLON10":"-122.294503","population":35},"geometry":{"type":"Polygon","coordinates":[[[-122.295167,37.884153],[-122.294313,37.884317],[-122.294243,37.884125],[-122.293852,37.882939],[-122.293992,37.882911],[-122.294373,37.882752],[-122.294602,37.882746],[-122.294707,37.882775],[-122.294804,37.883082],[-122.295167,37.884153]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2013","GEOID10":"060014205002013","NAME10":"Block 2013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":12945.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883693","INTPTLON10":"-122.293633","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.293351,37.884196],[-122.29327,37.883961],[-122.293029,37.883258],[-122.292949,37.883024],[-122.293126,37.882988],[-122.29377,37.882955],[-122.293852,37.882939],[-122.294243,37.884125],[-122.294313,37.884317],[-122.294168,37.884349],[-122.293758,37.884442],[-122.293735,37.884446],[-122.29359,37.884476],[-122.293562,37.884481],[-122.293481,37.884497],[-122.293454,37.884503],[-122.293433,37.884441],[-122.293371,37.884257],[-122.293351,37.884196]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2014","GEOID10":"060014205002014","NAME10":"Block 2014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":13013.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883836","INTPTLON10":"-122.292777","population":40},"geometry":{"type":"Polygon","coordinates":[[[-122.292533,37.884387],[-122.292482,37.88424],[-122.292443,37.884135],[-122.292166,37.883382],[-122.292074,37.883132],[-122.29225,37.883126],[-122.292481,37.883119],[-122.292775,37.883059],[-122.292949,37.883024],[-122.293029,37.883258],[-122.29327,37.883961],[-122.293351,37.884196],[-122.293371,37.884257],[-122.293433,37.884441],[-122.293454,37.884503],[-122.293289,37.884536],[-122.292796,37.884635],[-122.292632,37.884669],[-122.292612,37.884612],[-122.292552,37.884443],[-122.292533,37.884387]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2015","GEOID10":"060014205002015","NAME10":"Block 2015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":13985.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883973","INTPTLON10":"-122.291926","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.292074,37.883132],[-122.292166,37.883382],[-122.292443,37.884135],[-122.292482,37.88424],[-122.292533,37.884387],[-122.292552,37.884443],[-122.292612,37.884612],[-122.292632,37.884669],[-122.292458,37.884704],[-122.291937,37.884811],[-122.291764,37.884847],[-122.291665,37.884524],[-122.291664,37.884522],[-122.291467,37.88397],[-122.291342,37.883557],[-122.291245,37.883233],[-122.291302,37.883229],[-122.29141,37.883209],[-122.291802,37.883141],[-122.291906,37.883137],[-122.292074,37.883132]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420500","BLOCKCE10":"2016","GEOID10":"060014205002016","NAME10":"Block 2016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":5264.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883995","INTPTLON10":"-122.291315"},"geometry":{"type":"Polygon","coordinates":[[[-122.291516,37.884897],[-122.291358,37.884474],[-122.291152,37.883996],[-122.290831,37.883311],[-122.29106,37.883245],[-122.291245,37.883233],[-122.291342,37.883557],[-122.291467,37.88397],[-122.291664,37.884522],[-122.291665,37.884524],[-122.291764,37.884847],[-122.291714,37.884857],[-122.291565,37.884886],[-122.291516,37.884897]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1000","GEOID10":"060014206001000","NAME10":"Block 1000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":443.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891126","INTPTLON10":"-122.282947"},"geometry":{"type":"Polygon","coordinates":[[[-122.283478,37.891076],[-122.283482,37.891117],[-122.283276,37.891131],[-122.283267,37.891131],[-122.283024,37.891143],[-122.282751,37.891162],[-122.282623,37.891165],[-122.282409,37.891171],[-122.282407,37.891133],[-122.282747,37.891117],[-122.283478,37.891076]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1001","GEOID10":"060014206001001","NAME10":"Block 1001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":394.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891068","INTPTLON10":"-122.283973"},"geometry":{"type":"Polygon","coordinates":[[[-122.283478,37.891076],[-122.284161,37.891037],[-122.284497,37.891026],[-122.284468,37.891062],[-122.28427,37.891073],[-122.283679,37.891105],[-122.283482,37.891117],[-122.283478,37.891076]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1002","GEOID10":"060014206001002","NAME10":"Block 1002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":424.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.891015","INTPTLON10":"-122.285093"},"geometry":{"type":"Polygon","coordinates":[[[-122.284497,37.891026],[-122.284978,37.891002],[-122.285677,37.89097],[-122.285701,37.891006],[-122.285454,37.891017],[-122.284714,37.89105],[-122.284468,37.891062],[-122.284497,37.891026]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1003","GEOID10":"060014206001003","NAME10":"Block 1003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16431.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890214","INTPTLON10":"-122.284831","population":27},"geometry":{"type":"Polygon","coordinates":[[[-122.284497,37.891026],[-122.28451,37.890965],[-122.284509,37.890916],[-122.284472,37.890691],[-122.284467,37.890661],[-122.284397,37.890471],[-122.284111,37.889595],[-122.284107,37.889582],[-122.284025,37.889304],[-122.284434,37.88941],[-122.284594,37.889447],[-122.28472,37.88947],[-122.285002,37.889495],[-122.285164,37.889502],[-122.285239,37.889751],[-122.285532,37.890718],[-122.285555,37.890791],[-122.285573,37.890832],[-122.285601,37.890875],[-122.285677,37.89097],[-122.284978,37.891002],[-122.284497,37.891026]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1004","GEOID10":"060014206001004","NAME10":"Block 1004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19676.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890110","INTPTLON10":"-122.283723","population":22},"geometry":{"type":"Polygon","coordinates":[[[-122.283478,37.891076],[-122.283441,37.890891],[-122.283379,37.890687],[-122.283171,37.889997],[-122.282968,37.889427],[-122.28289,37.889209],[-122.282853,37.889159],[-122.282829,37.889137],[-122.283072,37.889134],[-122.283276,37.889146],[-122.283452,37.889163],[-122.283528,37.889175],[-122.283638,37.889202],[-122.284025,37.889304],[-122.284107,37.889582],[-122.284111,37.889595],[-122.284397,37.890471],[-122.284467,37.890661],[-122.284472,37.890691],[-122.284509,37.890916],[-122.28451,37.890965],[-122.284497,37.891026],[-122.284161,37.891037],[-122.283478,37.891076]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1005","GEOID10":"060014206001005","NAME10":"Block 1005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19453.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890166","INTPTLON10":"-122.282689","population":22},"geometry":{"type":"Polygon","coordinates":[[[-122.283478,37.891076],[-122.282747,37.891117],[-122.282407,37.891133],[-122.282399,37.890975],[-122.282372,37.89081],[-122.282365,37.890789],[-122.282313,37.890623],[-122.282199,37.890325],[-122.28207,37.889921],[-122.281991,37.889699],[-122.281888,37.889406],[-122.282033,37.889339],[-122.282288,37.889232],[-122.282487,37.889184],[-122.282634,37.889158],[-122.282829,37.889137],[-122.282853,37.889159],[-122.28289,37.889209],[-122.282968,37.889427],[-122.283171,37.889997],[-122.283379,37.890687],[-122.283441,37.890891],[-122.283478,37.891076]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1006","GEOID10":"060014206001006","NAME10":"Block 1006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":691.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889207","INTPTLON10":"-122.282320"},"geometry":{"type":"Polygon","coordinates":[[[-122.282735,37.889071],[-122.282829,37.889137],[-122.282634,37.889158],[-122.282487,37.889184],[-122.282288,37.889232],[-122.282033,37.889339],[-122.281888,37.889406],[-122.281866,37.889336],[-122.281989,37.889276],[-122.282031,37.889257],[-122.282186,37.889191],[-122.282328,37.889145],[-122.282554,37.889098],[-122.282613,37.889086],[-122.282697,37.889073],[-122.282735,37.889071]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1007","GEOID10":"060014206001007","NAME10":"Block 1007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":282.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889214","INTPTLON10":"-122.283828"},"geometry":{"type":"Polygon","coordinates":[[[-122.284012,37.889225],[-122.284015,37.889263],[-122.284025,37.889304],[-122.283638,37.889202],[-122.283648,37.889128],[-122.283688,37.889137],[-122.283721,37.889145],[-122.283939,37.889205],[-122.284012,37.889225]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1008","GEOID10":"060014206001008","NAME10":"Block 1008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":832.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889391","INTPTLON10":"-122.284590"},"geometry":{"type":"Polygon","coordinates":[[[-122.285164,37.889502],[-122.285002,37.889495],[-122.28472,37.88947],[-122.284594,37.889447],[-122.284434,37.88941],[-122.284025,37.889304],[-122.284015,37.889263],[-122.284012,37.889225],[-122.284242,37.889285],[-122.28446,37.889343],[-122.28462,37.88938],[-122.284686,37.889391],[-122.284884,37.889413],[-122.284944,37.889417],[-122.285091,37.889428],[-122.285183,37.889428],[-122.285164,37.889502]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1009","GEOID10":"060014206001009","NAME10":"Block 1009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":22493.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888332","INTPTLON10":"-122.284471","population":36},"geometry":{"type":"Polygon","coordinates":[[[-122.285286,37.887347],[-122.285051,37.887861],[-122.284937,37.888221],[-122.284916,37.888354],[-122.284905,37.888487],[-122.284907,37.888629],[-122.284924,37.888796],[-122.284991,37.889139],[-122.28504,37.889306],[-122.285091,37.889428],[-122.284944,37.889417],[-122.284884,37.889413],[-122.284686,37.889391],[-122.28462,37.88938],[-122.28446,37.889343],[-122.284242,37.889285],[-122.284012,37.889225],[-122.283939,37.889205],[-122.283721,37.889145],[-122.283688,37.889137],[-122.283648,37.889128],[-122.283652,37.889033],[-122.283663,37.888952],[-122.283685,37.888856],[-122.283711,37.888772],[-122.283731,37.888717],[-122.284171,37.887532],[-122.284319,37.887138],[-122.284529,37.887183],[-122.285159,37.887319],[-122.285286,37.887347]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1010","GEOID10":"060014206001010","NAME10":"Block 1010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1878.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888908","INTPTLON10":"-122.285020","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.285091,37.889428],[-122.28504,37.889306],[-122.284991,37.889139],[-122.284924,37.888796],[-122.284907,37.888629],[-122.284905,37.888487],[-122.284916,37.888354],[-122.284937,37.888221],[-122.285051,37.887861],[-122.285286,37.887347],[-122.285326,37.887354],[-122.285368,37.88737],[-122.285192,37.887762],[-122.285138,37.887884],[-122.285025,37.888242],[-122.285005,37.888361],[-122.284996,37.888485],[-122.284998,37.888625],[-122.285014,37.888792],[-122.285058,37.889017],[-122.28508,37.889123],[-122.285129,37.889288],[-122.285183,37.889428],[-122.285091,37.889428]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1011","GEOID10":"060014206001011","NAME10":"Block 1011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1704.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886439","INTPTLON10":"-122.285682"},"geometry":{"type":"Polygon","coordinates":[[[-122.285368,37.88737],[-122.285326,37.887354],[-122.285286,37.887347],[-122.285401,37.887059],[-122.285982,37.885521],[-122.286071,37.885542],[-122.285932,37.885908],[-122.285516,37.887007],[-122.285488,37.887082],[-122.285368,37.88737]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1012","GEOID10":"060014206001012","NAME10":"Block 1012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":17780.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886339","INTPTLON10":"-122.285175","population":39},"geometry":{"type":"Polygon","coordinates":[[[-122.285286,37.887347],[-122.285159,37.887319],[-122.284529,37.887183],[-122.284319,37.887138],[-122.284357,37.887014],[-122.2844,37.886947],[-122.284447,37.8869],[-122.284499,37.886812],[-122.284507,37.886795],[-122.284556,37.886698],[-122.284935,37.885684],[-122.285075,37.885313],[-122.285274,37.885358],[-122.285871,37.885495],[-122.285982,37.885521],[-122.285401,37.887059],[-122.285286,37.887347]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1013","GEOID10":"060014206001013","NAME10":"Block 1013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":28788.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885448","INTPTLON10":"-122.284571","population":65},"geometry":{"type":"Polygon","coordinates":[[[-122.283818,37.886229],[-122.283955,37.885821],[-122.284094,37.885411],[-122.284238,37.885056],[-122.284397,37.88461],[-122.284466,37.884419],[-122.284491,37.884359],[-122.284504,37.884305],[-122.284505,37.884253],[-122.284491,37.884201],[-122.284726,37.884086],[-122.285434,37.883741],[-122.28567,37.883627],[-122.285646,37.883771],[-122.285584,37.883973],[-122.285579,37.883991],[-122.285202,37.884978],[-122.285075,37.885313],[-122.284935,37.885684],[-122.284556,37.886698],[-122.284507,37.886795],[-122.284499,37.886812],[-122.284447,37.8869],[-122.2844,37.886947],[-122.284357,37.887014],[-122.284319,37.887138],[-122.28416,37.8871],[-122.283686,37.886989],[-122.283528,37.886953],[-122.283579,37.886805],[-122.283662,37.886573],[-122.283753,37.886371],[-122.283818,37.886229]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1014","GEOID10":"060014206001014","NAME10":"Block 1014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":22296.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888027","INTPTLON10":"-122.283424","population":38},"geometry":{"type":"Polygon","coordinates":[[[-122.283528,37.886953],[-122.283686,37.886989],[-122.28416,37.8871],[-122.284319,37.887138],[-122.284171,37.887532],[-122.283731,37.888717],[-122.283711,37.888772],[-122.283685,37.888856],[-122.283663,37.888952],[-122.283652,37.889033],[-122.283648,37.889128],[-122.283538,37.889103],[-122.283467,37.889091],[-122.283462,37.889091],[-122.283286,37.889072],[-122.283082,37.889059],[-122.282918,37.889061],[-122.282851,37.889062],[-122.282735,37.889071],[-122.282697,37.889034],[-122.282672,37.888996],[-122.282652,37.88894],[-122.282632,37.88877],[-122.282641,37.888667],[-122.282647,37.888637],[-122.282659,37.888586],[-122.283115,37.88733],[-122.283273,37.886895],[-122.283324,37.886906],[-122.283477,37.886941],[-122.283528,37.886953]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1015","GEOID10":"060014206001015","NAME10":"Block 1015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":627.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889112","INTPTLON10":"-122.283212"},"geometry":{"type":"Polygon","coordinates":[[[-122.283638,37.889202],[-122.283528,37.889175],[-122.283452,37.889163],[-122.283276,37.889146],[-122.283072,37.889134],[-122.282829,37.889137],[-122.282735,37.889071],[-122.282851,37.889062],[-122.282918,37.889061],[-122.283082,37.889059],[-122.283286,37.889072],[-122.283462,37.889091],[-122.283467,37.889091],[-122.283538,37.889103],[-122.283648,37.889128],[-122.283638,37.889202]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1016","GEOID10":"060014206001016","NAME10":"Block 1016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":9100.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886460","INTPTLON10":"-122.283067","population":16},"geometry":{"type":"Polygon","coordinates":[[[-122.282481,37.886303],[-122.282588,37.886113],[-122.282666,37.885975],[-122.282895,37.886028],[-122.282918,37.886034],[-122.283587,37.886179],[-122.283818,37.886229],[-122.283753,37.886371],[-122.283662,37.886573],[-122.283579,37.886805],[-122.283528,37.886953],[-122.283477,37.886941],[-122.283324,37.886906],[-122.283273,37.886895],[-122.283074,37.886849],[-122.282479,37.886711],[-122.282281,37.886666],[-122.282357,37.886527],[-122.282481,37.886303]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1017","GEOID10":"060014206001017","NAME10":"Block 1017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":24687.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887945","INTPTLON10":"-122.282371","population":37},"geometry":{"type":"Polygon","coordinates":[[[-122.281658,37.888661],[-122.281639,37.888487],[-122.281643,37.888384],[-122.281666,37.888262],[-122.281672,37.888242],[-122.281724,37.8881],[-122.282128,37.887059],[-122.282281,37.886666],[-122.282479,37.886711],[-122.283074,37.886849],[-122.283273,37.886895],[-122.283115,37.88733],[-122.282659,37.888586],[-122.282647,37.888637],[-122.282641,37.888667],[-122.282632,37.88877],[-122.282652,37.88894],[-122.282672,37.888996],[-122.282697,37.889034],[-122.282735,37.889071],[-122.282697,37.889073],[-122.282613,37.889086],[-122.282554,37.889098],[-122.282328,37.889145],[-122.282186,37.889191],[-122.282031,37.889257],[-122.281989,37.889276],[-122.281866,37.889336],[-122.281824,37.889201],[-122.281699,37.888796],[-122.281658,37.888661]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1018","GEOID10":"060014206001018","NAME10":"Block 1018","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":20717.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884338","INTPTLON10":"-122.285971","population":45},"geometry":{"type":"Polygon","coordinates":[[[-122.285982,37.885521],[-122.285871,37.885495],[-122.285274,37.885358],[-122.285075,37.885313],[-122.285202,37.884978],[-122.285579,37.883991],[-122.285584,37.883973],[-122.285646,37.883771],[-122.28567,37.883627],[-122.28595,37.883483],[-122.286792,37.883051],[-122.286955,37.882968],[-122.286937,37.883026],[-122.286575,37.883979],[-122.285982,37.885521]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1019","GEOID10":"060014206001019","NAME10":"Block 1019","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1466.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884757","INTPTLON10":"-122.286324"},"geometry":{"type":"Polygon","coordinates":[[[-122.286071,37.885542],[-122.285982,37.885521],[-122.286575,37.883979],[-122.286667,37.883996],[-122.286547,37.884305],[-122.28619,37.885232],[-122.286071,37.885542]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1020","GEOID10":"060014206001020","NAME10":"Block 1020","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":979.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883465","INTPTLON10":"-122.286818"},"geometry":{"type":"Polygon","coordinates":[[[-122.286667,37.883996],[-122.286575,37.883979],[-122.286937,37.883026],[-122.286955,37.882968],[-122.28707,37.882903],[-122.287024,37.883045],[-122.286994,37.883123],[-122.286748,37.883777],[-122.286667,37.883996]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1021","GEOID10":"060014206001021","NAME10":"Block 1021","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":18586.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883462","INTPTLON10":"-122.287583","population":45},"geometry":{"type":"Polygon","coordinates":[[[-122.28707,37.882903],[-122.287096,37.882839],[-122.287175,37.88265],[-122.287202,37.882587],[-122.287302,37.882625],[-122.287602,37.882742],[-122.287702,37.882781],[-122.287934,37.882871],[-122.288512,37.883048],[-122.28805,37.884241],[-122.287809,37.884167],[-122.287601,37.884127],[-122.287462,37.88412],[-122.287183,37.884096],[-122.286667,37.883996],[-122.286748,37.883777],[-122.286994,37.883123],[-122.287024,37.883045],[-122.28707,37.882903]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1022","GEOID10":"060014206001022","NAME10":"Block 1022","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":12213.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883875","INTPTLON10":"-122.288628","population":31},"geometry":{"type":"Polygon","coordinates":[[[-122.287957,37.884501],[-122.28805,37.884241],[-122.288512,37.883048],[-122.288939,37.883179],[-122.289309,37.883284],[-122.28875,37.88468],[-122.287957,37.884501]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1023","GEOID10":"060014206001023","NAME10":"Block 1023","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15260.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884009","INTPTLON10":"-122.289530","population":41},"geometry":{"type":"Polygon","coordinates":[[[-122.290105,37.883155],[-122.290113,37.883156],[-122.290207,37.883163],[-122.290252,37.883174],[-122.29028,37.883025],[-122.290231,37.883308],[-122.290151,37.883572],[-122.289845,37.884492],[-122.289712,37.884893],[-122.289608,37.884874],[-122.289518,37.884853],[-122.288942,37.884723],[-122.28875,37.88468],[-122.289309,37.883284],[-122.289348,37.883295],[-122.28951,37.88326],[-122.289555,37.883251],[-122.289757,37.883179],[-122.289964,37.883146],[-122.290105,37.883155]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1024","GEOID10":"060014206001024","NAME10":"Block 1024","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1201.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883224","INTPTLON10":"-122.286366","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.28707,37.882903],[-122.286955,37.882968],[-122.286792,37.883051],[-122.28595,37.883483],[-122.28567,37.883627],[-122.285686,37.883532],[-122.286997,37.882851],[-122.28707,37.882903]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1025","GEOID10":"060014206001025","NAME10":"Block 1025","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1018.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883871","INTPTLON10":"-122.285076"},"geometry":{"type":"Polygon","coordinates":[[[-122.284459,37.884129],[-122.285686,37.883532],[-122.28567,37.883627],[-122.285434,37.883741],[-122.284726,37.884086],[-122.284491,37.884201],[-122.284477,37.88416],[-122.284459,37.884129]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1026","GEOID10":"060014206001026","NAME10":"Block 1026","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":63728.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.883493","INTPTLON10":"-122.283797","population":17},"geometry":{"type":"Polygon","coordinates":[[[-122.282764,37.882526],[-122.28279,37.882502],[-122.283012,37.882518],[-122.283671,37.882491],[-122.283757,37.882491],[-122.284107,37.882491],[-122.284953,37.882469],[-122.285078,37.88246],[-122.285271,37.882445],[-122.285376,37.882437],[-122.285853,37.88244],[-122.286048,37.882442],[-122.28596,37.882675],[-122.28583,37.883024],[-122.285729,37.883314],[-122.285715,37.883381],[-122.285686,37.883532],[-122.284459,37.884129],[-122.284156,37.884287],[-122.283797,37.884463],[-122.28334,37.884663],[-122.283126,37.884745],[-122.282866,37.884831],[-122.282557,37.884921],[-122.282408,37.884954],[-122.28226,37.884974],[-122.282104,37.884982],[-122.281994,37.884974],[-122.282288,37.884363],[-122.281902,37.884371],[-122.282009,37.884176],[-122.282569,37.882718],[-122.282764,37.882526]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1027","GEOID10":"060014206001027","NAME10":"Block 1027","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":906.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884436","INTPTLON10":"-122.283924"},"geometry":{"type":"Polygon","coordinates":[[[-122.28334,37.884663],[-122.283797,37.884463],[-122.284156,37.884287],[-122.284459,37.884129],[-122.284477,37.88416],[-122.284491,37.884201],[-122.284272,37.88431],[-122.283844,37.884526],[-122.283611,37.884626],[-122.283387,37.884724],[-122.28334,37.884663]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1028","GEOID10":"060014206001028","NAME10":"Block 1028","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1037.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884902","INTPTLON10":"-122.282679"},"geometry":{"type":"Polygon","coordinates":[[[-122.281994,37.884974],[-122.282104,37.884982],[-122.28226,37.884974],[-122.282408,37.884954],[-122.282557,37.884921],[-122.282866,37.884831],[-122.283126,37.884745],[-122.28334,37.884663],[-122.283387,37.884724],[-122.283362,37.884733],[-122.283286,37.884762],[-122.283262,37.884772],[-122.283163,37.88481],[-122.282903,37.884897],[-122.282579,37.884994],[-122.28243,37.885024],[-122.282281,37.885046],[-122.282171,37.885054],[-122.282098,37.885054],[-122.282028,37.885051],[-122.28196,37.885043],[-122.281994,37.884974]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1029","GEOID10":"060014206001029","NAME10":"Block 1029","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16994.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885308","INTPTLON10":"-122.283651","population":30},"geometry":{"type":"Polygon","coordinates":[[[-122.283387,37.884724],[-122.283611,37.884626],[-122.283844,37.884526],[-122.284272,37.88431],[-122.284491,37.884201],[-122.284505,37.884253],[-122.284504,37.884305],[-122.284491,37.884359],[-122.284466,37.884419],[-122.284397,37.88461],[-122.284238,37.885056],[-122.284094,37.885411],[-122.283955,37.885821],[-122.283818,37.886229],[-122.283587,37.886179],[-122.282918,37.886034],[-122.282895,37.886028],[-122.282666,37.885975],[-122.282764,37.885851],[-122.283058,37.885479],[-122.283156,37.885355],[-122.283176,37.885238],[-122.28324,37.884888],[-122.283262,37.884772],[-122.283286,37.884762],[-122.283362,37.884733],[-122.283387,37.884724]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1030","GEOID10":"060014206001030","NAME10":"Block 1030","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":280.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.882724","INTPTLON10":"-122.287097","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.286997,37.882851],[-122.28712,37.882558],[-122.287157,37.882569],[-122.287202,37.882587],[-122.287175,37.88265],[-122.287096,37.882839],[-122.28707,37.882903],[-122.286997,37.882851]]]}} +{"type":"Feature","id":12345,"properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"1031","GEOID10":"060014206001031","NAME10":"Block 1031","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":7920.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.882857","INTPTLON10":"-122.286349","population":15},"geometry":{"type":"Polygon","coordinates":[[[-122.28712,37.882558],[-122.286997,37.882851],[-122.285686,37.883532],[-122.285715,37.883381],[-122.285729,37.883314],[-122.28583,37.883024],[-122.28596,37.882675],[-122.286048,37.882442],[-122.286282,37.882444],[-122.286742,37.882448],[-122.286978,37.882516],[-122.28712,37.882558]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2000","GEOID10":"060014206002000","NAME10":"Block 2000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":375.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890952","INTPTLON10":"-122.286179"},"geometry":{"type":"Polygon","coordinates":[[[-122.286644,37.890897],[-122.286648,37.89094],[-122.286458,37.890953],[-122.28589,37.890992],[-122.285701,37.891006],[-122.285677,37.89097],[-122.286644,37.890897]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2001","GEOID10":"060014206002001","NAME10":"Block 2001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14791.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890209","INTPTLON10":"-122.285901","population":18},"geometry":{"type":"Polygon","coordinates":[[[-122.286644,37.890897],[-122.285677,37.89097],[-122.285601,37.890875],[-122.285573,37.890832],[-122.285555,37.890791],[-122.285532,37.890718],[-122.285239,37.889751],[-122.285164,37.889502],[-122.285376,37.889508],[-122.285594,37.889494],[-122.285989,37.889444],[-122.286149,37.889409],[-122.286233,37.889659],[-122.286558,37.890616],[-122.286628,37.890823],[-122.286644,37.890897]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2002","GEOID10":"060014206002002","NAME10":"Block 2002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":16691.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890058","INTPTLON10":"-122.286913","population":13},"geometry":{"type":"Polygon","coordinates":[[[-122.287518,37.890839],[-122.287159,37.890866],[-122.286644,37.890897],[-122.286628,37.890823],[-122.286558,37.890616],[-122.286233,37.889659],[-122.286149,37.889409],[-122.28645,37.889328],[-122.286696,37.889232],[-122.287095,37.889068],[-122.287194,37.889372],[-122.287397,37.889987],[-122.287574,37.890498],[-122.28769,37.890831],[-122.287706,37.890872],[-122.287668,37.890874],[-122.287553,37.890879],[-122.287516,37.890882],[-122.287518,37.890839]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2003","GEOID10":"060014206002003","NAME10":"Block 2003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":446.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890820","INTPTLON10":"-122.288237"},"geometry":{"type":"Polygon","coordinates":[[[-122.28769,37.890831],[-122.288768,37.890769],[-122.28877,37.890812],[-122.288767,37.890813],[-122.288618,37.890821],[-122.287934,37.890859],[-122.287706,37.890872],[-122.28769,37.890831]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2004","GEOID10":"060014206002004","NAME10":"Block 2004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1970.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889680","INTPTLON10":"-122.288473"},"geometry":{"type":"Polygon","coordinates":[[[-122.28877,37.890812],[-122.288768,37.890769],[-122.288766,37.890714],[-122.288758,37.890664],[-122.288152,37.888874],[-122.288121,37.888768],[-122.288106,37.888677],[-122.288151,37.888594],[-122.288284,37.888561],[-122.288227,37.888644],[-122.288214,37.888732],[-122.288228,37.888845],[-122.288283,37.889006],[-122.288744,37.89035],[-122.288815,37.890556],[-122.288843,37.890672],[-122.288852,37.890762],[-122.288847,37.890809],[-122.28877,37.890812]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2005","GEOID10":"060014206002005","NAME10":"Block 2005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":21301.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889828","INTPTLON10":"-122.287926","population":54},"geometry":{"type":"Polygon","coordinates":[[[-122.28769,37.890831],[-122.287574,37.890498],[-122.287397,37.889987],[-122.287194,37.889372],[-122.287095,37.889068],[-122.287377,37.888939],[-122.287639,37.888837],[-122.288106,37.888677],[-122.288121,37.888768],[-122.288152,37.888874],[-122.288758,37.890664],[-122.288766,37.890714],[-122.288768,37.890769],[-122.28769,37.890831]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2006","GEOID10":"060014206002006","NAME10":"Block 2006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":812.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888823","INTPTLON10":"-122.287591"},"geometry":{"type":"Polygon","coordinates":[[[-122.288151,37.888594],[-122.288106,37.888677],[-122.287639,37.888837],[-122.287377,37.888939],[-122.287095,37.889068],[-122.287071,37.888996],[-122.287305,37.888887],[-122.287338,37.888873],[-122.2876,37.888771],[-122.287865,37.888681],[-122.288035,37.888629],[-122.288151,37.888594]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2007","GEOID10":"060014206002007","NAME10":"Block 2007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":740.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889215","INTPTLON10":"-122.286615"},"geometry":{"type":"Polygon","coordinates":[[[-122.287071,37.888996],[-122.287095,37.889068],[-122.286696,37.889232],[-122.28645,37.889328],[-122.286149,37.889409],[-122.286118,37.889344],[-122.286313,37.889288],[-122.286411,37.88926],[-122.286659,37.889167],[-122.286883,37.889073],[-122.287071,37.888996]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2008","GEOID10":"060014206002008","NAME10":"Block 2008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":676.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889442","INTPTLON10":"-122.285651"},"geometry":{"type":"Polygon","coordinates":[[[-122.286118,37.889344],[-122.286149,37.889409],[-122.285989,37.889444],[-122.285594,37.889494],[-122.285376,37.889508],[-122.285164,37.889502],[-122.285183,37.889428],[-122.285366,37.889436],[-122.285371,37.889435],[-122.285584,37.889424],[-122.285933,37.889379],[-122.285979,37.889374],[-122.286118,37.889344]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2009","GEOID10":"060014206002009","NAME10":"Block 2009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":19896.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888416","INTPTLON10":"-122.285609","population":34},"geometry":{"type":"Polygon","coordinates":[[[-122.285368,37.88737],[-122.285531,37.88741],[-122.285942,37.887511],[-122.286022,37.887527],[-122.286188,37.887561],[-122.286226,37.887568],[-122.286343,37.887592],[-122.286382,37.887601],[-122.286256,37.887941],[-122.286066,37.88846],[-122.286046,37.888539],[-122.286031,37.888631],[-122.286024,37.888773],[-122.286034,37.888913],[-122.286046,37.888988],[-122.286061,37.889073],[-122.286118,37.889344],[-122.285979,37.889374],[-122.285933,37.889379],[-122.285584,37.889424],[-122.285371,37.889435],[-122.285366,37.889436],[-122.285183,37.889428],[-122.285129,37.889288],[-122.28508,37.889123],[-122.285058,37.889017],[-122.285014,37.888792],[-122.284998,37.888625],[-122.284996,37.888485],[-122.285005,37.888361],[-122.285025,37.888242],[-122.285138,37.887884],[-122.285192,37.887762],[-122.285368,37.88737]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2010","GEOID10":"060014206002010","NAME10":"Block 2010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":15494.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888441","INTPTLON10":"-122.286636","population":27},"geometry":{"type":"Polygon","coordinates":[[[-122.286118,37.889344],[-122.286061,37.889073],[-122.286046,37.888988],[-122.286034,37.888913],[-122.286024,37.888773],[-122.286031,37.888631],[-122.286046,37.888539],[-122.286066,37.88846],[-122.286256,37.887941],[-122.286382,37.887601],[-122.286455,37.887618],[-122.286676,37.887672],[-122.28675,37.887691],[-122.286895,37.887728],[-122.287333,37.887839],[-122.287479,37.887876],[-122.287352,37.888049],[-122.287337,37.888073],[-122.287263,37.888204],[-122.287148,37.888512],[-122.287109,37.888671],[-122.287092,37.888755],[-122.28708,37.88882],[-122.287065,37.888926],[-122.287071,37.888996],[-122.286883,37.889073],[-122.286659,37.889167],[-122.286411,37.88926],[-122.286313,37.889288],[-122.286118,37.889344]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2011","GEOID10":"060014206002011","NAME10":"Block 2011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":36927.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886830","INTPTLON10":"-122.288382","population":51},"geometry":{"type":"Polygon","coordinates":[[[-122.289248,37.885861],[-122.289118,37.886212],[-122.288313,37.88828],[-122.288224,37.888464],[-122.288151,37.888594],[-122.288035,37.888629],[-122.287865,37.888681],[-122.2876,37.888771],[-122.287338,37.888873],[-122.287305,37.888887],[-122.287071,37.888996],[-122.287065,37.888926],[-122.28708,37.88882],[-122.287092,37.888755],[-122.287109,37.888671],[-122.287148,37.888512],[-122.287263,37.888204],[-122.287337,37.888073],[-122.287352,37.888049],[-122.287479,37.887876],[-122.287582,37.887759],[-122.287662,37.88762],[-122.288556,37.885285],[-122.288611,37.885091],[-122.28875,37.88468],[-122.288942,37.884723],[-122.289518,37.884853],[-122.289608,37.884874],[-122.289248,37.885861]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2012","GEOID10":"060014206002012","NAME10":"Block 2012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":2533.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887238","INTPTLON10":"-122.288764","population":1},"geometry":{"type":"Polygon","coordinates":[[[-122.288284,37.888561],[-122.288151,37.888594],[-122.288224,37.888464],[-122.288313,37.88828],[-122.289118,37.886212],[-122.289248,37.885861],[-122.289272,37.885924],[-122.289315,37.885967],[-122.28911,37.886486],[-122.288498,37.888045],[-122.288407,37.888278],[-122.288284,37.888561]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2013","GEOID10":"060014206002013","NAME10":"Block 2013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":27693.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886194","INTPTLON10":"-122.287757","population":64},"geometry":{"type":"Polygon","coordinates":[[[-122.287957,37.884501],[-122.28875,37.88468],[-122.288611,37.885091],[-122.288556,37.885285],[-122.287662,37.88762],[-122.287582,37.887759],[-122.287479,37.887876],[-122.287333,37.887839],[-122.286895,37.887728],[-122.28675,37.887691],[-122.286821,37.887495],[-122.287035,37.886906],[-122.287107,37.886711],[-122.287467,37.885812],[-122.287957,37.884501]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2014","GEOID10":"060014206002014","NAME10":"Block 2014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":41589.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884919","INTPTLON10":"-122.287379","population":73},"geometry":{"type":"Polygon","coordinates":[[[-122.28805,37.884241],[-122.287957,37.884501],[-122.287467,37.885812],[-122.287078,37.885713],[-122.28673,37.885634],[-122.286647,37.885634],[-122.286596,37.88566],[-122.286538,37.885785],[-122.286534,37.885795],[-122.286341,37.886337],[-122.286276,37.886521],[-122.286442,37.886558],[-122.28694,37.886672],[-122.287107,37.886711],[-122.287035,37.886906],[-122.286821,37.887495],[-122.28675,37.887691],[-122.286676,37.887672],[-122.286455,37.887618],[-122.286382,37.887601],[-122.286343,37.887592],[-122.286226,37.887568],[-122.286188,37.887561],[-122.286022,37.887527],[-122.285942,37.887511],[-122.285531,37.88741],[-122.285368,37.88737],[-122.285488,37.887082],[-122.285516,37.887007],[-122.285932,37.885908],[-122.286071,37.885542],[-122.28619,37.885232],[-122.286547,37.884305],[-122.286667,37.883996],[-122.287183,37.884096],[-122.287462,37.88412],[-122.287601,37.884127],[-122.287809,37.884167],[-122.28805,37.884241]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2015","GEOID10":"060014206002015","NAME10":"Block 2015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":8164.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886159","INTPTLON10":"-122.286865","population":19},"geometry":{"type":"Polygon","coordinates":[[[-122.286276,37.886521],[-122.286341,37.886337],[-122.286534,37.885795],[-122.286538,37.885785],[-122.286596,37.88566],[-122.286647,37.885634],[-122.28673,37.885634],[-122.287078,37.885713],[-122.287467,37.885812],[-122.287107,37.886711],[-122.28694,37.886672],[-122.286442,37.886558],[-122.286276,37.886521]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2016","GEOID10":"060014206002016","NAME10":"Block 2016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":1094.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.885399","INTPTLON10":"-122.289471"},"geometry":{"type":"Polygon","coordinates":[[[-122.289248,37.885861],[-122.289608,37.884874],[-122.289712,37.884893],[-122.289632,37.885107],[-122.289394,37.885752],[-122.289315,37.885967],[-122.289272,37.885924],[-122.289248,37.885861]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"2017","GEOID10":"060014206002017","NAME10":"Block 2017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":379.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890891","INTPTLON10":"-122.287082"},"geometry":{"type":"Polygon","coordinates":[[[-122.286644,37.890897],[-122.287159,37.890866],[-122.287518,37.890839],[-122.287516,37.890882],[-122.287447,37.890888],[-122.28724,37.890905],[-122.287172,37.890912],[-122.287067,37.890917],[-122.286752,37.890934],[-122.286648,37.89094],[-122.286644,37.890897]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3000","GEOID10":"060014206003000","NAME10":"Block 3000","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":21823.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889669","INTPTLON10":"-122.289020","population":47},"geometry":{"type":"Polygon","coordinates":[[[-122.289874,37.890709],[-122.289887,37.890752],[-122.289786,37.890756],[-122.289485,37.890769],[-122.289385,37.890774],[-122.289277,37.890781],[-122.288954,37.890801],[-122.288847,37.890809],[-122.288852,37.890762],[-122.288843,37.890672],[-122.288815,37.890556],[-122.288744,37.89035],[-122.288283,37.889006],[-122.288228,37.888845],[-122.288214,37.888732],[-122.288227,37.888644],[-122.289104,37.888456],[-122.289241,37.888859],[-122.289726,37.890278],[-122.289874,37.890709]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3001","GEOID10":"060014206003001","NAME10":"Block 3001","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":22452.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889518","INTPTLON10":"-122.289959","population":34},"geometry":{"type":"Polygon","coordinates":[[[-122.289887,37.890752],[-122.289874,37.890709],[-122.289726,37.890278],[-122.289241,37.888859],[-122.289104,37.888456],[-122.290071,37.888263],[-122.290198,37.888697],[-122.290642,37.890203],[-122.290778,37.890665],[-122.290791,37.890706],[-122.290682,37.890709],[-122.290358,37.89072],[-122.290251,37.890725],[-122.290178,37.89073],[-122.289959,37.890746],[-122.289887,37.890752]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3002","GEOID10":"060014206003002","NAME10":"Block 3002","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":26786.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889411","INTPTLON10":"-122.290964","population":82},"geometry":{"type":"Polygon","coordinates":[[[-122.291056,37.890647],[-122.29106,37.890689],[-122.291006,37.890692],[-122.290844,37.890702],[-122.290791,37.890706],[-122.290778,37.890665],[-122.290642,37.890203],[-122.290198,37.888697],[-122.290071,37.888263],[-122.291085,37.888056],[-122.29123,37.888516],[-122.291736,37.890117],[-122.291856,37.890494],[-122.291903,37.890604],[-122.291056,37.890647]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3003","GEOID10":"060014206003003","NAME10":"Block 3003","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":344.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890645","INTPTLON10":"-122.291484"},"geometry":{"type":"Polygon","coordinates":[[[-122.291056,37.890647],[-122.291903,37.890604],[-122.291921,37.890645],[-122.291748,37.890653],[-122.291232,37.890679],[-122.29106,37.890689],[-122.291056,37.890647]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3004","GEOID10":"060014206003004","NAME10":"Block 3004","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":428.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890599","INTPTLON10":"-122.292415"},"geometry":{"type":"Polygon","coordinates":[[[-122.291903,37.890604],[-122.292888,37.890552],[-122.292894,37.890601],[-122.292699,37.890609],[-122.292115,37.890635],[-122.291921,37.890645],[-122.291903,37.890604]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3005","GEOID10":"060014206003005","NAME10":"Block 3005","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":349.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.890553","INTPTLON10":"-122.293251"},"geometry":{"type":"Polygon","coordinates":[[[-122.293369,37.89052],[-122.293606,37.890511],[-122.293622,37.890561],[-122.293387,37.890567],[-122.293364,37.890568],[-122.293302,37.890574],[-122.293288,37.890575],[-122.293159,37.890585],[-122.292992,37.890595],[-122.292894,37.890601],[-122.292888,37.890552],[-122.293156,37.890535],[-122.29328,37.890525],[-122.293369,37.89052]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3006","GEOID10":"060014206003006","NAME10":"Block 3006","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":11825.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889326","INTPTLON10":"-122.292811","population":17},"geometry":{"type":"Polygon","coordinates":[[[-122.293699,37.890506],[-122.293738,37.890555],[-122.293714,37.890556],[-122.293645,37.890559],[-122.293622,37.890561],[-122.293606,37.890511],[-122.293369,37.89052],[-122.29328,37.890525],[-122.293156,37.890535],[-122.292888,37.890552],[-122.292843,37.890326],[-122.292798,37.890042],[-122.292793,37.890022],[-122.292759,37.889868],[-122.292277,37.888339],[-122.292187,37.888051],[-122.292129,37.887848],[-122.292473,37.887775],[-122.292567,37.888041],[-122.292593,37.888123],[-122.292791,37.888749],[-122.292951,37.88924],[-122.292997,37.889389],[-122.293128,37.889812],[-122.293251,37.889959],[-122.293543,37.890307],[-122.293619,37.890403],[-122.293699,37.890506]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3007","GEOID10":"060014206003007","NAME10":"Block 3007","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":27950.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.889251","INTPTLON10":"-122.292014","population":55},"geometry":{"type":"Polygon","coordinates":[[[-122.292888,37.890552],[-122.291903,37.890604],[-122.291856,37.890494],[-122.291736,37.890117],[-122.29123,37.888516],[-122.291085,37.888056],[-122.292129,37.887848],[-122.292187,37.888051],[-122.292277,37.888339],[-122.292759,37.889868],[-122.292793,37.890022],[-122.292798,37.890042],[-122.292843,37.890326],[-122.292888,37.890552]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3008","GEOID10":"060014206003008","NAME10":"Block 3008","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":783.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887916","INTPTLON10":"-122.291592"},"geometry":{"type":"Polygon","coordinates":[[[-122.292106,37.887778],[-122.292129,37.887848],[-122.291085,37.888056],[-122.291063,37.887983],[-122.291271,37.887941],[-122.291897,37.887818],[-122.292106,37.887778]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3009","GEOID10":"060014206003009","NAME10":"Block 3009","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":746.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888122","INTPTLON10":"-122.290573"},"geometry":{"type":"Polygon","coordinates":[[[-122.291085,37.888056],[-122.290071,37.888263],[-122.290047,37.888196],[-122.29025,37.888153],[-122.290859,37.888025],[-122.291063,37.887983],[-122.291085,37.888056]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3010","GEOID10":"060014206003010","NAME10":"Block 3010","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":689.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888325","INTPTLON10":"-122.289573"},"geometry":{"type":"Polygon","coordinates":[[[-122.290071,37.888263],[-122.289104,37.888456],[-122.289082,37.888386],[-122.289275,37.888348],[-122.289854,37.888234],[-122.290047,37.888196],[-122.290071,37.888263]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3011","GEOID10":"060014206003011","NAME10":"Block 3011","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":598.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.888511","INTPTLON10":"-122.288677"},"geometry":{"type":"Polygon","coordinates":[[[-122.289104,37.888456],[-122.288227,37.888644],[-122.288284,37.888561],[-122.288443,37.888525],[-122.288922,37.888421],[-122.289082,37.888386],[-122.289104,37.888456]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3012","GEOID10":"060014206003012","NAME10":"Block 3012","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":20277.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887570","INTPTLON10":"-122.289219","population":33},"geometry":{"type":"Polygon","coordinates":[[[-122.288284,37.888561],[-122.288407,37.888278],[-122.288498,37.888045],[-122.28911,37.886486],[-122.289315,37.885967],[-122.289461,37.886412],[-122.2899,37.88775],[-122.290047,37.888196],[-122.289854,37.888234],[-122.289275,37.888348],[-122.289082,37.888386],[-122.288922,37.888421],[-122.288443,37.888525],[-122.288284,37.888561]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3013","GEOID10":"060014206003013","NAME10":"Block 3013","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":31172.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886608","INTPTLON10":"-122.290117","population":60},"geometry":{"type":"Polygon","coordinates":[[[-122.291063,37.887983],[-122.290859,37.888025],[-122.29025,37.888153],[-122.290047,37.888196],[-122.2899,37.88775],[-122.289461,37.886412],[-122.289315,37.885967],[-122.289394,37.885752],[-122.289632,37.885107],[-122.289712,37.884893],[-122.289845,37.884492],[-122.290031,37.884888],[-122.290166,37.885213],[-122.290347,37.885678],[-122.290371,37.885757],[-122.29089,37.887426],[-122.291063,37.887983]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3014","GEOID10":"060014206003014","NAME10":"Block 3014","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":29422.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886495","INTPTLON10":"-122.291137","population":66},"geometry":{"type":"Polygon","coordinates":[[[-122.29117,37.884974],[-122.292106,37.887778],[-122.291897,37.887818],[-122.291271,37.887941],[-122.291063,37.887983],[-122.29089,37.887426],[-122.290371,37.885757],[-122.290347,37.885678],[-122.290166,37.885213],[-122.29117,37.884974]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3015","GEOID10":"060014206003015","NAME10":"Block 3015","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":10776.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.886322","INTPTLON10":"-122.291817","population":15},"geometry":{"type":"Polygon","coordinates":[[[-122.292106,37.887778],[-122.29117,37.884974],[-122.291516,37.884897],[-122.291677,37.885275],[-122.291733,37.885447],[-122.292038,37.886378],[-122.292198,37.886874],[-122.292278,37.887138],[-122.29245,37.887705],[-122.292381,37.887719],[-122.292174,37.887763],[-122.292106,37.887778]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3016","GEOID10":"060014206003016","NAME10":"Block 3016","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":253.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.887776","INTPTLON10":"-122.292289"},"geometry":{"type":"Polygon","coordinates":[[[-122.292473,37.887775],[-122.292129,37.887848],[-122.292106,37.887778],[-122.292174,37.887763],[-122.292381,37.887719],[-122.29245,37.887705],[-122.292473,37.887775]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3017","GEOID10":"060014206003017","NAME10":"Block 3017","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":6343.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884079","INTPTLON10":"-122.290980","population":12},"geometry":{"type":"Polygon","coordinates":[[[-122.29117,37.884974],[-122.291107,37.884764],[-122.290933,37.884357],[-122.290817,37.88414],[-122.290383,37.883205],[-122.290831,37.883311],[-122.291152,37.883996],[-122.291358,37.884474],[-122.291516,37.884897],[-122.29117,37.884974]]]}} +{"type":"Feature","properties":{"STATEFP10":"06","COUNTYFP10":"001","TRACTCE10":"420600","BLOCKCE10":"3018","GEOID10":"060014206003018","NAME10":"Block 3018","MTFCC10":"G5040","UR10":"U","UACE10":"78904","UATYP10":"U","FUNCSTAT10":"S","ALAND10":14557.000000,"AWATER10":0.000000,"INTPTLAT10":"+37.884369","INTPTLON10":"-122.290441"},"geometry":{"type":"Polygon","coordinates":[[[-122.290383,37.883205],[-122.290817,37.88414],[-122.290933,37.884357],[-122.291107,37.884764],[-122.29117,37.884974],[-122.290166,37.885213],[-122.290031,37.884888],[-122.289845,37.884492],[-122.290151,37.883572],[-122.290231,37.883308],[-122.29028,37.883025],[-122.290283,37.883037],[-122.290316,37.883189],[-122.290383,37.883205]]]}} diff --git a/tile-join.cpp b/tile-join.cpp index c00d398..a05ee32 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -39,6 +39,7 @@ int pk = false; int pC = false; int pg = false; +int pe = false; size_t CPUS; int quiet = false; int maxzoom = 32; @@ -243,11 +244,13 @@ void handle(std::string message, int z, unsigned x, unsigned y, std::map