From b9b48f42c98c5a277fde5cb49eed28330ee5504e Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Thu, 30 Jan 2025 11:01:28 -0800 Subject: [PATCH 1/6] Add a flag to use an H3 index for the feature index --- main.cpp | 4 ++++ main.hpp | 1 + serial.cpp | 13 +++++++++++++ 3 files changed, 18 insertions(+) diff --git a/main.cpp b/main.cpp index aa6c49f27..531bdd86f 100644 --- a/main.cpp +++ b/main.cpp @@ -99,6 +99,7 @@ int retain_points_multiplier = 1; std::vector unidecode_data; size_t maximum_string_attribute_length = 0; std::string accumulate_numeric; +std::string use_h3_index; std::vector order_by; bool order_reverse; @@ -3128,6 +3129,7 @@ int main(int argc, char **argv) { {"coalesce", no_argument, &additional[A_COALESCE], 1}, {"reverse", no_argument, &additional[A_REVERSE], 1}, {"hilbert", no_argument, &additional[A_HILBERT], 1}, + {"use-h3-index", required_argument, 0, '~'}, {"order-by", required_argument, 0, '~'}, {"order-descending-by", required_argument, 0, '~'}, {"order-smallest-first", no_argument, 0, '~'}, @@ -3269,6 +3271,8 @@ int main(int argc, char **argv) { fprintf(stderr, "%s: --extra-detail can be at most 30\n", argv[0]); exit(EXIT_ARGS); } + } else if (strcmp(opt, "use-h3-index") == 0) { + use_h3_index = optarg; } else if (strcmp(opt, "order-by") == 0) { order_by.push_back(order_field(optarg, false)); } else if (strcmp(opt, "order-descending-by") == 0) { diff --git a/main.hpp b/main.hpp index 714af5c31..6dd782cd4 100644 --- a/main.hpp +++ b/main.hpp @@ -53,6 +53,7 @@ extern long long extend_zooms_max; extern int retain_points_multiplier; extern size_t maximum_string_attribute_length; extern std::string accumulate_numeric; +extern std::string use_h3_index; extern unsigned long long preserve_multiplier_density_threshold; struct order_field { diff --git a/serial.cpp b/serial.cpp index 5afc2ed2f..cd779024d 100644 --- a/serial.cpp +++ b/serial.cpp @@ -714,6 +714,19 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: } bbox_index = encode_index(midx, midy); + + if (use_h3_index.size() > 0) { + for (size_t i = 0; i < sf.full_keys.size(); i++) { + if (*(sf.full_keys[i]) == use_h3_index) { + unsigned long long h3_index = atoll(sf.full_values[i].s.c_str()); + // the top 52 bits of the feature index are the H3 index; + // the bottom 12 bits are retained from what otherwise would have been the index. + bbox_index = ((h3_index & ((1LL << 52) - 1)) << 12) | (bbox_index & ((1 << 12) - 1)); + break; + } + } + } + if (additional[A_CALCULATE_INDEX]) { sf.full_keys.push_back(key_pool.pool("tippecanoe:index")); From ebcc8bf799c761e8a462342187d8804d0d504405 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Mon, 10 Feb 2025 13:02:22 -0800 Subject: [PATCH 2/6] Progress toward eliminating decodes of feature indices --- geometry.cpp | 6 ++---- geometry.hpp | 2 +- main.cpp | 1 + serial.cpp | 26 ++++++++++++++++++++------ serial.hpp | 3 ++- tile.cpp | 6 ++++-- 6 files changed, 30 insertions(+), 14 deletions(-) diff --git a/geometry.cpp b/geometry.cpp index 58d4f163d..324fa7cd4 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -944,12 +944,10 @@ drawvec polygon_to_anchor(const drawvec &geom) { return drawvec(); } -drawvec checkerboard_anchors(drawvec const &geom, int tx, int ty, int z, unsigned long long label_point) { +drawvec checkerboard_anchors(drawvec const &geom, int tx, int ty, int z, unsigned wx, unsigned wy) { drawvec out; - // anchor point in world coordinates - unsigned wx, wy; - decode_index(label_point, &wx, &wy); + // wx,wy is anchor point in world coordinates // upper left of tile in world coordinates long long tx1 = 0, ty1 = 0; diff --git a/geometry.hpp b/geometry.hpp index db96a2cd9..a8c2283f4 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -89,7 +89,7 @@ void check_polygon(drawvec &geom); double get_area(const drawvec &geom, size_t i, size_t j); double get_mp_area(drawvec &geom); drawvec polygon_to_anchor(const drawvec &geom); -drawvec checkerboard_anchors(drawvec const &geom, int tx, int ty, int z, unsigned long long label_point); +drawvec checkerboard_anchors(drawvec const &geom, int tx, int ty, int z, unsigned label_x, unsigned label_y); drawvec simple_clip_poly(drawvec &geom, int z, int buffer, drawvec &shared_nodes, bool prevent_simplify_shared_nodes); drawvec simple_clip_poly(drawvec &geom, long long x1, long long y1, long long x2, long long y2, bool prevent_simplify_shared_nodes); diff --git a/main.cpp b/main.cpp index 531bdd86f..0446c0989 100644 --- a/main.cpp +++ b/main.cpp @@ -2499,6 +2499,7 @@ std::pair read_input(std::vector &sources, char *fname, i long long ip; for (ip = 0; ip < indices; ip++) { unsigned xx, yy; + // XXX this will behave oddly if the index is actually H3 decode_index(map[ip].ix, &xx, &yy); long long nprogress = 100 * ip / indices; diff --git a/serial.cpp b/serial.cpp index cd779024d..5cbafec99 100644 --- a/serial.cpp +++ b/serial.cpp @@ -186,7 +186,7 @@ std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { long long layer = 0; layer |= sf->layer << FLAG_LAYER; - layer |= (sf->label_point != 0) << FLAG_LABEL_POINT; + layer |= ((sf->label_x | sf->label_y) != 0) << FLAG_LABEL_POINT; layer |= (sf->index != 0) << FLAG_INDEX; layer |= (sf->extent != 0) << FLAG_EXTENT; layer |= sf->has_id << FLAG_ID; @@ -211,10 +211,13 @@ std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { if (sf->index != 0) { serialize_ulong_long(s, sf->index); + serialize_ulong_long(s, sf->wx); + serialize_ulong_long(s, sf->wy); serialize_ulong_long(s, sf->gap); } - if (sf->label_point != 0) { - serialize_ulong_long(s, sf->label_point); + if ((sf->label_x | sf->label_y) != 0) { + serialize_ulong_long(s, sf->label_x); + serialize_ulong_long(s, sf->label_y); } if (sf->extent != 0) { serialize_long_long(s, sf->extent); @@ -261,17 +264,27 @@ serial_feature deserialize_feature(std::string const &geoms, unsigned z, unsigne sf.index = 0; sf.gap = 0; - sf.label_point = 0; + sf.label_x = 0; + sf.label_y = 0; sf.extent = 0; sf.geometry = decode_geometry(&cp, z, tx, ty, sf.bbox, initial_x[sf.segment], initial_y[sf.segment]); if (sf.layer & (1 << FLAG_INDEX)) { + unsigned long long wx, wy; deserialize_ulong_long(&cp, &sf.index); + deserialize_ulong_long(&cp, &wx); + deserialize_ulong_long(&cp, &wy); + sf.wx = wx; + sf.wy = wy; deserialize_ulong_long(&cp, &sf.gap); } if (sf.layer & (1 << FLAG_LABEL_POINT)) { - deserialize_ulong_long(&cp, &sf.label_point); + unsigned long long wx, wy; + deserialize_ulong_long(&cp, &wx); + deserialize_ulong_long(&cp, &wy); + sf.label_x = wx; + sf.label_y = wy; } if (sf.layer & (1 << FLAG_EXTENT)) { deserialize_long_long(&cp, &sf.extent); @@ -741,7 +754,8 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: if (dv.size() > 0) { dv[0].x = SHIFT_LEFT(dv[0].x) & ((1LL << 32) - 1); dv[0].y = SHIFT_LEFT(dv[0].y) & ((1LL << 32) - 1); - sf.label_point = encode_index(dv[0].x, dv[0].y); + sf.label_x = dv[0].x; + sf.label_y = dv[0].y; } } diff --git a/serial.hpp b/serial.hpp index a351f21d0..80f83e91d 100644 --- a/serial.hpp +++ b/serial.hpp @@ -118,8 +118,9 @@ struct serial_feature { drawvec geometry = drawvec(); unsigned long long index = 0; + unsigned wx = 0, wy = 0; unsigned long long gap = 0; // filled in during z0. square of planar distance - unsigned long long label_point = 0; + unsigned label_x = 0, label_y = 0; long long extent = 0; // These fields are not directly serialized, but are used diff --git a/tile.cpp b/tile.cpp index 40ef416c8..1d531e583 100644 --- a/tile.cpp +++ b/tile.cpp @@ -714,7 +714,7 @@ static void *simplification_worker(void *v) { if (t == VT_POLYGON && additional[A_GENERATE_POLYGON_LABEL_POINTS]) { t = (*features)[i]->t = VT_POINT; - geom = checkerboard_anchors(from_tile_scale(geom, z, out_detail), (*features)[i]->tx, (*features)[i]->ty, z, (*features)[i]->label_point); + geom = checkerboard_anchors(from_tile_scale(geom, z, out_detail), (*features)[i]->tx, (*features)[i]->ty, z, (*features)[i]->label_x, (*features)[i]->label_y); to_tile_scale(geom, z, out_detail); } @@ -1131,6 +1131,8 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * unsigned wx1, wy1; decode_index(next_feature_state.previndex, &wx1, &wy1); + // find the furthest distance of a vertex in this feature + // from the representative point of the previous feature for (auto const &g : sf.geometry) { long long dx = (long long) wx1 - (g.x + ox); long long dy = (long long) wy1 - (g.y + oy); @@ -2819,7 +2821,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } if (skipped > 0 || too_many_bytes || too_many_features) { - fprintf(stderr, "Can't happen: writing tile even though we skipped\n"); + fprintf(stderr, "Can't happen: writing tile even though we skipped (%zu %d %d)\n", skipped, too_many_bytes, too_many_features); exit(EXIT_IMPOSSIBLE); } From 0ce1271b06cebd5e5562b14d9b2bdc091ef52af2 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Mon, 10 Feb 2025 13:07:09 -0800 Subject: [PATCH 3/6] Ah, I was not actually storing the representative point --- serial.cpp | 4 ++++ tile.cpp | 7 +++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/serial.cpp b/serial.cpp index 5cbafec99..95a55bdd8 100644 --- a/serial.cpp +++ b/serial.cpp @@ -775,8 +775,12 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: preserve_multiplier_density_threshold > 0 || cluster_distance != 0) { sf.index = bbox_index; + sf.wx = midx; + sf.wy = midy; } else { sf.index = 0; + sf.wx = 0; + sf.wy = 0; } if (sst->layermap->count(layername) == 0) { diff --git a/tile.cpp b/tile.cpp index 1d531e583..6c4ceaf09 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1059,6 +1059,7 @@ static bool skip_next_feature(decompressor *geoms, std::atomic *geomp struct next_feature_state { unsigned long long previndex = 0; + unsigned prevx = 0, prevy = 0; unsigned long long prev_not_dropped_index = 0; }; @@ -1128,8 +1129,8 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * long long ox = (1LL << (32 - z)) * tx; long long oy = (1LL << (32 - z)) * ty; - unsigned wx1, wy1; - decode_index(next_feature_state.previndex, &wx1, &wy1); + unsigned wx1 = next_feature_state.prevx; + unsigned wy1 = next_feature_state.prevy; // find the furthest distance of a vertex in this feature // from the representative point of the previous feature @@ -1145,6 +1146,8 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * } } next_feature_state.previndex = sf.index; + next_feature_state.prevx = sf.wx; + next_feature_state.prevy = sf.wy; if (clip_to_tile(sf, z, buffer)) { continue; From 752204fc946bfaec0094f85d841884dcce5b7905 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Mon, 10 Feb 2025 13:11:10 -0800 Subject: [PATCH 4/6] Clean up serialization --- serial.cpp | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/serial.cpp b/serial.cpp index 95a55bdd8..f4b316a4c 100644 --- a/serial.cpp +++ b/serial.cpp @@ -211,13 +211,13 @@ std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { if (sf->index != 0) { serialize_ulong_long(s, sf->index); - serialize_ulong_long(s, sf->wx); - serialize_ulong_long(s, sf->wy); + serialize_uint(s, sf->wx); + serialize_uint(s, sf->wy); serialize_ulong_long(s, sf->gap); } if ((sf->label_x | sf->label_y) != 0) { - serialize_ulong_long(s, sf->label_x); - serialize_ulong_long(s, sf->label_y); + serialize_uint(s, sf->label_x); + serialize_uint(s, sf->label_y); } if (sf->extent != 0) { serialize_long_long(s, sf->extent); @@ -271,20 +271,14 @@ serial_feature deserialize_feature(std::string const &geoms, unsigned z, unsigne sf.geometry = decode_geometry(&cp, z, tx, ty, sf.bbox, initial_x[sf.segment], initial_y[sf.segment]); if (sf.layer & (1 << FLAG_INDEX)) { - unsigned long long wx, wy; deserialize_ulong_long(&cp, &sf.index); - deserialize_ulong_long(&cp, &wx); - deserialize_ulong_long(&cp, &wy); - sf.wx = wx; - sf.wy = wy; + deserialize_uint(&cp, &sf.wx); + deserialize_uint(&cp, &sf.wy); deserialize_ulong_long(&cp, &sf.gap); } if (sf.layer & (1 << FLAG_LABEL_POINT)) { - unsigned long long wx, wy; - deserialize_ulong_long(&cp, &wx); - deserialize_ulong_long(&cp, &wy); - sf.label_x = wx; - sf.label_y = wy; + deserialize_uint(&cp, &sf.label_x); + deserialize_uint(&cp, &sf.label_y); } if (sf.layer & (1 << FLAG_EXTENT)) { deserialize_long_long(&cp, &sf.extent); From 260d404466247771478d4a5e333427b74f9de6bf Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Tue, 11 Feb 2025 09:10:48 -0800 Subject: [PATCH 5/6] Parse index bits to preserve with multiplier by zoom --- main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/main.cpp b/main.cpp index 0446c0989..477bebce7 100644 --- a/main.cpp +++ b/main.cpp @@ -94,6 +94,7 @@ unsigned int drop_denser = 0; std::map set_attributes; unsigned long long preserve_point_density_threshold = 0; unsigned long long preserve_multiplier_density_threshold = 0; +std::vector preserve_multiplier_density_bits_by_zoom; long long extend_zooms_max = 0; int retain_points_multiplier = 1; std::vector unidecode_data; @@ -3089,6 +3090,7 @@ int main(int argc, char **argv) { {"cluster-maxzoom", required_argument, 0, 'k'}, {"preserve-point-density-threshold", required_argument, 0, '~'}, {"preserve-multiplier-density-threshold", required_argument, 0, '~'}, + {"preserve-multiplier-density-bits-by-zoom", required_argument, 0, '~'}, {"Dropping or merging a fraction of features to keep under tile size limits", 0, 0, 0}, {"drop-densest-as-needed", no_argument, &additional[A_DROP_DENSEST_AS_NEEDED], 1}, @@ -3305,6 +3307,21 @@ int main(int argc, char **argv) { preserve_point_density_threshold = atoll_require(optarg, "Preserve point density threshold"); } else if (strcmp(opt, "preserve-multiplier-density-threshold") == 0) { preserve_multiplier_density_threshold = atoll_require(optarg, "Preserve multiplier density threshold"); + } else if (strcmp(opt, "preserve-multiplier-density-bits-by-zoom") == 0) { + const char *cp = optarg; + while (*cp != '\0') { + if (!isdigit(*cp)) { + fprintf(stderr, "%s: unexpected multiplier density bits by zoom %s\n", argv[0], cp); + exit(EXIT_ARGS); + } + preserve_multiplier_density_bits_by_zoom.push_back(atoi(cp)); + while (isdigit(*cp)) { + cp++; + } + if (*cp == ',') { + cp++; + } + } } else if (strcmp(opt, "extend-zooms-if-still-dropping-maximum") == 0) { extend_zooms_max = atoll_require(optarg, "Maximum number by which to extend zooms"); } else if (strcmp(opt, "retain-points-multiplier") == 0) { From 285d1931afad1a0cef11f8bbb0778f9558cc5962 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Tue, 11 Feb 2025 10:30:22 -0800 Subject: [PATCH 6/6] Implement and test retaining multipliers by bit prefix --- main.hpp | 1 + serial.hpp | 4 + tests/ca-places-h3/in.json | 1619 ++++ ...2_--accumulate-attribute_NAME%3acomma.json | 8320 +++++++++++++++++ tile.cpp | 5 + 5 files changed, 9949 insertions(+) create mode 100644 tests/ca-places-h3/in.json create mode 100644 tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json diff --git a/main.hpp b/main.hpp index 6dd782cd4..04061c72b 100644 --- a/main.hpp +++ b/main.hpp @@ -55,6 +55,7 @@ extern size_t maximum_string_attribute_length; extern std::string accumulate_numeric; extern std::string use_h3_index; extern unsigned long long preserve_multiplier_density_threshold; +extern std::vector preserve_multiplier_density_bits_by_zoom; struct order_field { std::string name; diff --git a/serial.hpp b/serial.hpp index 80f83e91d..655ecf394 100644 --- a/serial.hpp +++ b/serial.hpp @@ -58,6 +58,10 @@ struct serial_val { s = milo::dtoa_milo(val); } + std::string toString() const { + return s; + } + double to_double() const { return atof(s.c_str()); } diff --git a/tests/ca-places-h3/in.json b/tests/ca-places-h3/in.json new file mode 100644 index 000000000..3236169fd --- /dev/null +++ b/tests/ca-places-h3/in.json @@ -0,0 +1,1619 @@ +{ +"type": "FeatureCollection", +"name": "parsed", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"xy_coordinate_resolution": 1e-07, +"features": [ +{ "type": "Feature", "properties": { "felt:feature": 1, "felt:has_geometry": true, "felt:h3_index": 644747095056321830, "STATEFP": 6.0, "PLACEFP": 66140.0, "PLACENS": 2411785.0, "GEOID": 666140.0, "NAME": "San Fernando", "NAMELSAD": "San Fernando city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6149607.0, "AWATER": 0.0, "INTPTLAT": 34.2886523, "INTPTLON": -118.4362428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4362428, 34.2886523 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 2, "felt:has_geometry": true, "felt:h3_index": 644721820507878737, "STATEFP": 6.0, "PLACEFP": 14190.0, "PLACENS": 2409487.0, "GEOID": 614190.0, "NAME": "Cloverdale", "NAMELSAD": "Cloverdale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8120471.0, "AWATER": 0.0, "INTPTLAT": 38.7961178, "INTPTLON": -123.0150504 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0150504, 38.7961178 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 3, "felt:has_geometry": true, "felt:h3_index": 644721747550059252, "STATEFP": 6.0, "PLACEFP": 16560.0, "PLACENS": 2410240.0, "GEOID": 616560.0, "NAME": "Cotati", "NAMELSAD": "Cotati city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4854614.0, "AWATER": 8380.0, "INTPTLAT": 38.328492, "INTPTLON": -122.7100491 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7100491, 38.328492 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 4, "felt:has_geometry": true, "felt:h3_index": 644737296019532323, "STATEFP": 6.0, "PLACEFP": 65042.0, "PLACENS": 2411779.0, "GEOID": 665042.0, "NAME": "San Buenaventura (Ventura)", "NAMELSAD": "San Buenaventura (Ventura) city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 56652007.0, "AWATER": 26982227.0, "INTPTLAT": 34.2677796, "INTPTLON": -119.2542062 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2542062, 34.2677796 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 5, "felt:has_geometry": true, "felt:h3_index": 644747148491540618, "STATEFP": 6.0, "PLACEFP": 30014.0, "PLACENS": 2410601.0, "GEOID": 630014.0, "NAME": "Glendora", "NAMELSAD": "Glendora city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50531741.0, "AWATER": 400123.0, "INTPTLAT": 34.1449643, "INTPTLON": -117.8478035 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8478035, 34.1449643 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 6, "felt:has_geometry": true, "felt:h3_index": 644747394806410049, "STATEFP": 6.0, "PLACEFP": 32548.0, "PLACENS": 2410720.0, "GEOID": 632548.0, "NAME": "Hawthorne", "NAMELSAD": "Hawthorne city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15766236.0, "AWATER": 28948.0, "INTPTLAT": 33.9147753, "INTPTLON": -118.3480828 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3480828, 33.9147753 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 7, "felt:has_geometry": true, "felt:h3_index": 644747394770706948, "STATEFP": 6.0, "PLACEFP": 36546.0, "PLACENS": 2410106.0, "GEOID": 636546.0, "NAME": "Inglewood", "NAMELSAD": "Inglewood city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23484488.0, "AWATER": 63501.0, "INTPTLAT": 33.9560678, "INTPTLON": -118.3442743 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3442743, 33.9560678 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 8, "felt:has_geometry": true, "felt:h3_index": 644747143697214734, "STATEFP": 6.0, "PLACEFP": 39003.0, "PLACENS": 2411565.0, "GEOID": 639003.0, "NAME": "La Cañada Flintridge", "NAMELSAD": "La Cañada Flintridge city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22354266.0, "AWATER": 42498.0, "INTPTLAT": 34.2096899, "INTPTLON": -118.2001386 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2001386, 34.2096899 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 9, "felt:has_geometry": true, "felt:h3_index": 644747393297385361, "STATEFP": 6.0, "PLACEFP": 40032.0, "PLACENS": 2411577.0, "GEOID": 640032.0, "NAME": "La Mirada", "NAMELSAD": "La Mirada city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20262797.0, "AWATER": 44394.0, "INTPTLAT": 33.9020453, "INTPTLON": -118.0089608 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0089608, 33.9020453 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 10, "felt:has_geometry": true, "felt:h3_index": 644747113151905155, "STATEFP": 6.0, "PLACEFP": 55156.0, "PLACENS": 2411359.0, "GEOID": 655156.0, "NAME": "Palmdale", "NAMELSAD": "Palmdale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 274705334.0, "AWATER": 629569.0, "INTPTLAT": 34.5910383, "INTPTLON": -118.1054031 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1054031, 34.5910383 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 11, "felt:has_geometry": true, "felt:h3_index": 644747392549282996, "STATEFP": 6.0, "PLACEFP": 55380.0, "PLACENS": 2411363.0, "GEOID": 655380.0, "NAME": "Palos Verdes Estates", "NAMELSAD": "Palos Verdes Estates city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12369151.0, "AWATER": 33350007.0, "INTPTLAT": 33.774271, "INTPTLON": -118.4257542 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4257542, 33.774271 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 12, "felt:has_geometry": true, "felt:h3_index": 644747391507016790, "STATEFP": 6.0, "PLACEFP": 62602.0, "PLACENS": 2410986.0, "GEOID": 662602.0, "NAME": "Rolling Hills", "NAMELSAD": "Rolling Hills city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7744892.0, "AWATER": 0.0, "INTPTLAT": 33.7600164, "INTPTLON": -118.3471684 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3471684, 33.7600164 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 13, "felt:has_geometry": true, "felt:h3_index": 644747094663775622, "STATEFP": 6.0, "PLACEFP": 69088.0, "PLACENS": 2411819.0, "GEOID": 669088.0, "NAME": "Santa Clarita", "NAMELSAD": "Santa Clarita city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 183251253.0, "AWATER": 159487.0, "INTPTLAT": 34.4140833, "INTPTLON": -118.4947294 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4947294, 34.4140833 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 14, "felt:has_geometry": true, "felt:h3_index": 644747393419727128, "STATEFP": 6.0, "PLACEFP": 69154.0, "PLACENS": 2411823.0, "GEOID": 669154.0, "NAME": "Santa Fe Springs", "NAMELSAD": "Santa Fe Springs city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22942025.0, "AWATER": 101085.0, "INTPTLAT": 33.9335648, "INTPTLON": -118.0626113 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0626113, 33.9335648 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 15, "felt:has_geometry": true, "felt:h3_index": 644747394496411456, "STATEFP": 6.0, "PLACEFP": 82422.0, "PLACENS": 2412150.0, "GEOID": 682422.0, "NAME": "Vernon", "NAMELSAD": "Vernon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12882252.0, "AWATER": 476377.0, "INTPTLAT": 34.001123, "INTPTLON": -118.2108689 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2108689, 34.001123 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 16, "felt:has_geometry": true, "felt:h3_index": 644747068317644611, "STATEFP": 6.0, "PLACEFP": 83332.0, "PLACENS": 2412173.0, "GEOID": 683332.0, "NAME": "Walnut", "NAMELSAD": "Walnut city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23281857.0, "AWATER": 9650.0, "INTPTLAT": 34.0371955, "INTPTLON": -117.8556059 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8556059, 34.0371955 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 17, "felt:has_geometry": true, "felt:h3_index": 644747142573379811, "STATEFP": 6.0, "PLACEFP": 71806.0, "PLACENS": 2411897.0, "GEOID": 671806.0, "NAME": "Sierra Madre", "NAMELSAD": "Sierra Madre city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7643252.0, "AWATER": 10258.0, "INTPTLAT": 34.1687705, "INTPTLON": -118.0502158 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0502158, 34.1687705 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 18, "felt:has_geometry": true, "felt:h3_index": 644747142346755468, "STATEFP": 6.0, "PLACEFP": 73220.0, "PLACENS": 2411940.0, "GEOID": 673220.0, "NAME": "South Pasadena", "NAMELSAD": "South Pasadena city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8828904.0, "AWATER": 25721.0, "INTPTLAT": 34.1089567, "INTPTLON": -118.1566154 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1566154, 34.1089567 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 19, "felt:has_geometry": true, "felt:h3_index": 644747124682556080, "STATEFP": 6.0, "PLACEFP": 9598.0, "PLACENS": 2409955.0, "GEOID": 609598.0, "NAME": "Calabasas", "NAMELSAD": "Calabasas city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35502601.0, "AWATER": 90645.0, "INTPTLAT": 34.1342518, "INTPTLON": -118.6664552 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6664552, 34.1342518 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 20, "felt:has_geometry": true, "felt:h3_index": 644747391560882420, "STATEFP": 6.0, "PLACEFP": 62644.0, "PLACENS": 2410987.0, "GEOID": 662644.0, "NAME": "Rolling Hills Estates", "NAMELSAD": "Rolling Hills Estates city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9263829.0, "AWATER": 94012.0, "INTPTLAT": 33.7784423, "INTPTLON": -118.3274319 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3274319, 33.7784423 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 21, "felt:has_geometry": true, "felt:h3_index": 644721737460646404, "STATEFP": 6.0, "PLACEFP": 5290.0, "PLACENS": 2409833.0, "GEOID": 605290.0, "NAME": "Benicia", "NAMELSAD": "Benicia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33185399.0, "AWATER": 3386032.0, "INTPTLAT": 38.0727334, "INTPTLON": -122.1551689 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1551689, 38.0727334 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 22, "felt:has_geometry": true, "felt:h3_index": 644721751384086856, "STATEFP": 6.0, "PLACEFP": 19402.0, "PLACENS": 2410343.0, "GEOID": 619402.0, "NAME": "Dixon", "NAMELSAD": "Dixon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18389794.0, "AWATER": 249127.0, "INTPTLAT": 38.447512, "INTPTLON": -121.8242225 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8242225, 38.447512 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 23, "felt:has_geometry": true, "felt:h3_index": 644721754408758146, "STATEFP": 6.0, "PLACEFP": 60984.0, "PLACENS": 2410955.0, "GEOID": 660984.0, "NAME": "Rio Vista", "NAMELSAD": "Rio Vista city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17094324.0, "AWATER": 1283585.0, "INTPTLAT": 38.1766715, "INTPTLON": -121.7034059 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7034059, 38.1766715 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 24, "felt:has_geometry": true, "felt:h3_index": 644747394390735084, "STATEFP": 6.0, "PLACEFP": 44574.0, "PLACENS": 2410901.0, "GEOID": 644574.0, "NAME": "Lynwood", "NAMELSAD": "Lynwood city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12537268.0, "AWATER": 0.0, "INTPTLAT": 33.923959, "INTPTLON": -118.2016551 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2016551, 33.923959 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 25, "felt:has_geometry": true, "felt:h3_index": 644721735672430926, "STATEFP": 6.0, "PLACEFP": 75630.0, "PLACENS": 2411995.0, "GEOID": 675630.0, "NAME": "Suisun City", "NAMELSAD": "Suisun City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10373861.0, "AWATER": 156438.0, "INTPTLAT": 38.2483339, "INTPTLON": -122.0100659 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0100659, 38.2483339 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 26, "felt:has_geometry": true, "felt:h3_index": 644747137748173861, "STATEFP": 6.0, "PLACEFP": 49138.0, "PLACENS": 2411157.0, "GEOID": 649138.0, "NAME": "Moorpark", "NAMELSAD": "Moorpark city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31796168.0, "AWATER": 488806.0, "INTPTLAT": 34.285942, "INTPTLON": -118.8770396 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8770396, 34.285942 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 27, "felt:has_geometry": true, "felt:h3_index": 644721747479832294, "STATEFP": 6.0, "PLACEFP": 62546.0, "PLACENS": 2410985.0, "GEOID": 662546.0, "NAME": "Rohnert Park", "NAMELSAD": "Rohnert Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18870233.0, "AWATER": 12617.0, "INTPTLAT": 38.3476171, "INTPTLON": -122.7008956 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7008956, 38.3476171 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 28, "felt:has_geometry": true, "felt:h3_index": 644721856003360475, "STATEFP": 6.0, "PLACEFP": 70770.0, "PLACENS": 2411857.0, "GEOID": 670770.0, "NAME": "Sebastopol", "NAMELSAD": "Sebastopol city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4874900.0, "AWATER": 0.0, "INTPTLAT": 38.400003, "INTPTLON": -122.8275864 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8275864, 38.400003 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 29, "felt:has_geometry": true, "felt:h3_index": 644721733986016010, "STATEFP": 6.0, "PLACEFP": 72646.0, "PLACENS": 2411929.0, "GEOID": 672646.0, "NAME": "Sonoma", "NAMELSAD": "Sonoma city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7105863.0, "AWATER": 0.0, "INTPTLAT": 38.2903313, "INTPTLON": -122.459831 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.459831, 38.2903313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 30, "felt:has_geometry": true, "felt:h3_index": 644747138103846309, "STATEFP": 6.0, "PLACEFP": 10046.0, "PLACENS": 2409966.0, "GEOID": 610046.0, "NAME": "Camarillo", "NAMELSAD": "Camarillo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50986168.0, "AWATER": 42884.0, "INTPTLAT": 34.2218233, "INTPTLON": -119.0321535 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0321535, 34.2218233 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 31, "felt:has_geometry": true, "felt:h3_index": 644747133490056433, "STATEFP": 6.0, "PLACEFP": 24092.0, "PLACENS": 2410504.0, "GEOID": 624092.0, "NAME": "Fillmore", "NAMELSAD": "Fillmore city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8553766.0, "AWATER": 0.0, "INTPTLAT": 34.3989578, "INTPTLON": -118.9174598 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9174598, 34.3989578 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 32, "felt:has_geometry": true, "felt:h3_index": 644737283856424154, "STATEFP": 6.0, "PLACEFP": 54652.0, "PLACENS": 2411347.0, "GEOID": 654652.0, "NAME": "Oxnard", "NAMELSAD": "Oxnard city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68707177.0, "AWATER": 32677585.0, "INTPTLAT": 34.1994364, "INTPTLON": -119.2075154 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2075154, 34.1994364 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 33, "felt:has_geometry": true, "felt:h3_index": 644722010188307603, "STATEFP": 6.0, "PLACEFP": 44112.0, "PLACENS": 2412917.0, "GEOID": 644112.0, "NAME": "Los Gatos", "NAMELSAD": "Los Gatos town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29919849.0, "AWATER": 206446.0, "INTPTLAT": 37.2299123, "INTPTLON": -121.9568137 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9568137, 37.2299123 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 34, "felt:has_geometry": true, "felt:h3_index": 644722029939997830, "STATEFP": 6.0, "PLACEFP": 29504.0, "PLACENS": 2410591.0, "GEOID": 629504.0, "NAME": "Gilroy", "NAMELSAD": "Gilroy city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42826755.0, "AWATER": 26658.0, "INTPTLAT": 37.0064066, "INTPTLON": -121.5853213 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5853213, 37.0064066 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 35, "felt:has_geometry": true, "felt:h3_index": 644722038262818660, "STATEFP": 6.0, "PLACEFP": 70280.0, "PLACENS": 2411832.0, "GEOID": 670280.0, "NAME": "Saratoga", "NAMELSAD": "Saratoga city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33097414.0, "AWATER": 0.0, "INTPTLAT": 37.2683263, "INTPTLON": -122.0262197 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0262197, 37.2683263 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6.0, "PLACEFP": 20242.0, "PLACENS": 2410372.0, "GEOID": 620242.0, "NAME": "Dunsmuir", "NAMELSAD": "Dunsmuir city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427.0, "AWATER": 91444.0, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2709386, 41.231526 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6.0, "PLACEFP": 22972.0, "PLACENS": 2410458.0, "GEOID": 622972.0, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757.0, "AWATER": 2444.0, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8958191, 41.4581989 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 38, "felt:has_geometry": true, "felt:h3_index": 644719616714914477, "STATEFP": 6.0, "PLACEFP": 25128.0, "PLACENS": 2410527.0, "GEOID": 625128.0, "NAME": "Fort Jones", "NAMELSAD": "Fort Jones city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1559876.0, "AWATER": 0.0, "INTPTLAT": 41.6084521, "INTPTLON": -122.8410656 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8410656, 41.6084521 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 39, "felt:has_geometry": true, "felt:h3_index": 644719614003651185, "STATEFP": 6.0, "PLACEFP": 48690.0, "PLACENS": 2411140.0, "GEOID": 648690.0, "NAME": "Montague", "NAMELSAD": "Montague city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4604513.0, "AWATER": 39458.0, "INTPTLAT": 41.7270878, "INTPTLON": -122.5305115 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5305115, 41.7270878 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6.0, "PLACEFP": 83850.0, "PLACENS": 2412201.0, "GEOID": 683850.0, "NAME": "Weed", "NAMELSAD": "Weed city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111.0, "AWATER": 13340.0, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3809655, 41.4120866 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 41, "felt:has_geometry": true, "felt:h3_index": 644747148944885665, "STATEFP": 6.0, "PLACEFP": 3666.0, "PLACENS": 2409777.0, "GEOID": 603666.0, "NAME": "Baldwin Park", "NAMELSAD": "Baldwin Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17177101.0, "AWATER": 400505.0, "INTPTLAT": 34.0828245, "INTPTLON": -117.9712858 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9712858, 34.0828245 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 42, "felt:has_geometry": true, "felt:h3_index": 644747131427669805, "STATEFP": 6.0, "PLACEFP": 6308.0, "PLACENS": 2409840.0, "GEOID": 606308.0, "NAME": "Beverly Hills", "NAMELSAD": "Beverly Hills city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14784194.0, "AWATER": 2279.0, "INTPTLAT": 34.07923, "INTPTLON": -118.4024374 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4024374, 34.07923 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 43, "felt:has_geometry": true, "felt:h3_index": 644747147539074405, "STATEFP": 6.0, "PLACEFP": 30000.0, "PLACENS": 2410597.0, "GEOID": 630000.0, "NAME": "Glendale", "NAMELSAD": "Glendale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78940369.0, "AWATER": 330542.0, "INTPTLAT": 34.1813929, "INTPTLON": -118.2458301 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2458301, 34.1813929 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 44, "felt:has_geometry": true, "felt:h3_index": 644747148764514884, "STATEFP": 6.0, "PLACEFP": 40340.0, "PLACENS": 2411581.0, "GEOID": 640340.0, "NAME": "La Puente", "NAMELSAD": "La Puente city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9009253.0, "AWATER": 1746.0, "INTPTLAT": 34.0323333, "INTPTLON": -117.9535204 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9535204, 34.0323333 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 45, "felt:has_geometry": true, "felt:h3_index": 644747131027237789, "STATEFP": 6.0, "PLACEFP": 44000.0, "PLACENS": 2410877.0, "GEOID": 644000.0, "NAME": "Los Angeles", "NAMELSAD": "Los Angeles city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1218634998.0, "AWATER": 80417875.0, "INTPTLAT": 34.0193936, "INTPTLON": -118.4108248 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4108248, 34.0193936 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 46, "felt:has_geometry": true, "felt:h3_index": 644747393191424750, "STATEFP": 6.0, "PLACEFP": 55618.0, "PLACENS": 2411369.0, "GEOID": 655618.0, "NAME": "Paramount", "NAMELSAD": "Paramount city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12240740.0, "AWATER": 283684.0, "INTPTLAT": 33.8988835, "INTPTLON": -118.1666294 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1666294, 33.8988835 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 47, "felt:has_geometry": true, "felt:h3_index": 644747146450575756, "STATEFP": 6.0, "PLACEFP": 78148.0, "PLACENS": 2412047.0, "GEOID": 678148.0, "NAME": "Temple City", "NAMELSAD": "Temple City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10370555.0, "AWATER": 0.0, "INTPTLAT": 34.1021583, "INTPTLON": -118.0579673 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0579673, 34.1021583 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 48, "felt:has_geometry": true, "felt:h3_index": 644747034385786001, "STATEFP": 6.0, "PLACEFP": 59451.0, "PLACENS": 2411514.0, "GEOID": 659451.0, "NAME": "Rancho Cucamonga", "NAMELSAD": "Rancho Cucamonga city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120441408.0, "AWATER": 24723.0, "INTPTLAT": 34.1303055, "INTPTLON": -117.5660665 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5660665, 34.1303055 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 49, "felt:has_geometry": true, "felt:h3_index": 644722038532126563, "STATEFP": 6.0, "PLACEFP": 10345.0, "PLACENS": 2409971.0, "GEOID": 610345.0, "NAME": "Campbell", "NAMELSAD": "Campbell city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15749601.0, "AWATER": 50285.0, "INTPTLAT": 37.2802437, "INTPTLON": -121.953296 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.953296, 37.2802437 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 50, "felt:has_geometry": true, "felt:h3_index": 644722038378714677, "STATEFP": 6.0, "PLACEFP": 17610.0, "PLACENS": 2410278.0, "GEOID": 617610.0, "NAME": "Cupertino", "NAMELSAD": "Cupertino city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29338790.0, "AWATER": 2520.0, "INTPTLAT": 37.3193996, "INTPTLON": -122.0449572 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0449572, 37.3193996 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 51, "felt:has_geometry": true, "felt:h3_index": 644722039282742948, "STATEFP": 6.0, "PLACEFP": 43294.0, "PLACENS": 2412916.0, "GEOID": 643294.0, "NAME": "Los Altos Hills", "NAMELSAD": "Los Altos Hills town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23483096.0, "AWATER": 0.0, "INTPTLAT": 37.3668075, "INTPTLON": -122.1386496 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1386496, 37.3668075 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 52, "felt:has_geometry": true, "felt:h3_index": 644722009897173091, "STATEFP": 6.0, "PLACEFP": 48956.0, "PLACENS": 2411142.0, "GEOID": 648956.0, "NAME": "Monte Sereno", "NAMELSAD": "Monte Sereno city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4231274.0, "AWATER": 0.0, "INTPTLAT": 37.2404096, "INTPTLON": -121.9882354 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9882354, 37.2404096 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 53, "felt:has_geometry": true, "felt:h3_index": 644722038782120448, "STATEFP": 6.0, "PLACEFP": 55282.0, "PLACENS": 2411362.0, "GEOID": 655282.0, "NAME": "Palo Alto", "NAMELSAD": "Palo Alto city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62291998.0, "AWATER": 4940291.0, "INTPTLAT": 37.39652, "INTPTLON": -122.1430878 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1430878, 37.39652 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 54, "felt:has_geometry": true, "felt:h3_index": 644722025844024467, "STATEFP": 6.0, "PLACEFP": 68000.0, "PLACENS": 2411790.0, "GEOID": 668000.0, "NAME": "San Jose", "NAMELSAD": "San Jose city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 460811249.0, "AWATER": 8089813.0, "INTPTLAT": 37.2960112, "INTPTLON": -121.8145519 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8145519, 37.2960112 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 55, "felt:has_geometry": true, "felt:h3_index": 644737296424841429, "STATEFP": 6.0, "PLACEFP": 58296.0, "PLACENS": 2411462.0, "GEOID": 658296.0, "NAME": "Port Hueneme", "NAMELSAD": "Port Hueneme city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11434436.0, "AWATER": 647054.0, "INTPTLAT": 34.1621431, "INTPTLON": -119.2041771 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2041771, 34.1621431 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 56, "felt:has_geometry": true, "felt:h3_index": 644721880383468948, "STATEFP": 6.0, "PLACEFP": 46170.0, "PLACENS": 2411046.0, "GEOID": 646170.0, "NAME": "Marysville", "NAMELSAD": "Marysville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8971193.0, "AWATER": 312457.0, "INTPTLAT": 39.1515353, "INTPTLON": -121.5833738 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5833738, 39.1515353 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 57, "felt:has_geometry": true, "felt:h3_index": 644747280593375522, "STATEFP": 6.0, "PLACEFP": 4030.0, "PLACENS": 2409790.0, "GEOID": 604030.0, "NAME": "Barstow", "NAMELSAD": "Barstow city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 106964252.0, "AWATER": 112301.0, "INTPTLAT": 34.8669866, "INTPTLON": -117.0430349 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0430349, 34.8669866 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 58, "felt:has_geometry": true, "felt:h3_index": 644747022904623702, "STATEFP": 6.0, "PLACEFP": 14890.0, "PLACENS": 2410200.0, "GEOID": 614890.0, "NAME": "Colton", "NAMELSAD": "Colton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40478596.0, "AWATER": 1325520.0, "INTPTLAT": 34.0545252, "INTPTLON": -117.3250286 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3250286, 34.0545252 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 59, "felt:has_geometry": true, "felt:h3_index": 644747021617081414, "STATEFP": 6.0, "PLACEFP": 30658.0, "PLACENS": 2410634.0, "GEOID": 630658.0, "NAME": "Grand Terrace", "NAMELSAD": "Grand Terrace city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9125422.0, "AWATER": 0.0, "INTPTLAT": 34.0310847, "INTPTLON": -117.3131005 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3131005, 34.0310847 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 60, "felt:has_geometry": true, "felt:h3_index": 644719785796805700, "STATEFP": 6.0, "PLACEFP": 80686.0, "PLACENS": 2412108.0, "GEOID": 680686.0, "NAME": "Tulelake", "NAMELSAD": "Tulelake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1061321.0, "AWATER": 6167.0, "INTPTLAT": 41.9534596, "INTPTLON": -121.4748966 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4748966, 41.9534596 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 61, "felt:has_geometry": true, "felt:h3_index": 644721871899756892, "STATEFP": 6.0, "PLACEFP": 41474.0, "PLACENS": 2410835.0, "GEOID": 641474.0, "NAME": "Lincoln", "NAMELSAD": "Lincoln city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62599874.0, "AWATER": 110309.0, "INTPTLAT": 38.8744639, "INTPTLON": -121.2928862 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2928862, 38.8744639 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 62, "felt:has_geometry": true, "felt:h3_index": 644721875920137428, "STATEFP": 6.0, "PLACEFP": 43140.0, "PLACENS": 2412914.0, "GEOID": 643140.0, "NAME": "Loomis", "NAMELSAD": "Loomis town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18820030.0, "AWATER": 0.0, "INTPTLAT": 38.809368, "INTPTLON": -121.1954675 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1954675, 38.809368 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 63, "felt:has_geometry": true, "felt:h3_index": 644721772034835745, "STATEFP": 6.0, "PLACEFP": 65028.0, "PLACENS": 2411778.0, "GEOID": 665028.0, "NAME": "San Bruno", "NAMELSAD": "San Bruno city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14215240.0, "AWATER": 0.0, "INTPTLAT": 37.6255598, "INTPTLON": -122.4313965 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4313965, 37.6255598 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 64, "felt:has_geometry": true, "felt:h3_index": 644721816599915433, "STATEFP": 6.0, "PLACEFP": 57876.0, "PLACENS": 2411449.0, "GEOID": 657876.0, "NAME": "Point Arena", "NAMELSAD": "Point Arena city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3537807.0, "AWATER": 0.0, "INTPTLAT": 38.912306, "INTPTLON": -123.6956087 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.6956087, 38.912306 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 65, "felt:has_geometry": true, "felt:h3_index": 644718903551286291, "STATEFP": 6.0, "PLACEFP": 85600.0, "PLACENS": 2412270.0, "GEOID": 685600.0, "NAME": "Willits", "NAMELSAD": "Willits city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7321585.0, "AWATER": 1546.0, "INTPTLAT": 39.4050065, "INTPTLON": -123.3488889 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.3488889, 39.4050065 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 66, "felt:has_geometry": true, "felt:h3_index": 644721768589236761, "STATEFP": 6.0, "PLACEFP": 16462.0, "PLACENS": 2413247.0, "GEOID": 616462.0, "NAME": "Corte Madera", "NAMELSAD": "Corte Madera town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8184887.0, "AWATER": 3216812.0, "INTPTLAT": 37.9318458, "INTPTLON": -122.5077378 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5077378, 37.9318458 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 67, "felt:has_geometry": true, "felt:h3_index": 644721782642263842, "STATEFP": 6.0, "PLACEFP": 62980.0, "PLACENS": 2412578.0, "GEOID": 662980.0, "NAME": "Ross", "NAMELSAD": "Ross town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4036002.0, "AWATER": 0.0, "INTPTLAT": 37.9638206, "INTPTLON": -122.5616141 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5616141, 37.9638206 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 68, "felt:has_geometry": true, "felt:h3_index": 644721782867970056, "STATEFP": 6.0, "PLACEFP": 64434.0, "PLACENS": 2413251.0, "GEOID": 664434.0, "NAME": "San Anselmo", "NAMELSAD": "San Anselmo town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6928816.0, "AWATER": 0.0, "INTPTLAT": 37.9821174, "INTPTLON": -122.5699207 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5699207, 37.9821174 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 69, "felt:has_geometry": true, "felt:h3_index": 644721768297554245, "STATEFP": 6.0, "PLACEFP": 47710.0, "PLACENS": 2411109.0, "GEOID": 647710.0, "NAME": "Mill Valley", "NAMELSAD": "Mill Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12385974.0, "AWATER": 218653.0, "INTPTLAT": 37.9081217, "INTPTLON": -122.5423253 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5423253, 37.9081217 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 70, "felt:has_geometry": true, "felt:h3_index": 644721768414402736, "STATEFP": 6.0, "PLACEFP": 78666.0, "PLACENS": 2413389.0, "GEOID": 678666.0, "NAME": "Tiburon", "NAMELSAD": "Tiburon town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11603822.0, "AWATER": 22626730.0, "INTPTLAT": 37.8867683, "INTPTLON": -122.4626194 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4626194, 37.8867683 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 71, "felt:has_geometry": true, "felt:h3_index": 644722038848756371, "STATEFP": 6.0, "PLACEFP": 3092.0, "PLACENS": 2411651.0, "GEOID": 603092.0, "NAME": "Atherton", "NAMELSAD": "Atherton town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12991701.0, "AWATER": 82320.0, "INTPTLAT": 37.4570721, "INTPTLON": -122.2010583 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2010583, 37.4570721 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 72, "felt:has_geometry": true, "felt:h3_index": 644721771480288549, "STATEFP": 6.0, "PLACEFP": 8310.0, "PLACENS": 2409912.0, "GEOID": 608310.0, "NAME": "Brisbane", "NAMELSAD": "Brisbane city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7731744.0, "AWATER": 43981510.0, "INTPTLAT": 37.6757495, "INTPTLON": -122.383302 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.383302, 37.6757495 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 73, "felt:has_geometry": true, "felt:h3_index": 644721773288010508, "STATEFP": 6.0, "PLACEFP": 14736.0, "PLACENS": 2413228.0, "GEOID": 614736.0, "NAME": "Colma", "NAMELSAD": "Colma town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4896408.0, "AWATER": 0.0, "INTPTLAT": 37.6766971, "INTPTLON": -122.4528212 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4528212, 37.6766971 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 74, "felt:has_geometry": true, "felt:h3_index": 644722039111107317, "STATEFP": 6.0, "PLACEFP": 20956.0, "PLACENS": 2410389.0, "GEOID": 620956.0, "NAME": "East Palo Alto", "NAMELSAD": "East Palo Alto city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6547354.0, "AWATER": 298782.0, "INTPTLAT": 37.4677798, "INTPTLON": -122.1325502 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1325502, 37.4677798 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 75, "felt:has_geometry": true, "felt:h3_index": 644722035104504150, "STATEFP": 6.0, "PLACEFP": 25338.0, "PLACENS": 2410534.0, "GEOID": 625338.0, "NAME": "Foster City", "NAMELSAD": "Foster City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9808766.0, "AWATER": 41556867.0, "INTPTLAT": 37.56482, "INTPTLON": -122.2507815 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2507815, 37.56482 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 76, "felt:has_geometry": true, "felt:h3_index": 644722016601598709, "STATEFP": 6.0, "PLACEFP": 31708.0, "PLACENS": 2410685.0, "GEOID": 631708.0, "NAME": "Half Moon Bay", "NAMELSAD": "Half Moon Bay city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16166728.0, "AWATER": 28378.0, "INTPTLAT": 37.467319, "INTPTLON": -122.4404845 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4404845, 37.467319 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 77, "felt:has_geometry": true, "felt:h3_index": 644721771953219616, "STATEFP": 6.0, "PLACEFP": 33798.0, "PLACENS": 2412752.0, "GEOID": 633798.0, "NAME": "Hillsborough", "NAMELSAD": "Hillsborough town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15970658.0, "AWATER": 0.0, "INTPTLAT": 37.5572062, "INTPTLON": -122.3585413 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3585413, 37.5572062 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 78, "felt:has_geometry": true, "felt:h3_index": 644721772088049701, "STATEFP": 6.0, "PLACEFP": 47486.0, "PLACENS": 2411110.0, "GEOID": 647486.0, "NAME": "Millbrae", "NAMELSAD": "Millbrae city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8465890.0, "AWATER": 61644.0, "INTPTLAT": 37.5989695, "INTPTLON": -122.4019908 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4019908, 37.5989695 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 79, "felt:has_geometry": true, "felt:h3_index": 644722019789825172, "STATEFP": 6.0, "PLACEFP": 54806.0, "PLACENS": 2411351.0, "GEOID": 654806.0, "NAME": "Pacifica", "NAMELSAD": "Pacifica city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32589428.0, "AWATER": 23854.0, "INTPTLAT": 37.6065981, "INTPTLON": -122.4772305 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4772305, 37.6065981 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 80, "felt:has_geometry": true, "felt:h3_index": 644721768423400360, "STATEFP": 6.0, "PLACEFP": 5164.0, "PLACENS": 2409829.0, "GEOID": 605164.0, "NAME": "Belvedere", "NAMELSAD": "Belvedere city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1345174.0, "AWATER": 4888515.0, "INTPTLAT": 37.8735672, "INTPTLON": -122.4709947 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4709947, 37.8735672 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 81, "felt:has_geometry": true, "felt:h3_index": 644722149551608364, "STATEFP": 6.0, "PLACEFP": 12524.0, "PLACENS": 2409430.0, "GEOID": 612524.0, "NAME": "Ceres", "NAMELSAD": "Ceres city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24601754.0, "AWATER": 14310.0, "INTPTLAT": 37.5987859, "INTPTLON": -120.968081 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.968081, 37.5987859 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 82, "felt:has_geometry": true, "felt:h3_index": 644722149615737250, "STATEFP": 6.0, "PLACEFP": 34904.0, "PLACENS": 2410804.0, "GEOID": 634904.0, "NAME": "Hughson", "NAMELSAD": "Hughson city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4937411.0, "AWATER": 0.0, "INTPTLAT": 37.6021348, "INTPTLON": -120.8660044 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8660044, 37.6021348 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 83, "felt:has_geometry": true, "felt:h3_index": 644722185962898626, "STATEFP": 6.0, "PLACEFP": 51140.0, "PLACENS": 2411247.0, "GEOID": 651140.0, "NAME": "Newman", "NAMELSAD": "Newman city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5553070.0, "AWATER": 0.0, "INTPTLAT": 37.3161283, "INTPTLON": -121.0214244 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0214244, 37.3161283 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 84, "felt:has_geometry": true, "felt:h3_index": 644721960644087960, "STATEFP": 6.0, "PLACEFP": 41936.0, "PLACENS": 2410846.0, "GEOID": 641936.0, "NAME": "Live Oak", "NAMELSAD": "Live Oak city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8083317.0, "AWATER": 0.0, "INTPTLAT": 39.2788019, "INTPTLON": -121.662439 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.662439, 39.2788019 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 85, "felt:has_geometry": true, "felt:h3_index": 644722145314416973, "STATEFP": 6.0, "PLACEFP": 52694.0, "PLACENS": 2411291.0, "GEOID": 652694.0, "NAME": "Oakdale", "NAMELSAD": "Oakdale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16121384.0, "AWATER": 100699.0, "INTPTLAT": 37.7616661, "INTPTLON": -120.8464343 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8464343, 37.7616661 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 86, "felt:has_geometry": true, "felt:h3_index": 644747672347326621, "STATEFP": 6.0, "PLACEFP": 19612.0, "PLACENS": 2410348.0, "GEOID": 619612.0, "NAME": "Dos Palos", "NAMELSAD": "Dos Palos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3494393.0, "AWATER": 0.0, "INTPTLAT": 36.9854237, "INTPTLON": -120.6338446 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6338446, 36.9854237 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 87, "felt:has_geometry": true, "felt:h3_index": 644722186525498705, "STATEFP": 6.0, "PLACEFP": 31568.0, "PLACENS": 2410677.0, "GEOID": 631568.0, "NAME": "Gustine", "NAMELSAD": "Gustine city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4868787.0, "AWATER": 0.0, "INTPTLAT": 37.2525487, "INTPTLON": -120.995513 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.995513, 37.2525487 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 88, "felt:has_geometry": true, "felt:h3_index": 644737842471774025, "STATEFP": 6.0, "PLACEFP": 54848.0, "PLACENS": 2411350.0, "GEOID": 654848.0, "NAME": "Pacific Grove", "NAMELSAD": "Pacific Grove city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7422060.0, "AWATER": 2925786.0, "INTPTLAT": 36.6225766, "INTPTLON": -121.92643 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.92643, 36.6225766 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 89, "felt:has_geometry": true, "felt:h3_index": 644722202427532195, "STATEFP": 6.0, "PLACEFP": 42006.0, "PLACENS": 2410850.0, "GEOID": 642006.0, "NAME": "Livingston", "NAMELSAD": "Livingston city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9518104.0, "AWATER": 7397.0, "INTPTLAT": 37.3872812, "INTPTLON": -120.724943 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.724943, 37.3872812 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 90, "felt:has_geometry": true, "felt:h3_index": 644719830826685152, "STATEFP": 6.0, "PLACEFP": 58352.0, "PLACENS": 2411473.0, "GEOID": 658352.0, "NAME": "Portola", "NAMELSAD": "Portola city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14003433.0, "AWATER": 0.0, "INTPTLAT": 39.820799, "INTPTLON": -120.474293 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.474293, 39.820799 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 91, "felt:has_geometry": true, "felt:h3_index": 644722062163040654, "STATEFP": 6.0, "PLACEFP": 68014.0, "PLACENS": 2411792.0, "GEOID": 668014.0, "NAME": "San Juan Bautista", "NAMELSAD": "San Juan Bautista city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2032272.0, "AWATER": 1166.0, "INTPTLAT": 36.8451322, "INTPTLON": -121.5369493 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5369493, 36.8451322 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 92, "felt:has_geometry": true, "felt:h3_index": 644722039132004736, "STATEFP": 6.0, "PLACEFP": 46870.0, "PLACENS": 2411079.0, "GEOID": 646870.0, "NAME": "Menlo Park", "NAMELSAD": "Menlo Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25873981.0, "AWATER": 19152744.0, "INTPTLAT": 37.4797313, "INTPTLON": -122.1480548 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1480548, 37.4797313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 93, "felt:has_geometry": true, "felt:h3_index": 644722018759325973, "STATEFP": 6.0, "PLACEFP": 68252.0, "PLACENS": 2411800.0, "GEOID": 668252.0, "NAME": "San Mateo", "NAMELSAD": "San Mateo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31427171.0, "AWATER": 9622102.0, "INTPTLAT": 37.5603104, "INTPTLON": -122.3106003 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3106003, 37.5603104 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 94, "felt:has_geometry": true, "felt:h3_index": 644722022924517800, "STATEFP": 6.0, "PLACEFP": 58380.0, "PLACENS": 2412499.0, "GEOID": 658380.0, "NAME": "Portola Valley", "NAMELSAD": "Portola Valley town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23524913.0, "AWATER": 3741.0, "INTPTLAT": 37.3651909, "INTPTLON": -122.2327244 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2327244, 37.3651909 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 95, "felt:has_geometry": true, "felt:h3_index": 644747392223055168, "STATEFP": 6.0, "PLACEFP": 40886.0, "PLACENS": 2411637.0, "GEOID": 640886.0, "NAME": "Lawndale", "NAMELSAD": "Lawndale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5107874.0, "AWATER": 0.0, "INTPTLAT": 33.8884347, "INTPTLON": -118.3531433 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3531433, 33.8884347 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 96, "felt:has_geometry": true, "felt:h3_index": 644719918373734998, "STATEFP": 6.0, "PLACEFP": 16322.0, "PLACENS": 2410231.0, "GEOID": 616322.0, "NAME": "Corning", "NAMELSAD": "Corning city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9186897.0, "AWATER": 0.0, "INTPTLAT": 39.9282003, "INTPTLON": -122.1820088 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1820088, 39.9282003 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 97, "felt:has_geometry": true, "felt:h3_index": 644719934668626734, "STATEFP": 6.0, "PLACEFP": 78106.0, "PLACENS": 2412042.0, "GEOID": 678106.0, "NAME": "Tehama", "NAMELSAD": "Tehama city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2057210.0, "AWATER": 0.0, "INTPTLAT": 40.0217761, "INTPTLON": -122.1269008 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1269008, 40.0217761 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 98, "felt:has_geometry": true, "felt:h3_index": 644721738430170984, "STATEFP": 6.0, "PLACEFP": 81666.0, "PLACENS": 2412142.0, "GEOID": 681666.0, "NAME": "Vallejo", "NAMELSAD": "Vallejo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78784262.0, "AWATER": 46317409.0, "INTPTLAT": 38.1069086, "INTPTLON": -122.2623386 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2623386, 38.1069086 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 99, "felt:has_geometry": true, "felt:h3_index": 644747027230679468, "STATEFP": 6.0, "PLACEFP": 62000.0, "PLACENS": 2410965.0, "GEOID": 662000.0, "NAME": "Riverside", "NAMELSAD": "Riverside city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 210174364.0, "AWATER": 797658.0, "INTPTLAT": 33.9381433, "INTPTLON": -117.3931676 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3931676, 33.9381433 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 100, "felt:has_geometry": true, "felt:h3_index": 644747022274563185, "STATEFP": 6.0, "PLACEFP": 49270.0, "PLACENS": 2411159.0, "GEOID": 649270.0, "NAME": "Moreno Valley", "NAMELSAD": "Moreno Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 132891703.0, "AWATER": 546511.0, "INTPTLAT": 33.9232527, "INTPTLON": -117.2056845 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2056845, 33.9232527 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 101, "felt:has_geometry": true, "felt:h3_index": 644747071256568086, "STATEFP": 6.0, "PLACEFP": 16350.0, "PLACENS": 2410232.0, "GEOID": 616350.0, "NAME": "Corona", "NAMELSAD": "Corona city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103320711.0, "AWATER": 53926.0, "INTPTLAT": 33.8619689, "INTPTLON": -117.5654945 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5654945, 33.8619689 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 102, "felt:has_geometry": true, "felt:h3_index": 644747059879569155, "STATEFP": 6.0, "PLACEFP": 39486.0, "PLACENS": 2411601.0, "GEOID": 639486.0, "NAME": "Lake Elsinore", "NAMELSAD": "Lake Elsinore city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 99115608.0, "AWATER": 13658093.0, "INTPTLAT": 33.685956, "INTPTLON": -117.3354038 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3354038, 33.685956 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 103, "felt:has_geometry": true, "felt:h3_index": 644747076412385956, "STATEFP": 6.0, "PLACEFP": 4758.0, "PLACENS": 2409805.0, "GEOID": 604758.0, "NAME": "Beaumont", "NAMELSAD": "Beaumont city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78560690.0, "AWATER": 35531.0, "INTPTLAT": 33.8767216, "INTPTLON": -116.9530089 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9530089, 33.8767216 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 104, "felt:has_geometry": true, "felt:h3_index": 644747074353846796, "STATEFP": 6.0, "PLACEFP": 33182.0, "PLACENS": 2410738.0, "GEOID": 633182.0, "NAME": "Hemet", "NAMELSAD": "Hemet city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75787408.0, "AWATER": 0.0, "INTPTLAT": 33.7340679, "INTPTLON": -116.9968083 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9968083, 33.7340679 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 105, "felt:has_geometry": true, "felt:h3_index": 644747067382683209, "STATEFP": 6.0, "PLACEFP": 51560.0, "PLACENS": 2411265.0, "GEOID": 651560.0, "NAME": "Norco", "NAMELSAD": "Norco city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35890351.0, "AWATER": 569467.0, "INTPTLAT": 33.9255186, "INTPTLON": -117.5519578 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5519578, 33.9255186 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 106, "felt:has_geometry": true, "felt:h3_index": 644747443814965976, "STATEFP": 6.0, "PLACEFP": 12048.0, "PLACENS": 2409412.0, "GEOID": 612048.0, "NAME": "Cathedral City", "NAMELSAD": "Cathedral City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 58212517.0, "AWATER": 665524.0, "INTPTLAT": 33.8354871, "INTPTLON": -116.4631031 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4631031, 33.8354871 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 107, "felt:has_geometry": true, "felt:h3_index": 644747076980868185, "STATEFP": 6.0, "PLACEFP": 67112.0, "PLACENS": 2411788.0, "GEOID": 667112.0, "NAME": "San Jacinto", "NAMELSAD": "San Jacinto city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67011568.0, "AWATER": 416801.0, "INTPTLAT": 33.7988642, "INTPTLON": -116.9959145 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9959145, 33.7988642 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 108, "felt:has_geometry": true, "felt:h3_index": 644747442472890388, "STATEFP": 6.0, "PLACEFP": 55184.0, "PLACENS": 2411356.0, "GEOID": 655184.0, "NAME": "Palm Desert", "NAMELSAD": "Palm Desert city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69352308.0, "AWATER": 528740.0, "INTPTLAT": 33.7376353, "INTPTLON": -116.3641448 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3641448, 33.7376353 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 109, "felt:has_geometry": true, "felt:h3_index": 644747065500019905, "STATEFP": 6.0, "PLACEFP": 39304.0, "PLACENS": 2411572.0, "GEOID": 639304.0, "NAME": "La Habra Heights", "NAMELSAD": "La Habra Heights city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15951225.0, "AWATER": 4740.0, "INTPTLAT": 33.9589591, "INTPTLON": -117.9489729 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9489729, 33.9589591 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 110, "felt:has_geometry": true, "felt:h3_index": 644722037769278186, "STATEFP": 6.0, "PLACEFP": 77000.0, "PLACENS": 2412009.0, "GEOID": 677000.0, "NAME": "Sunnyvale", "NAMELSAD": "Sunnyvale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 57135716.0, "AWATER": 1858933.0, "INTPTLAT": 37.385797, "INTPTLON": -122.0263165 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0263165, 37.385797 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 111, "felt:has_geometry": true, "felt:h3_index": 644722039051696876, "STATEFP": 6.0, "PLACEFP": 49670.0, "PLACENS": 2411186.0, "GEOID": 649670.0, "NAME": "Mountain View", "NAMELSAD": "Mountain View city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30971479.0, "AWATER": 719719.0, "INTPTLAT": 37.399686, "INTPTLON": -122.0792687 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0792687, 37.399686 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 112, "felt:has_geometry": true, "felt:h3_index": 644722039514080468, "STATEFP": 6.0, "PLACEFP": 43280.0, "PLACENS": 2410876.0, "GEOID": 643280.0, "NAME": "Los Altos", "NAMELSAD": "Los Altos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16938030.0, "AWATER": 0.0, "INTPTLAT": 37.3684313, "INTPTLON": -122.09657 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.09657, 37.3684313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 113, "felt:has_geometry": true, "felt:h3_index": 644722037696807841, "STATEFP": 6.0, "PLACEFP": 69084.0, "PLACENS": 2411816.0, "GEOID": 669084.0, "NAME": "Santa Clara", "NAMELSAD": "Santa Clara city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47336092.0, "AWATER": 0.0, "INTPTLAT": 37.3646207, "INTPTLON": -121.9679735 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9679735, 37.3646207 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 114, "felt:has_geometry": true, "felt:h3_index": 644722025354083556, "STATEFP": 6.0, "PLACEFP": 49278.0, "PLACENS": 2411162.0, "GEOID": 649278.0, "NAME": "Morgan Hill", "NAMELSAD": "Morgan Hill city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33509082.0, "AWATER": 0.0, "INTPTLAT": 37.132495, "INTPTLON": -121.6418905 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6418905, 37.132495 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 115, "felt:has_geometry": true, "felt:h3_index": 644747067680746824, "STATEFP": 6.0, "PLACEFP": 58072.0, "PLACENS": 2411454.0, "GEOID": 658072.0, "NAME": "Pomona", "NAMELSAD": "Pomona city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59529294.0, "AWATER": 26188.0, "INTPTLAT": 34.0584937, "INTPTLON": -117.7610909 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7610909, 34.0584937 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 116, "felt:has_geometry": true, "felt:h3_index": 644747148776776579, "STATEFP": 6.0, "PLACEFP": 36490.0, "PLACENS": 2410102.0, "GEOID": 636490.0, "NAME": "Industry", "NAMELSAD": "Industry city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30491281.0, "AWATER": 717580.0, "INTPTLAT": 34.0262321, "INTPTLON": -117.9403266 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9403266, 34.0262321 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 117, "felt:has_geometry": true, "felt:h3_index": 644747068372046986, "STATEFP": 6.0, "PLACEFP": 19192.0, "PLACENS": 2410334.0, "GEOID": 619192.0, "NAME": "Diamond Bar", "NAMELSAD": "Diamond Bar city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38533548.0, "AWATER": 13084.0, "INTPTLAT": 34.0015725, "INTPTLON": -117.8176013 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8176013, 34.0015725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 118, "felt:has_geometry": true, "felt:h3_index": 644747148341490203, "STATEFP": 6.0, "PLACEFP": 19990.0, "PLACENS": 2410361.0, "GEOID": 619990.0, "NAME": "Duarte", "NAMELSAD": "Duarte city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17376217.0, "AWATER": 0.0, "INTPTLAT": 34.1609674, "INTPTLON": -117.9504474 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9504474, 34.1609674 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 119, "felt:has_geometry": true, "felt:h3_index": 644747142634627778, "STATEFP": 6.0, "PLACEFP": 2462.0, "PLACENS": 2409722.0, "GEOID": 602462.0, "NAME": "Arcadia", "NAMELSAD": "Arcadia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28300614.0, "AWATER": 540015.0, "INTPTLAT": 34.1326887, "INTPTLON": -118.0363467 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0363467, 34.1326887 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 120, "felt:has_geometry": true, "felt:h3_index": 644747146297436835, "STATEFP": 6.0, "PLACEFP": 72996.0, "PLACENS": 2411934.0, "GEOID": 672996.0, "NAME": "South El Monte", "NAMELSAD": "South El Monte city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7364933.0, "AWATER": 14107.0, "INTPTLAT": 34.0503775, "INTPTLON": -118.048384 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.048384, 34.0503775 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 121, "felt:has_geometry": true, "felt:h3_index": 644747146219342531, "STATEFP": 6.0, "PLACEFP": 48914.0, "PLACENS": 2411146.0, "GEOID": 648914.0, "NAME": "Monterey Park", "NAMELSAD": "Monterey Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19870660.0, "AWATER": 155185.0, "INTPTLAT": 34.0483796, "INTPTLON": -118.1331646 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1331646, 34.0483796 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 122, "felt:has_geometry": true, "felt:h3_index": 644747147783517546, "STATEFP": 6.0, "PLACEFP": 84410.0, "PLACENS": 2412221.0, "GEOID": 684410.0, "NAME": "West Hollywood", "NAMELSAD": "West Hollywood city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4888800.0, "AWATER": 0.0, "INTPTLAT": 34.0882676, "INTPTLON": -118.3718315 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3718315, 34.0882676 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 123, "felt:has_geometry": true, "felt:h3_index": 644747149049254317, "STATEFP": 6.0, "PLACEFP": 84200.0, "PLACENS": 2412219.0, "GEOID": 684200.0, "NAME": "West Covina", "NAMELSAD": "West Covina city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 41534189.0, "AWATER": 124504.0, "INTPTLAT": 34.0559412, "INTPTLON": -117.9099372 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9099372, 34.0559412 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 124, "felt:has_geometry": true, "felt:h3_index": 644747036025422032, "STATEFP": 6.0, "PLACEFP": 40830.0, "PLACENS": 2411584.0, "GEOID": 640830.0, "NAME": "La Verne", "NAMELSAD": "La Verne city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21813497.0, "AWATER": 288109.0, "INTPTLAT": 34.1205212, "INTPTLON": -117.7699278 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7699278, 34.1205212 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 125, "felt:has_geometry": true, "felt:h3_index": 644747148870141328, "STATEFP": 6.0, "PLACEFP": 36826.0, "PLACENS": 2410119.0, "GEOID": 636826.0, "NAME": "Irwindale", "NAMELSAD": "Irwindale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22853908.0, "AWATER": 2037701.0, "INTPTLAT": 34.111855, "INTPTLON": -117.963614 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.963614, 34.111855 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 126, "felt:has_geometry": true, "felt:h3_index": 644747142268297243, "STATEFP": 6.0, "PLACEFP": 68224.0, "PLACENS": 2411799.0, "GEOID": 668224.0, "NAME": "San Marino", "NAMELSAD": "San Marino city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9753267.0, "AWATER": 16339.0, "INTPTLAT": 34.1226714, "INTPTLON": -118.1129107 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1129107, 34.1226714 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 127, "felt:has_geometry": true, "felt:h3_index": 644747143423834323, "STATEFP": 6.0, "PLACEFP": 8954.0, "PLACENS": 2409939.0, "GEOID": 608954.0, "NAME": "Burbank", "NAMELSAD": "Burbank city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 44848115.0, "AWATER": 94723.0, "INTPTLAT": 34.1900793, "INTPTLON": -118.3264045 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3264045, 34.1900793 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 128, "felt:has_geometry": true, "felt:h3_index": 644747148639192686, "STATEFP": 6.0, "PLACEFP": 3386.0, "PLACENS": 2409768.0, "GEOID": 603386.0, "NAME": "Azusa", "NAMELSAD": "Azusa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25022011.0, "AWATER": 32168.0, "INTPTLAT": 34.1385241, "INTPTLON": -117.912253 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.912253, 34.1385241 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 129, "felt:has_geometry": true, "felt:h3_index": 644747126388233124, "STATEFP": 6.0, "PLACEFP": 84438.0, "PLACENS": 2412235.0, "GEOID": 684438.0, "NAME": "Westlake Village", "NAMELSAD": "Westlake Village city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13434930.0, "AWATER": 828670.0, "INTPTLAT": 34.1366751, "INTPTLON": -118.8173674 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8173674, 34.1366751 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 130, "felt:has_geometry": true, "felt:h3_index": 644722198350958705, "STATEFP": 6.0, "PLACEFP": 80812.0, "PLACENS": 2412114.0, "GEOID": 680812.0, "NAME": "Turlock", "NAMELSAD": "Turlock city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 43503254.0, "AWATER": 69528.0, "INTPTLAT": 37.5055238, "INTPTLON": -120.8592694 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8592694, 37.5055238 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 131, "felt:has_geometry": true, "felt:h3_index": 644721782766523493, "STATEFP": 6.0, "PLACEFP": 23168.0, "PLACENS": 2412609.0, "GEOID": 623168.0, "NAME": "Fairfax", "NAMELSAD": "Fairfax town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5770768.0, "AWATER": 0.0, "INTPTLAT": 37.9885321, "INTPTLON": -122.5952079 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5952079, 37.9885321 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 132, "felt:has_geometry": true, "felt:h3_index": 644721782729578699, "STATEFP": 6.0, "PLACEFP": 40438.0, "PLACENS": 2411627.0, "GEOID": 640438.0, "NAME": "Larkspur", "NAMELSAD": "Larkspur city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7767799.0, "AWATER": 566327.0, "INTPTLAT": 37.9405439, "INTPTLON": -122.5302295 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5302295, 37.9405439 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 133, "felt:has_geometry": true, "felt:h3_index": 644721778397234201, "STATEFP": 6.0, "PLACEFP": 52582.0, "PLACENS": 2411283.0, "GEOID": 652582.0, "NAME": "Novato", "NAMELSAD": "Novato city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 71159604.0, "AWATER": 1320903.0, "INTPTLAT": 38.0850865, "INTPTLON": -122.5482145 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5482145, 38.0850865 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 134, "felt:has_geometry": true, "felt:h3_index": 644747391194404497, "STATEFP": 6.0, "PLACEFP": 43000.0, "PLACENS": 2410866.0, "GEOID": 643000.0, "NAME": "Long Beach", "NAMELSAD": "Long Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 131239999.0, "AWATER": 70390689.0, "INTPTLAT": 33.7807912, "INTPTLON": -118.1681803 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1681803, 33.7807912 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 135, "felt:has_geometry": true, "felt:h3_index": 644747391127717476, "STATEFP": 6.0, "PLACEFP": 71876.0, "PLACENS": 2411899.0, "GEOID": 671876.0, "NAME": "Signal Hill", "NAMELSAD": "Signal Hill city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5670582.0, "AWATER": 4445.0, "INTPTLAT": 33.803461, "INTPTLON": -118.1697347 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1697347, 33.803461 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 136, "felt:has_geometry": true, "felt:h3_index": 644747396703175478, "STATEFP": 6.0, "PLACEFP": 59514.0, "PLACENS": 2411516.0, "GEOID": 659514.0, "NAME": "Rancho Palos Verdes", "NAMELSAD": "Rancho Palos Verdes city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34893929.0, "AWATER": 67929785.0, "INTPTLAT": 33.7385168, "INTPTLON": -118.3696845 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3696845, 33.7385168 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 137, "felt:has_geometry": true, "felt:h3_index": 644747130385608098, "STATEFP": 6.0, "PLACEFP": 45246.0, "PLACENS": 2410913.0, "GEOID": 645246.0, "NAME": "Malibu", "NAMELSAD": "Malibu city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51403234.0, "AWATER": 205274314.0, "INTPTLAT": 34.0258601, "INTPTLON": -118.7596429 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7596429, 34.0258601 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 138, "felt:has_geometry": true, "felt:h3_index": 644747109159475888, "STATEFP": 6.0, "PLACEFP": 40130.0, "PLACENS": 2411620.0, "GEOID": 640130.0, "NAME": "Lancaster", "NAMELSAD": "Lancaster city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244189279.0, "AWATER": 651713.0, "INTPTLAT": 34.693558, "INTPTLON": -118.1753054 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1753054, 34.693558 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 139, "felt:has_geometry": true, "felt:h3_index": 644747146190761301, "STATEFP": 6.0, "PLACEFP": 884.0, "PLACENS": 2409681.0, "GEOID": 600884.0, "NAME": "Alhambra", "NAMELSAD": "Alhambra city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19764463.0, "AWATER": 1730.0, "INTPTLAT": 34.0835711, "INTPTLON": -118.1364436 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1364436, 34.0835711 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 140, "felt:has_geometry": true, "felt:h3_index": 644747146484036000, "STATEFP": 6.0, "PLACEFP": 62896.0, "PLACENS": 2410998.0, "GEOID": 662896.0, "NAME": "Rosemead", "NAMELSAD": "Rosemead city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13368558.0, "AWATER": 35463.0, "INTPTLAT": 34.0688796, "INTPTLON": -118.0826804 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0826804, 34.0688796 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 141, "felt:has_geometry": true, "felt:h3_index": 644747146100299470, "STATEFP": 6.0, "PLACEFP": 48816.0, "PLACENS": 2411144.0, "GEOID": 648816.0, "NAME": "Montebello", "NAMELSAD": "Montebello city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21569294.0, "AWATER": 104147.0, "INTPTLAT": 34.0154437, "INTPTLON": -118.1110124 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1110124, 34.0154437 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 142, "felt:has_geometry": true, "felt:h3_index": 644747394604597965, "STATEFP": 6.0, "PLACEFP": 28168.0, "PLACENS": 2410570.0, "GEOID": 628168.0, "NAME": "Gardena", "NAMELSAD": "Gardena city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15097437.0, "AWATER": 93629.0, "INTPTLAT": 33.8944169, "INTPTLON": -118.307522 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.307522, 33.8944169 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 143, "felt:has_geometry": true, "felt:h3_index": 644747393065919553, "STATEFP": 6.0, "PLACEFP": 39892.0, "PLACENS": 2411613.0, "GEOID": 639892.0, "NAME": "Lakewood", "NAMELSAD": "Lakewood city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24330780.0, "AWATER": 133080.0, "INTPTLAT": 33.8471353, "INTPTLON": -118.121894 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.121894, 33.8471353 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 144, "felt:has_geometry": true, "felt:h3_index": 644747394863290888, "STATEFP": 6.0, "PLACEFP": 15044.0, "PLACENS": 2410213.0, "GEOID": 615044.0, "NAME": "Compton", "NAMELSAD": "Compton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25971194.0, "AWATER": 230555.0, "INTPTLAT": 33.8940467, "INTPTLON": -118.2274687 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2274687, 33.8940467 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 145, "felt:has_geometry": true, "felt:h3_index": 644747146431773787, "STATEFP": 6.0, "PLACEFP": 67042.0, "PLACENS": 2411787.0, "GEOID": 667042.0, "NAME": "San Gabriel", "NAMELSAD": "San Gabriel city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10732387.0, "AWATER": 1750.0, "INTPTLAT": 34.0946359, "INTPTLON": -118.0984687 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0984687, 34.0946359 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 146, "felt:has_geometry": true, "felt:h3_index": 644747393444904986, "STATEFP": 6.0, "PLACEFP": 52526.0, "PLACENS": 2411281.0, "GEOID": 652526.0, "NAME": "Norwalk", "NAMELSAD": "Norwalk city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25141960.0, "AWATER": 98075.0, "INTPTLAT": 33.9076003, "INTPTLON": -118.0834525 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0834525, 33.9076003 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 147, "felt:has_geometry": true, "felt:h3_index": 644747146627671699, "STATEFP": 6.0, "PLACEFP": 19766.0, "PLACENS": 2410352.0, "GEOID": 619766.0, "NAME": "Downey", "NAMELSAD": "Downey city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32139788.0, "AWATER": 414730.0, "INTPTLAT": 33.9382375, "INTPTLON": -118.1308561 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1308561, 33.9382375 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 148, "felt:has_geometry": true, "felt:h3_index": 644747146919889064, "STATEFP": 6.0, "PLACEFP": 85292.0, "PLACENS": 2412260.0, "GEOID": 685292.0, "NAME": "Whittier", "NAMELSAD": "Whittier city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37940444.0, "AWATER": 31326.0, "INTPTLAT": 33.9668274, "INTPTLON": -118.0201222 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0201222, 33.9668274 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 149, "felt:has_geometry": true, "felt:h3_index": 644747146589438262, "STATEFP": 6.0, "PLACEFP": 56924.0, "PLACENS": 2411417.0, "GEOID": 656924.0, "NAME": "Pico Rivera", "NAMELSAD": "Pico Rivera city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21536859.0, "AWATER": 1518068.0, "INTPTLAT": 33.9895238, "INTPTLON": -118.0892952 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0892952, 33.9895238 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 150, "felt:has_geometry": true, "felt:h3_index": 644747394370061864, "STATEFP": 6.0, "PLACEFP": 4870.0, "PLACENS": 2409816.0, "GEOID": 604870.0, "NAME": "Bell", "NAMELSAD": "Bell city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6496979.0, "AWATER": 307162.0, "INTPTLAT": 33.9797042, "INTPTLON": -118.1792494 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1792494, 33.9797042 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 151, "felt:has_geometry": true, "felt:h3_index": 644747394558929321, "STATEFP": 6.0, "PLACEFP": 36056.0, "PLACENS": 2410079.0, "GEOID": 636056.0, "NAME": "Huntington Park", "NAMELSAD": "Huntington Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7788887.0, "AWATER": 8354.0, "INTPTLAT": 33.9792475, "INTPTLON": -118.217438 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.217438, 33.9792475 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 152, "felt:has_geometry": true, "felt:h3_index": 644747394329006921, "STATEFP": 6.0, "PLACEFP": 73080.0, "PLACENS": 2411935.0, "GEOID": 673080.0, "NAME": "South Gate", "NAMELSAD": "South Gate city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18744410.0, "AWATER": 303434.0, "INTPTLAT": 33.9441585, "INTPTLON": -118.1927614 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1927614, 33.9441585 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 153, "felt:has_geometry": true, "felt:h3_index": 644747131341771619, "STATEFP": 6.0, "PLACEFP": 17568.0, "PLACENS": 2410276.0, "GEOID": 617568.0, "NAME": "Culver City", "NAMELSAD": "Culver City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13239286.0, "AWATER": 71360.0, "INTPTLAT": 34.0058204, "INTPTLON": -118.3967807 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3967807, 34.0058204 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 154, "felt:has_geometry": true, "felt:h3_index": 644719857056874881, "STATEFP": 6.0, "PLACEFP": 13014.0, "PLACENS": 2409447.0, "GEOID": 613014.0, "NAME": "Chico", "NAMELSAD": "Chico city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89228953.0, "AWATER": 445035.0, "INTPTLAT": 39.7589514, "INTPTLON": -121.8177197 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8177197, 39.7589514 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 155, "felt:has_geometry": true, "felt:h3_index": 644721958220879138, "STATEFP": 6.0, "PLACEFP": 54386.0, "PLACENS": 2411337.0, "GEOID": 654386.0, "NAME": "Oroville", "NAMELSAD": "Oroville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35994947.0, "AWATER": 47848.0, "INTPTLAT": 39.4954239, "INTPTLON": -121.5600694 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5600694, 39.4954239 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 156, "felt:has_geometry": true, "felt:h3_index": 644722014216061784, "STATEFP": 6.0, "PLACEFP": 70588.0, "PLACENS": 2411844.0, "GEOID": 670588.0, "NAME": "Scotts Valley", "NAMELSAD": "Scotts Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11961717.0, "AWATER": 0.0, "INTPTLAT": 37.0554989, "INTPTLON": -122.0117689 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0117689, 37.0554989 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 157, "felt:has_geometry": true, "felt:h3_index": 644720401678927874, "STATEFP": 6.0, "PLACEFP": 17022.0, "PLACENS": 2410262.0, "GEOID": 617022.0, "NAME": "Crescent City", "NAMELSAD": "Crescent City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084451.0, "AWATER": 1170287.0, "INTPTLAT": 41.7645143, "INTPTLON": -124.2007785 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.2007785, 41.7645143 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 158, "felt:has_geometry": true, "felt:h3_index": 644747812986863784, "STATEFP": 6.0, "PLACEFP": 45022.0, "PLACENS": 2410906.0, "GEOID": 645022.0, "NAME": "Madera", "NAMELSAD": "Madera city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42967631.0, "AWATER": 0.0, "INTPTLAT": 36.9631786, "INTPTLON": -120.0779135 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0779135, 36.9631786 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 159, "felt:has_geometry": true, "felt:h3_index": 644722182674623566, "STATEFP": 6.0, "PLACEFP": 56112.0, "PLACENS": 2411383.0, "GEOID": 656112.0, "NAME": "Patterson", "NAMELSAD": "Patterson city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20167365.0, "AWATER": 222151.0, "INTPTLAT": 37.4758755, "INTPTLON": -121.153882 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.153882, 37.4758755 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 160, "felt:has_geometry": true, "felt:h3_index": 644722145110743462, "STATEFP": 6.0, "PLACEFP": 61068.0, "PLACENS": 2410962.0, "GEOID": 661068.0, "NAME": "Riverbank", "NAMELSAD": "Riverbank city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12201597.0, "AWATER": 68157.0, "INTPTLAT": 37.7260221, "INTPTLON": -120.9448404 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9448404, 37.7260221 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 161, "felt:has_geometry": true, "felt:h3_index": 644722152279216947, "STATEFP": 6.0, "PLACEFP": 83612.0, "PLACENS": 2412192.0, "GEOID": 683612.0, "NAME": "Waterford", "NAMELSAD": "Waterford city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6108059.0, "AWATER": 63331.0, "INTPTLAT": 37.6426846, "INTPTLON": -120.754152 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.754152, 37.6426846 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 162, "felt:has_geometry": true, "felt:h3_index": 644722149487092378, "STATEFP": 6.0, "PLACEFP": 48354.0, "PLACENS": 2411130.0, "GEOID": 648354.0, "NAME": "Modesto", "NAMELSAD": "Modesto city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 111620408.0, "AWATER": 4740717.0, "INTPTLAT": 37.6375332, "INTPTLON": -121.0030494 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0030494, 37.6375332 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 163, "felt:has_geometry": true, "felt:h3_index": 644722037326454154, "STATEFP": 6.0, "PLACEFP": 33000.0, "PLACENS": 2410724.0, "GEOID": 633000.0, "NAME": "Hayward", "NAMELSAD": "Hayward city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 118669032.0, "AWATER": 47415914.0, "INTPTLAT": 37.626826, "INTPTLON": -122.104015 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.104015, 37.626826 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 164, "felt:has_geometry": true, "felt:h3_index": 644721789403418977, "STATEFP": 6.0, "PLACEFP": 41992.0, "PLACENS": 2410848.0, "GEOID": 641992.0, "NAME": "Livermore", "NAMELSAD": "Livermore city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68816613.0, "AWATER": 9862.0, "INTPTLAT": 37.6869767, "INTPTLON": -121.7597808 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7597808, 37.6869767 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 165, "felt:has_geometry": true, "felt:h3_index": 644722036934446370, "STATEFP": 6.0, "PLACEFP": 57792.0, "PLACENS": 2411441.0, "GEOID": 657792.0, "NAME": "Pleasanton", "NAMELSAD": "Pleasanton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62525983.0, "AWATER": 380831.0, "INTPTLAT": 37.6671852, "INTPTLON": -121.8812304 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8812304, 37.6671852 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 166, "felt:has_geometry": true, "felt:h3_index": 644721879329194324, "STATEFP": 6.0, "PLACEFP": 85012.0, "PLACENS": 2412249.0, "GEOID": 685012.0, "NAME": "Wheatland", "NAMELSAD": "Wheatland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21035376.0, "AWATER": 17378.0, "INTPTLAT": 39.0311632, "INTPTLON": -121.3899957 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3899957, 39.0311632 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 167, "felt:has_geometry": true, "felt:h3_index": 644718585258590224, "STATEFP": 6.0, "PLACEFP": 7162.0, "PLACENS": 2409868.0, "GEOID": 607162.0, "NAME": "Blue Lake", "NAMELSAD": "Blue Lake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1601834.0, "AWATER": 79994.0, "INTPTLAT": 40.8809929, "INTPTLON": -123.994912 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.994912, 40.8809929 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6.0, "PLACEFP": 25296.0, "PLACENS": 2410532.0, "GEOID": 625296.0, "NAME": "Fortuna", "NAMELSAD": "Fortuna city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391.0, "AWATER": 7169.0, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.142161, 40.5870844 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 169, "felt:has_geometry": true, "felt:h3_index": 644718618930635532, "STATEFP": 6.0, "PLACEFP": 60900.0, "PLACENS": 2410951.0, "GEOID": 660900.0, "NAME": "Rio Dell", "NAMELSAD": "Rio Dell city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6434171.0, "AWATER": 337574.0, "INTPTLAT": 40.4955698, "INTPTLON": -124.1151627 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1151627, 40.4955698 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 170, "felt:has_geometry": true, "felt:h3_index": 644718581837530794, "STATEFP": 6.0, "PLACEFP": 80448.0, "PLACENS": 2412093.0, "GEOID": 680448.0, "NAME": "Trinidad", "NAMELSAD": "Trinidad city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1263717.0, "AWATER": 412146.0, "INTPTLAT": 41.0577077, "INTPTLON": -124.143255 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.143255, 41.0577077 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 171, "felt:has_geometry": true, "felt:h3_index": 644718619950247158, "STATEFP": 6.0, "PLACEFP": 23910.0, "PLACENS": 2410497.0, "GEOID": 623910.0, "NAME": "Ferndale", "NAMELSAD": "Ferndale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3124819.0, "AWATER": 0.0, "INTPTLAT": 40.5781435, "INTPTLON": -124.261247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.261247, 40.5781435 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 172, "felt:has_geometry": true, "felt:h3_index": 644718618271660166, "STATEFP": 6.0, "PLACEFP": 2476.0, "PLACENS": 2409723.0, "GEOID": 602476.0, "NAME": "Arcata", "NAMELSAD": "Arcata city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24388526.0, "AWATER": 5063020.0, "INTPTLAT": 40.8622905, "INTPTLON": -124.0749667 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0749667, 40.8622905 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 173, "felt:has_geometry": true, "felt:h3_index": 644718618483436825, "STATEFP": 6.0, "PLACEFP": 23042.0, "PLACENS": 2410463.0, "GEOID": 623042.0, "NAME": "Eureka", "NAMELSAD": "Eureka city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24777988.0, "AWATER": 16942072.0, "INTPTLAT": 40.7975938, "INTPTLON": -124.1541913 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1541913, 40.7975938 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 174, "felt:has_geometry": true, "felt:h3_index": 644747392263300426, "STATEFP": 6.0, "PLACEFP": 60018.0, "PLACENS": 2411535.0, "GEOID": 660018.0, "NAME": "Redondo Beach", "NAMELSAD": "Redondo Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16051999.0, "AWATER": 18487297.0, "INTPTLAT": 33.8495382, "INTPTLON": -118.400755 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.400755, 33.8495382 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 175, "felt:has_geometry": true, "felt:h3_index": 644747392745152580, "STATEFP": 6.0, "PLACEFP": 80000.0, "PLACENS": 2412087.0, "GEOID": 680000.0, "NAME": "Torrance", "NAMELSAD": "Torrance city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 53136568.0, "AWATER": 10607454.0, "INTPTLAT": 33.8304529, "INTPTLON": -118.3566183 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3566183, 33.8304529 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 176, "felt:has_geometry": true, "felt:h3_index": 644747589504949646, "STATEFP": 6.0, "PLACEFP": 82954.0, "PLACENS": 2412160.0, "GEOID": 682954.0, "NAME": "Visalia", "NAMELSAD": "Visalia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 98720318.0, "AWATER": 51434.0, "INTPTLAT": 36.3280297, "INTPTLON": -119.3285195 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3285195, 36.3280297 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 177, "felt:has_geometry": true, "felt:h3_index": 644747058473869637, "STATEFP": 6.0, "PLACEFP": 46842.0, "PLACENS": 2497157.0, "GEOID": 646842.0, "NAME": "Menifee", "NAMELSAD": "Menifee city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120340515.0, "AWATER": 381612.0, "INTPTLAT": 33.6898575, "INTPTLON": -117.1843827 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1843827, 33.6898575 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 178, "felt:has_geometry": true, "felt:h3_index": 644722018780062636, "STATEFP": 6.0, "PLACEFP": 5108.0, "PLACENS": 2409826.0, "GEOID": 605108.0, "NAME": "Belmont", "NAMELSAD": "Belmont city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11990538.0, "AWATER": 23653.0, "INTPTLAT": 37.5143975, "INTPTLON": -122.2944751 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2944751, 37.5143975 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 179, "felt:has_geometry": true, "felt:h3_index": 644721771941101840, "STATEFP": 6.0, "PLACEFP": 9066.0, "PLACENS": 2409945.0, "GEOID": 609066.0, "NAME": "Burlingame", "NAMELSAD": "Burlingame city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11378235.0, "AWATER": 4261690.0, "INTPTLAT": 37.5899515, "INTPTLON": -122.3633425 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3633425, 37.5899515 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 180, "felt:has_geometry": true, "felt:h3_index": 644721773276848277, "STATEFP": 6.0, "PLACEFP": 17918.0, "PLACENS": 2410291.0, "GEOID": 617918.0, "NAME": "Daly City", "NAMELSAD": "Daly City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19783516.0, "AWATER": 0.0, "INTPTLAT": 37.686193, "INTPTLON": -122.4686688 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4686688, 37.686193 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 181, "felt:has_geometry": true, "felt:h3_index": 644722018604491281, "STATEFP": 6.0, "PLACEFP": 65070.0, "PLACENS": 2411780.0, "GEOID": 665070.0, "NAME": "San Carlos", "NAMELSAD": "San Carlos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14017266.0, "AWATER": 2037.0, "INTPTLAT": 37.4990342, "INTPTLON": -122.2675721 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2675721, 37.4990342 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 182, "felt:has_geometry": true, "felt:h3_index": 644721771550869356, "STATEFP": 6.0, "PLACEFP": 73262.0, "PLACENS": 2411942.0, "GEOID": 673262.0, "NAME": "South San Francisco", "NAMELSAD": "South San Francisco city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23838590.0, "AWATER": 54312354.0, "INTPTLAT": 37.6551037, "INTPTLON": -122.3762341 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3762341, 37.6551037 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 183, "felt:has_geometry": true, "felt:h3_index": 644722019224131611, "STATEFP": 6.0, "PLACEFP": 86440.0, "PLACENS": 2413509.0, "GEOID": 686440.0, "NAME": "Woodside", "NAMELSAD": "Woodside town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29697449.0, "AWATER": 0.0, "INTPTLAT": 37.4221495, "INTPTLON": -122.2585926 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2585926, 37.4221495 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 184, "felt:has_geometry": true, "felt:h3_index": 644747058044247465, "STATEFP": 6.0, "PLACEFP": 85446.0, "PLACENS": 2497148.0, "GEOID": 685446.0, "NAME": "Wildomar", "NAMELSAD": "Wildomar city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61496131.0, "AWATER": 0.0, "INTPTLAT": 33.6172783, "INTPTLON": -117.2583117 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2583117, 33.6172783 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 185, "felt:has_geometry": true, "felt:h3_index": 644747044087445221, "STATEFP": 6.0, "PLACEFP": 3820.0, "PLACENS": 2409785.0, "GEOID": 603820.0, "NAME": "Banning", "NAMELSAD": "Banning city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60180482.0, "AWATER": 0.0, "INTPTLAT": 33.9459026, "INTPTLON": -116.8990441 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8990441, 33.9459026 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 186, "felt:has_geometry": true, "felt:h3_index": 644747066322887704, "STATEFP": 6.0, "PLACEFP": 8100.0, "PLACENS": 2409897.0, "GEOID": 608100.0, "NAME": "Brea", "NAMELSAD": "Brea city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31520533.0, "AWATER": 99672.0, "INTPTLAT": 33.9251776, "INTPTLON": -117.8651109 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8651109, 33.9251776 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 187, "felt:has_geometry": true, "felt:h3_index": 644747069294401651, "STATEFP": 6.0, "PLACEFP": 36770.0, "PLACENS": 2410116.0, "GEOID": 636770.0, "NAME": "Irvine", "NAMELSAD": "Irvine city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 169930134.0, "AWATER": 802010.0, "INTPTLAT": 33.6783986, "INTPTLON": -117.7712541 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7712541, 33.6783986 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 188, "felt:has_geometry": true, "felt:h3_index": 644747065575401878, "STATEFP": 6.0, "PLACEFP": 39290.0, "PLACENS": 2411571.0, "GEOID": 639290.0, "NAME": "La Habra", "NAMELSAD": "La Habra city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19578956.0, "AWATER": 15869.0, "INTPTLAT": 33.927927, "INTPTLON": -117.951554 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.951554, 33.927927 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 189, "felt:has_geometry": true, "felt:h3_index": 644747070505442577, "STATEFP": 6.0, "PLACEFP": 73962.0, "PLACENS": 2411969.0, "GEOID": 673962.0, "NAME": "Stanton", "NAMELSAD": "Stanton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8035789.0, "AWATER": 0.0, "INTPTLAT": 33.8002333, "INTPTLON": -117.9934493 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9934493, 33.8002333 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 190, "felt:has_geometry": true, "felt:h3_index": 644737291655013013, "STATEFP": 6.0, "PLACEFP": 53476.0, "PLACENS": 2411308.0, "GEOID": 653476.0, "NAME": "Ojai", "NAMELSAD": "Ojai city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11281691.0, "AWATER": 39811.0, "INTPTLAT": 34.4491994, "INTPTLON": -119.2466643 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2466643, 34.4491994 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 191, "felt:has_geometry": true, "felt:h3_index": 644747140464139555, "STATEFP": 6.0, "PLACEFP": 72016.0, "PLACENS": 2411904.0, "GEOID": 672016.0, "NAME": "Simi Valley", "NAMELSAD": "Simi Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107601139.0, "AWATER": 1831566.0, "INTPTLAT": 34.2668875, "INTPTLON": -118.7484575 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7484575, 34.2668875 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 192, "felt:has_geometry": true, "felt:h3_index": 644747138335401093, "STATEFP": 6.0, "PLACEFP": 78582.0, "PLACENS": 2412065.0, "GEOID": 678582.0, "NAME": "Thousand Oaks", "NAMELSAD": "Thousand Oaks city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 143115867.0, "AWATER": 375961.0, "INTPTLAT": 34.1932896, "INTPTLON": -118.874235 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.874235, 34.1932896 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 193, "felt:has_geometry": true, "felt:h3_index": 644721915601127716, "STATEFP": 6.0, "PLACEFP": 62364.0, "PLACENS": 2410980.0, "GEOID": 662364.0, "NAME": "Rocklin", "NAMELSAD": "Rocklin city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51307151.0, "AWATER": 57380.0, "INTPTLAT": 38.8068681, "INTPTLON": -121.249696 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.249696, 38.8068681 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 194, "felt:has_geometry": true, "felt:h3_index": 644721871577874962, "STATEFP": 6.0, "PLACEFP": 3204.0, "PLACENS": 2409754.0, "GEOID": 603204.0, "NAME": "Auburn", "NAMELSAD": "Auburn city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18588528.0, "AWATER": 71271.0, "INTPTLAT": 38.8950746, "INTPTLON": -121.0767393 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0767393, 38.8950746 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 195, "felt:has_geometry": true, "felt:h3_index": 644721916054655152, "STATEFP": 6.0, "PLACEFP": 62938.0, "PLACENS": 2411000.0, "GEOID": 662938.0, "NAME": "Roseville", "NAMELSAD": "Roseville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 114184957.0, "AWATER": 0.0, "INTPTLAT": 38.7702963, "INTPTLON": -121.3196342 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3196342, 38.7702963 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 196, "felt:has_geometry": true, "felt:h3_index": 644722166269044995, "STATEFP": 6.0, "PLACEFP": 72674.0, "PLACENS": 2411930.0, "GEOID": 672674.0, "NAME": "Sonora", "NAMELSAD": "Sonora city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8190966.0, "AWATER": 35507.0, "INTPTLAT": 37.9817072, "INTPTLON": -120.3827545 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3827545, 37.9817072 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 197, "felt:has_geometry": true, "felt:h3_index": 644721769761420697, "STATEFP": 6.0, "PLACEFP": 56938.0, "PLACENS": 2411418.0, "GEOID": 656938.0, "NAME": "Piedmont", "NAMELSAD": "Piedmont city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4402396.0, "AWATER": 0.0, "INTPTLAT": 37.8225447, "INTPTLON": -122.2300241 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2300241, 37.8225447 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 198, "felt:has_geometry": true, "felt:h3_index": 644747665924608198, "STATEFP": 6.0, "PLACEFP": 44028.0, "PLACENS": 2410878.0, "GEOID": 644028.0, "NAME": "Los Banos", "NAMELSAD": "Los Banos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25891767.0, "AWATER": 320639.0, "INTPTLAT": 37.0631841, "INTPTLON": -120.8403045 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8403045, 37.0631841 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 199, "felt:has_geometry": true, "felt:h3_index": 644747820390188740, "STATEFP": 6.0, "PLACEFP": 13294.0, "PLACENS": 2409459.0, "GEOID": 613294.0, "NAME": "Chowchilla", "NAMELSAD": "Chowchilla city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28713589.0, "AWATER": 119504.0, "INTPTLAT": 37.1161043, "INTPTLON": -120.2419783 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2419783, 37.1161043 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 200, "felt:has_geometry": true, "felt:h3_index": 644747024503357809, "STATEFP": 6.0, "PLACEFP": 9864.0, "PLACENS": 2409961.0, "GEOID": 609864.0, "NAME": "Calimesa", "NAMELSAD": "Calimesa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38571406.0, "AWATER": 0.0, "INTPTLAT": 33.9873574, "INTPTLON": -117.0542141 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0542141, 33.9873574 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 201, "felt:has_geometry": true, "felt:h3_index": 644747058207460419, "STATEFP": 6.0, "PLACEFP": 10928.0, "PLACENS": 2409979.0, "GEOID": 610928.0, "NAME": "Canyon Lake", "NAMELSAD": "Canyon Lake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10070209.0, "AWATER": 1912692.0, "INTPTLAT": 33.6883023, "INTPTLON": -117.2635469 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2635469, 33.6883023 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 202, "felt:has_geometry": true, "felt:h3_index": 644747449139910869, "STATEFP": 6.0, "PLACEFP": 14260.0, "PLACENS": 2409493.0, "GEOID": 614260.0, "NAME": "Coachella", "NAMELSAD": "Coachella city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77484255.0, "AWATER": 0.0, "INTPTLAT": 33.6903799, "INTPTLON": -116.1431282 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.1431282, 33.6903799 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 203, "felt:has_geometry": true, "felt:h3_index": 644747443212399126, "STATEFP": 6.0, "PLACEFP": 36434.0, "PLACENS": 2410100.0, "GEOID": 636434.0, "NAME": "Indian Wells", "NAMELSAD": "Indian Wells city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37039262.0, "AWATER": 679921.0, "INTPTLAT": 33.7034648, "INTPTLON": -116.3258978 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3258978, 33.7034648 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 204, "felt:has_geometry": true, "felt:h3_index": 644747449581397654, "STATEFP": 6.0, "PLACEFP": 40354.0, "PLACENS": 2411582.0, "GEOID": 640354.0, "NAME": "La Quinta", "NAMELSAD": "La Quinta city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 91409861.0, "AWATER": 1101656.0, "INTPTLAT": 33.6460833, "INTPTLON": -116.275297 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.275297, 33.6460833 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 205, "felt:has_geometry": true, "felt:h3_index": 644721897048647020, "STATEFP": 6.0, "PLACEFP": 50874.0, "PLACENS": 2411225.0, "GEOID": 650874.0, "NAME": "Nevada City", "NAMELSAD": "Nevada City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5661517.0, "AWATER": 9642.0, "INTPTLAT": 39.2596075, "INTPTLON": -121.0333263 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0333263, 39.2596075 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 206, "felt:has_geometry": true, "felt:h3_index": 644745486641487048, "STATEFP": 6.0, "PLACEFP": 80588.0, "PLACENS": 2413403.0, "GEOID": 680588.0, "NAME": "Truckee", "NAMELSAD": "Truckee town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 83740315.0, "AWATER": 3448642.0, "INTPTLAT": 39.3505478, "INTPTLON": -120.1939432 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1939432, 39.3505478 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 207, "felt:has_geometry": true, "felt:h3_index": 644747993372731018, "STATEFP": 6.0, "PLACEFP": 58240.0, "PLACENS": 2411470.0, "GEOID": 658240.0, "NAME": "Porterville", "NAMELSAD": "Porterville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48294868.0, "AWATER": 141831.0, "INTPTLAT": 36.063542, "INTPTLON": -119.0336003 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0336003, 36.063542 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 208, "felt:has_geometry": true, "felt:h3_index": 644747594249747697, "STATEFP": 6.0, "PLACEFP": 80644.0, "PLACENS": 2412107.0, "GEOID": 680644.0, "NAME": "Tulare", "NAMELSAD": "Tulare city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 53407652.0, "AWATER": 197854.0, "INTPTLAT": 36.1993663, "INTPTLON": -119.3419206 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3419206, 36.1993663 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 209, "felt:has_geometry": true, "felt:h3_index": 644722201269151280, "STATEFP": 6.0, "PLACEFP": 3162.0, "PLACENS": 2409752.0, "GEOID": 603162.0, "NAME": "Atwater", "NAMELSAD": "Atwater city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17008587.0, "AWATER": 11735.0, "INTPTLAT": 37.3540494, "INTPTLON": -120.5971768 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5971768, 37.3540494 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 210, "felt:has_geometry": true, "felt:h3_index": 644722203613340845, "STATEFP": 6.0, "PLACEFP": 46898.0, "PLACENS": 2411080.0, "GEOID": 646898.0, "NAME": "Merced", "NAMELSAD": "Merced city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60228129.0, "AWATER": 0.0, "INTPTLAT": 37.305712, "INTPTLON": -120.4779051 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4779051, 37.305712 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 211, "felt:has_geometry": true, "felt:h3_index": 644747442571460748, "STATEFP": 6.0, "PLACEFP": 59500.0, "PLACENS": 2411515.0, "GEOID": 659500.0, "NAME": "Rancho Mirage", "NAMELSAD": "Rancho Mirage city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 65518114.0, "AWATER": 1008457.0, "INTPTLAT": 33.7638377, "INTPTLON": -116.4303875 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4303875, 33.7638377 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 212, "felt:has_geometry": true, "felt:h3_index": 644747078997646037, "STATEFP": 6.0, "PLACEFP": 78120.0, "PLACENS": 2412044.0, "GEOID": 678120.0, "NAME": "Temecula", "NAMELSAD": "Temecula city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 96288271.0, "AWATER": 24829.0, "INTPTLAT": 33.4930728, "INTPTLON": -117.1317341 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1317341, 33.4930728 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 213, "felt:has_geometry": true, "felt:h3_index": 644747045905245580, "STATEFP": 6.0, "PLACEFP": 18996.0, "PLACENS": 2410328.0, "GEOID": 618996.0, "NAME": "Desert Hot Springs", "NAMELSAD": "Desert Hot Springs city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78026380.0, "AWATER": 930813.0, "INTPTLAT": 33.9575914, "INTPTLON": -116.5422837 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.5422837, 33.9575914 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 214, "felt:has_geometry": true, "felt:h3_index": 644747443548210560, "STATEFP": 6.0, "PLACEFP": 55254.0, "PLACENS": 2411357.0, "GEOID": 655254.0, "NAME": "Palm Springs", "NAMELSAD": "Palm Springs city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244855729.0, "AWATER": 358065.0, "INTPTLAT": 33.8033613, "INTPTLON": -116.5382801 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.5382801, 33.8033613 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 215, "felt:has_geometry": true, "felt:h3_index": 644721877398697560, "STATEFP": 6.0, "PLACEFP": 57540.0, "PLACENS": 2411433.0, "GEOID": 657540.0, "NAME": "Placerville", "NAMELSAD": "Placerville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15126090.0, "AWATER": 2192.0, "INTPTLAT": 38.7311162, "INTPTLON": -120.7976774 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7976774, 38.7311162 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 216, "felt:has_geometry": true, "felt:h3_index": 644721779234257729, "STATEFP": 6.0, "PLACEFP": 56784.0, "PLACENS": 2411407.0, "GEOID": 656784.0, "NAME": "Petaluma", "NAMELSAD": "Petaluma city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37333943.0, "AWATER": 277684.0, "INTPTLAT": 38.2422507, "INTPTLON": -122.6287687 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6287687, 38.2422507 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 217, "felt:has_geometry": true, "felt:h3_index": 644721747052855968, "STATEFP": 6.0, "PLACEFP": 70098.0, "PLACENS": 2411827.0, "GEOID": 670098.0, "NAME": "Santa Rosa", "NAMELSAD": "Santa Rosa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110141809.0, "AWATER": 451569.0, "INTPTLAT": 38.4458238, "INTPTLON": -122.7061814 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7061814, 38.4458238 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 218, "felt:has_geometry": true, "felt:h3_index": 644721966062888084, "STATEFP": 6.0, "PLACEFP": 54274.0, "PLACENS": 2411335.0, "GEOID": 654274.0, "NAME": "Orland", "NAMELSAD": "Orland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7765622.0, "AWATER": 0.0, "INTPTLAT": 39.7460824, "INTPTLON": -122.1855449 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1855449, 39.7460824 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 219, "felt:has_geometry": true, "felt:h3_index": 644721969601854029, "STATEFP": 6.0, "PLACEFP": 85684.0, "PLACENS": 2412272.0, "GEOID": 685684.0, "NAME": "Willows", "NAMELSAD": "Willows city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7344419.0, "AWATER": 31054.0, "INTPTLAT": 39.5147524, "INTPTLON": -122.1991778 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1991778, 39.5147524 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 220, "felt:has_geometry": true, "felt:h3_index": 644747664457569548, "STATEFP": 6.0, "PLACEFP": 67126.0, "PLACENS": 2411789.0, "GEOID": 667126.0, "NAME": "San Joaquin", "NAMELSAD": "San Joaquin city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3101203.0, "AWATER": 0.0, "INTPTLAT": 36.6055688, "INTPTLON": -120.1899215 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1899215, 36.6055688 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 221, "felt:has_geometry": true, "felt:h3_index": 644747393835422349, "STATEFP": 6.0, "PLACEFP": 40256.0, "PLACENS": 2411578.0, "GEOID": 640256.0, "NAME": "La Palma", "NAMELSAD": "La Palma city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4611591.0, "AWATER": 61544.0, "INTPTLAT": 33.8506159, "INTPTLON": -118.0395647 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0395647, 33.8506159 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 222, "felt:has_geometry": true, "felt:h3_index": 644747393876282694, "STATEFP": 6.0, "PLACEFP": 43224.0, "PLACENS": 2410875.0, "GEOID": 643224.0, "NAME": "Los Alamitos", "NAMELSAD": "Los Alamitos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10380819.0, "AWATER": 161830.0, "INTPTLAT": 33.7969112, "INTPTLON": -118.061244 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.061244, 33.7969112 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 223, "felt:has_geometry": true, "felt:h3_index": 644747057572762291, "STATEFP": 6.0, "PLACEFP": 48256.0, "PLACENS": 2411123.0, "GEOID": 648256.0, "NAME": "Mission Viejo", "NAMELSAD": "Mission Viejo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45738193.0, "AWATER": 959475.0, "INTPTLAT": 33.6093352, "INTPTLON": -117.656471 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.656471, 33.6093352 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 224, "felt:has_geometry": true, "felt:h3_index": 644747056982330284, "STATEFP": 6.0, "PLACEFP": 59587.0, "PLACENS": 2411517.0, "GEOID": 659587.0, "NAME": "Rancho Santa Margarita", "NAMELSAD": "Rancho Santa Margarita city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33483309.0, "AWATER": 122877.0, "INTPTLAT": 33.6323319, "INTPTLON": -117.5990075 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5990075, 33.6323319 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 225, "felt:has_geometry": true, "felt:h3_index": 644747614544475188, "STATEFP": 6.0, "PLACEFP": 3302.0, "PLACENS": 2409764.0, "GEOID": 603302.0, "NAME": "Avenal", "NAMELSAD": "Avenal city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50459974.0, "AWATER": 0.0, "INTPTLAT": 36.0311072, "INTPTLON": -120.1161739 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1161739, 36.0311072 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 226, "felt:has_geometry": true, "felt:h3_index": 644747061280164672, "STATEFP": 6.0, "PLACEFP": 65084.0, "PLACENS": 2411781.0, "GEOID": 665084.0, "NAME": "San Clemente", "NAMELSAD": "San Clemente city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47542789.0, "AWATER": 1940302.0, "INTPTLAT": 33.4491433, "INTPTLON": -117.6131198 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6131198, 33.4491433 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 227, "felt:has_geometry": true, "felt:h3_index": 644747397679615026, "STATEFP": 6.0, "PLACEFP": 70686.0, "PLACENS": 2411851.0, "GEOID": 670686.0, "NAME": "Seal Beach", "NAMELSAD": "Seal Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29278826.0, "AWATER": 1340063.0, "INTPTLAT": 33.7543992, "INTPTLON": -118.0713198 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0713198, 33.7543992 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 228, "felt:has_geometry": true, "felt:h3_index": 644747064970197236, "STATEFP": 6.0, "PLACEFP": 82744.0, "PLACENS": 2412158.0, "GEOID": 682744.0, "NAME": "Villa Park", "NAMELSAD": "Villa Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5380380.0, "AWATER": 237.0, "INTPTLAT": 33.8179855, "INTPTLON": -117.8112928 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8112928, 33.8179855 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 229, "felt:has_geometry": true, "felt:h3_index": 644747384853764881, "STATEFP": 6.0, "PLACEFP": 947.0, "PLACENS": 2409683.0, "GEOID": 600947.0, "NAME": "Aliso Viejo", "NAMELSAD": "Aliso Viejo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17937313.0, "AWATER": 0.0, "INTPTLAT": 33.57921, "INTPTLON": -117.7288978 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7288978, 33.57921 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 230, "felt:has_geometry": true, "felt:h3_index": 644747397645512960, "STATEFP": 6.0, "PLACEFP": 36000.0, "PLACENS": 2410811.0, "GEOID": 636000.0, "NAME": "Huntington Beach", "NAMELSAD": "Huntington Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69882014.0, "AWATER": 3455277.0, "INTPTLAT": 33.6980069, "INTPTLON": -118.0038344 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0038344, 33.6980069 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 231, "felt:has_geometry": true, "felt:h3_index": 644747068915210334, "STATEFP": 6.0, "PLACEFP": 80854.0, "PLACENS": 2412117.0, "GEOID": 680854.0, "NAME": "Tustin", "NAMELSAD": "Tustin city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28810199.0, "AWATER": 0.0, "INTPTLAT": 33.7309205, "INTPTLON": -117.8105981 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8105981, 33.7309205 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 232, "felt:has_geometry": true, "felt:h3_index": 644747393313095734, "STATEFP": 6.0, "PLACEFP": 8786.0, "PLACENS": 2409932.0, "GEOID": 608786.0, "NAME": "Buena Park", "NAMELSAD": "Buena Park city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27264655.0, "AWATER": 65428.0, "INTPTLAT": 33.8573527, "INTPTLON": -118.0073733 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0073733, 33.8573527 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 233, "felt:has_geometry": true, "felt:h3_index": 644747385268395213, "STATEFP": 6.0, "PLACEFP": 17946.0, "PLACENS": 2410293.0, "GEOID": 617946.0, "NAME": "Dana Point", "NAMELSAD": "Dana Point city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16797929.0, "AWATER": 691793.0, "INTPTLAT": 33.475452, "INTPTLON": -117.6930873 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6930873, 33.475452 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 234, "felt:has_geometry": true, "felt:h3_index": 644747575125298613, "STATEFP": 6.0, "PLACEFP": 41152.0, "PLACENS": 2410819.0, "GEOID": 641152.0, "NAME": "Lemoore", "NAMELSAD": "Lemoore city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22828779.0, "AWATER": 0.0, "INTPTLAT": 36.2949219, "INTPTLON": -119.7983331 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7983331, 36.2949219 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 235, "felt:has_geometry": true, "felt:h3_index": 644747070384125553, "STATEFP": 6.0, "PLACEFP": 25380.0, "PLACENS": 2410537.0, "GEOID": 625380.0, "NAME": "Fountain Valley", "NAMELSAD": "Fountain Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23493866.0, "AWATER": 33638.0, "INTPTLAT": 33.7105823, "INTPTLON": -117.951129 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.951129, 33.7105823 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 236, "felt:has_geometry": true, "felt:h3_index": 644747384394364529, "STATEFP": 6.0, "PLACEFP": 39178.0, "PLACENS": 2411595.0, "GEOID": 639178.0, "NAME": "Laguna Beach", "NAMELSAD": "Laguna Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23037592.0, "AWATER": 2512773.0, "INTPTLAT": 33.54337, "INTPTLON": -117.7618013 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7618013, 33.54337 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 237, "felt:has_geometry": true, "felt:h3_index": 644747384899657043, "STATEFP": 6.0, "PLACEFP": 39220.0, "PLACENS": 2411596.0, "GEOID": 639220.0, "NAME": "Laguna Hills", "NAMELSAD": "Laguna Hills city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16960505.0, "AWATER": 63580.0, "INTPTLAT": 33.5912164, "INTPTLON": -117.6976212 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6976212, 33.5912164 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 238, "felt:has_geometry": true, "felt:h3_index": 644747384789207693, "STATEFP": 6.0, "PLACEFP": 39259.0, "PLACENS": 2411598.0, "GEOID": 639259.0, "NAME": "Laguna Woods", "NAMELSAD": "Laguna Woods city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8655356.0, "AWATER": 2375.0, "INTPTLAT": 33.6120583, "INTPTLON": -117.7303193 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7303193, 33.6120583 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 239, "felt:has_geometry": true, "felt:h3_index": 644747069609429270, "STATEFP": 6.0, "PLACEFP": 39496.0, "PLACENS": 2411602.0, "GEOID": 639496.0, "NAME": "Lake Forest", "NAMELSAD": "Lake Forest city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 43288926.0, "AWATER": 202929.0, "INTPTLAT": 33.6549461, "INTPTLON": -117.6758479 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6758479, 33.6549461 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 240, "felt:has_geometry": true, "felt:h3_index": 644747574722896102, "STATEFP": 6.0, "PLACEFP": 31960.0, "PLACENS": 2410696.0, "GEOID": 631960.0, "NAME": "Hanford", "NAMELSAD": "Hanford city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45249771.0, "AWATER": 0.0, "INTPTLAT": 36.3275118, "INTPTLON": -119.6550178 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6550178, 36.3275118 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 241, "felt:has_geometry": true, "felt:h3_index": 644721786155774469, "STATEFP": 6.0, "PLACEFP": 13882.0, "PLACENS": 2409474.0, "GEOID": 613882.0, "NAME": "Clayton", "NAMELSAD": "Clayton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9945279.0, "AWATER": 0.0, "INTPTLAT": 37.9403215, "INTPTLON": -121.9300745 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9300745, 37.9403215 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 242, "felt:has_geometry": true, "felt:h3_index": 644721771141321579, "STATEFP": 6.0, "PLACEFP": 21796.0, "PLACENS": 2410410.0, "GEOID": 621796.0, "NAME": "El Cerrito", "NAMELSAD": "El Cerrito city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9509903.0, "AWATER": 0.0, "INTPTLAT": 37.9195744, "INTPTLON": -122.302519 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.302519, 37.9195744 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 243, "felt:has_geometry": true, "felt:h3_index": 644721737681884518, "STATEFP": 6.0, "PLACEFP": 33308.0, "PLACENS": 2410746.0, "GEOID": 633308.0, "NAME": "Hercules", "NAMELSAD": "Hercules city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16608748.0, "AWATER": 35156475.0, "INTPTLAT": 38.0214271, "INTPTLON": -122.288929 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.288929, 38.0214271 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 244, "felt:has_geometry": true, "felt:h3_index": 644721770010518059, "STATEFP": 6.0, "PLACEFP": 49187.0, "PLACENS": 2413013.0, "GEOID": 649187.0, "NAME": "Moraga", "NAMELSAD": "Moraga town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24504014.0, "AWATER": 22901.0, "INTPTLAT": 37.8456927, "INTPTLON": -122.123217 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.123217, 37.8456927 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 245, "felt:has_geometry": true, "felt:h3_index": 644722158472550738, "STATEFP": 6.0, "PLACEFP": 40704.0, "PLACENS": 2411633.0, "GEOID": 640704.0, "NAME": "Lathrop", "NAMELSAD": "Lathrop city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51349617.0, "AWATER": 3058352.0, "INTPTLAT": 37.8086656, "INTPTLON": -121.3177645 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3177645, 37.8086656 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 246, "felt:has_geometry": true, "felt:h3_index": 644722157713272068, "STATEFP": 6.0, "PLACEFP": 42202.0, "PLACENS": 2410854.0, "GEOID": 642202.0, "NAME": "Lodi", "NAMELSAD": "Lodi city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35327015.0, "AWATER": 581028.0, "INTPTLAT": 38.1216095, "INTPTLON": -121.2907652 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2907652, 38.1216095 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 247, "felt:has_geometry": true, "felt:h3_index": 644722146773482422, "STATEFP": 6.0, "PLACEFP": 45484.0, "PLACENS": 2411024.0, "GEOID": 645484.0, "NAME": "Manteca", "NAMELSAD": "Manteca city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55477593.0, "AWATER": 61889.0, "INTPTLAT": 37.7928386, "INTPTLON": -121.2260765 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2260765, 37.7928386 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 248, "felt:has_geometry": true, "felt:h3_index": 644722192074074825, "STATEFP": 6.0, "PLACEFP": 80238.0, "PLACENS": 2412090.0, "GEOID": 680238.0, "NAME": "Tracy", "NAMELSAD": "Tracy city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67824914.0, "AWATER": 351998.0, "INTPTLAT": 37.7273956, "INTPTLON": -121.4521955 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4521955, 37.7273956 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 249, "felt:has_geometry": true, "felt:h3_index": 644747023086295720, "STATEFP": 6.0, "PLACEFP": 37692.0, "PLACENS": 2702867.0, "GEOID": 637692.0, "NAME": "Jurupa Valley", "NAMELSAD": "Jurupa Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 111214683.0, "AWATER": 1910887.0, "INTPTLAT": 34.0025907, "INTPTLON": -117.4676122 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.4676122, 34.0025907 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 250, "felt:has_geometry": true, "felt:h3_index": 644747488324637332, "STATEFP": 6.0, "PLACEFP": 9878.0, "PLACENS": 2409962.0, "GEOID": 609878.0, "NAME": "Calipatria", "NAMELSAD": "Calipatria city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9579219.0, "AWATER": 0.0, "INTPTLAT": 33.1688054, "INTPTLON": -115.4856694 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.4856694, 33.1688054 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 251, "felt:has_geometry": true, "felt:h3_index": 644719990755819776, "STATEFP": 6.0, "PLACEFP": 77364.0, "PLACENS": 2412017.0, "GEOID": 677364.0, "NAME": "Susanville", "NAMELSAD": "Susanville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20507839.0, "AWATER": 218688.0, "INTPTLAT": 40.433674, "INTPTLON": -120.6283062 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6283062, 40.433674 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 252, "felt:has_geometry": true, "felt:h3_index": 644747064478541166, "STATEFP": 6.0, "PLACEFP": 2000.0, "PLACENS": 2409704.0, "GEOID": 602000.0, "NAME": "Anaheim", "NAMELSAD": "Anaheim city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 130232144.0, "AWATER": 1567025.0, "INTPTLAT": 33.8555018, "INTPTLON": -117.7586572 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7586572, 33.8555018 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 253, "felt:has_geometry": true, "felt:h3_index": 644747385956222806, "STATEFP": 6.0, "PLACEFP": 16532.0, "PLACENS": 2410239.0, "GEOID": 616532.0, "NAME": "Costa Mesa", "NAMELSAD": "Costa Mesa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40937010.0, "AWATER": 24554.0, "INTPTLAT": 33.6659055, "INTPTLON": -117.9123358 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9123358, 33.6659055 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 254, "felt:has_geometry": true, "felt:h3_index": 644747393783649610, "STATEFP": 6.0, "PLACEFP": 17750.0, "PLACENS": 2410282.0, "GEOID": 617750.0, "NAME": "Cypress", "NAMELSAD": "Cypress city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17130355.0, "AWATER": 22347.0, "INTPTLAT": 33.8184768, "INTPTLON": -118.0383074 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0383074, 33.8184768 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 255, "felt:has_geometry": true, "felt:h3_index": 644747066122777962, "STATEFP": 6.0, "PLACEFP": 28000.0, "PLACENS": 2410556.0, "GEOID": 628000.0, "NAME": "Fullerton", "NAMELSAD": "Fullerton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 58067902.0, "AWATER": 32825.0, "INTPTLAT": 33.8857156, "INTPTLON": -117.9280247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9280247, 33.8857156 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 256, "felt:has_geometry": true, "felt:h3_index": 644747069863937115, "STATEFP": 6.0, "PLACEFP": 29000.0, "PLACENS": 2410568.0, "GEOID": 629000.0, "NAME": "Garden Grove", "NAMELSAD": "Garden Grove city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46498892.0, "AWATER": 31066.0, "INTPTLAT": 33.7787816, "INTPTLON": -117.9604719 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9604719, 33.7787816 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 257, "felt:has_geometry": true, "felt:h3_index": 644747385239448646, "STATEFP": 6.0, "PLACEFP": 39248.0, "PLACENS": 2411597.0, "GEOID": 639248.0, "NAME": "Laguna Niguel", "NAMELSAD": "Laguna Niguel city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38165700.0, "AWATER": 133550.0, "INTPTLAT": 33.5286538, "INTPTLON": -117.7012525 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7012525, 33.5286538 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 258, "felt:has_geometry": true, "felt:h3_index": 644747070114474419, "STATEFP": 6.0, "PLACEFP": 53980.0, "PLACENS": 2411325.0, "GEOID": 653980.0, "NAME": "Orange", "NAMELSAD": "Orange city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 66477990.0, "AWATER": 386916.0, "INTPTLAT": 33.7869711, "INTPTLON": -117.8612654 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8612654, 33.7869711 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 259, "felt:has_geometry": true, "felt:h3_index": 644747065102227620, "STATEFP": 6.0, "PLACEFP": 57526.0, "PLACENS": 2411432.0, "GEOID": 657526.0, "NAME": "Placentia", "NAMELSAD": "Placentia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17126768.0, "AWATER": 37381.0, "INTPTLAT": 33.8811581, "INTPTLON": -117.8547827 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8547827, 33.8811581 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 260, "felt:has_geometry": true, "felt:h3_index": 644747061405687052, "STATEFP": 6.0, "PLACEFP": 68028.0, "PLACENS": 2411793.0, "GEOID": 668028.0, "NAME": "San Juan Capistrano", "NAMELSAD": "San Juan Capistrano city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37374655.0, "AWATER": 0.0, "INTPTLAT": 33.5008888, "INTPTLON": -117.6543878 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6543878, 33.5008888 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 261, "felt:has_geometry": true, "felt:h3_index": 644747070590462032, "STATEFP": 6.0, "PLACEFP": 69000.0, "PLACENS": 2411814.0, "GEOID": 669000.0, "NAME": "Santa Ana", "NAMELSAD": "Santa Ana city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 70904555.0, "AWATER": 79932.0, "INTPTLAT": 33.7363317, "INTPTLON": -117.8828997 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8828997, 33.7363317 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 262, "felt:has_geometry": true, "felt:h3_index": 644747070515243433, "STATEFP": 6.0, "PLACEFP": 84550.0, "PLACENS": 2412236.0, "GEOID": 684550.0, "NAME": "Westminster", "NAMELSAD": "Westminster city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26001396.0, "AWATER": 0.0, "INTPTLAT": 33.7522916, "INTPTLON": -117.9938679 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9938679, 33.7522916 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 263, "felt:has_geometry": true, "felt:h3_index": 644747064429065921, "STATEFP": 6.0, "PLACEFP": 86832.0, "PLACENS": 2412321.0, "GEOID": 686832.0, "NAME": "Yorba Linda", "NAMELSAD": "Yorba Linda city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51676743.0, "AWATER": 52602.0, "INTPTLAT": 33.8890375, "INTPTLON": -117.7720695 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7720695, 33.8890375 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 264, "felt:has_geometry": true, "felt:h3_index": 644721945915734576, "STATEFP": 6.0, "PLACEFP": 85586.0, "PLACENS": 2412268.0, "GEOID": 685586.0, "NAME": "Williams", "NAMELSAD": "Williams city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12810560.0, "AWATER": 0.0, "INTPTLAT": 39.1497797, "INTPTLON": -122.1389678 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1389678, 39.1497797 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 265, "felt:has_geometry": true, "felt:h3_index": 644721945635593221, "STATEFP": 6.0, "PLACEFP": 14946.0, "PLACENS": 2410204.0, "GEOID": 614946.0, "NAME": "Colusa", "NAMELSAD": "Colusa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11295870.0, "AWATER": 0.0, "INTPTLAT": 39.2000228, "INTPTLON": -122.0094812 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0094812, 39.2000228 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 266, "felt:has_geometry": true, "felt:h3_index": 644722145177797193, "STATEFP": 6.0, "PLACEFP": 22790.0, "PLACENS": 2410453.0, "GEOID": 622790.0, "NAME": "Escalon", "NAMELSAD": "Escalon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5899272.0, "AWATER": 174504.0, "INTPTLAT": 37.7913363, "INTPTLON": -120.9996428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9996428, 37.7913363 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 267, "felt:has_geometry": true, "felt:h3_index": 644722146725976930, "STATEFP": 6.0, "PLACEFP": 61026.0, "PLACENS": 2410957.0, "GEOID": 661026.0, "NAME": "Ripon", "NAMELSAD": "Ripon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13790583.0, "AWATER": 499649.0, "INTPTLAT": 37.7420067, "INTPTLON": -121.1303729 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1303729, 37.7420067 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 268, "felt:has_geometry": true, "felt:h3_index": 644722154173534857, "STATEFP": 6.0, "PLACEFP": 75000.0, "PLACENS": 2411987.0, "GEOID": 675000.0, "NAME": "Stockton", "NAMELSAD": "Stockton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 161592699.0, "AWATER": 7956195.0, "INTPTLAT": 37.9763417, "INTPTLON": -121.3133043 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3133043, 37.9763417 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 269, "felt:has_geometry": true, "felt:h3_index": 644747048740075378, "STATEFP": 6.0, "PLACEFP": 2364.0, "PLACENS": 2412372.0, "GEOID": 602364.0, "NAME": "Apple Valley", "NAMELSAD": "Apple Valley town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 199444691.0, "AWATER": 182413.0, "INTPTLAT": 34.5333761, "INTPTLON": -117.2103584 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2103584, 34.5333761 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 270, "felt:has_geometry": true, "felt:h3_index": 644747025391164203, "STATEFP": 6.0, "PLACEFP": 65000.0, "PLACENS": 2411777.0, "GEOID": 665000.0, "NAME": "San Bernardino", "NAMELSAD": "San Bernardino city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 160912067.0, "AWATER": 853495.0, "INTPTLAT": 34.1411402, "INTPTLON": -117.2946349 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2946349, 34.1411402 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 271, "felt:has_geometry": true, "felt:h3_index": 644747032503061924, "STATEFP": 6.0, "PLACEFP": 33434.0, "PLACENS": 2410751.0, "GEOID": 633434.0, "NAME": "Hesperia", "NAMELSAD": "Hesperia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 188241904.0, "AWATER": 251762.0, "INTPTLAT": 34.3970383, "INTPTLON": -117.3151976 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3151976, 34.3970383 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 272, "felt:has_geometry": true, "felt:h3_index": 644747139012551940, "STATEFP": 6.0, "PLACEFP": 70042.0, "PLACENS": 2411826.0, "GEOID": 670042.0, "NAME": "Santa Paula", "NAMELSAD": "Santa Paula city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14323012.0, "AWATER": 423953.0, "INTPTLAT": 34.35495, "INTPTLON": -119.0662804 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0662804, 34.35495 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 273, "felt:has_geometry": true, "felt:h3_index": 644719909015799626, "STATEFP": 6.0, "PLACEFP": 59920.0, "PLACENS": 2411531.0, "GEOID": 659920.0, "NAME": "Redding", "NAMELSAD": "Redding city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 154023453.0, "AWATER": 3904619.0, "INTPTLAT": 40.5702768, "INTPTLON": -122.3667659 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3667659, 40.5702768 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 274, "felt:has_geometry": true, "felt:h3_index": 644719908610551070, "STATEFP": 6.0, "PLACEFP": 71225.0, "PLACENS": 2411877.0, "GEOID": 671225.0, "NAME": "Shasta Lake", "NAMELSAD": "Shasta Lake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28229509.0, "AWATER": 14724.0, "INTPTLAT": 40.6765637, "INTPTLON": -122.3809091 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3809091, 40.6765637 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 275, "felt:has_geometry": true, "felt:h3_index": 644747266610574700, "STATEFP": 6.0, "PLACEFP": 82590.0, "PLACENS": 2412156.0, "GEOID": 682590.0, "NAME": "Victorville", "NAMELSAD": "Victorville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 190908178.0, "AWATER": 744967.0, "INTPTLAT": 34.5277346, "INTPTLON": -117.3535789 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3535789, 34.5277346 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 276, "felt:has_geometry": true, "felt:h3_index": 644747064817237222, "STATEFP": 6.0, "PLACEFP": 13214.0, "PLACENS": 2409454.0, "GEOID": 613214.0, "NAME": "Chino Hills", "NAMELSAD": "Chino Hills city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 115642341.0, "AWATER": 123913.0, "INTPTLAT": 33.9429693, "INTPTLON": -117.7256483 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7256483, 33.9429693 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 277, "felt:has_geometry": true, "felt:h3_index": 644747025029171510, "STATEFP": 6.0, "PLACEFP": 33588.0, "PLACENS": 2410759.0, "GEOID": 633588.0, "NAME": "Highland", "NAMELSAD": "Highland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48099958.0, "AWATER": 244008.0, "INTPTLAT": 34.1134731, "INTPTLON": -117.1657294 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1657294, 34.1134731 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 278, "felt:has_geometry": true, "felt:h3_index": 644747067283121880, "STATEFP": 6.0, "PLACEFP": 13210.0, "PLACENS": 2409453.0, "GEOID": 613210.0, "NAME": "Chino", "NAMELSAD": "Chino city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 76596420.0, "AWATER": 249662.0, "INTPTLAT": 33.9780368, "INTPTLON": -117.6577189 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6577189, 33.9780368 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 279, "felt:has_geometry": true, "felt:h3_index": 644748031452316486, "STATEFP": 6.0, "PLACEFP": 3526.0, "PLACENS": 2409774.0, "GEOID": 603526.0, "NAME": "Bakersfield", "NAMELSAD": "Bakersfield city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 389204786.0, "AWATER": 3792006.0, "INTPTLAT": 35.3531712, "INTPTLON": -119.0379186 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0379186, 35.3531712 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 280, "felt:has_geometry": true, "felt:h3_index": 644748516873606566, "STATEFP": 6.0, "PLACEFP": 7218.0, "PLACENS": 2409872.0, "GEOID": 607218.0, "NAME": "Blythe", "NAMELSAD": "Blythe city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68645916.0, "AWATER": 2000747.0, "INTPTLAT": 33.6535205, "INTPTLON": -114.6218227 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.6218227, 33.6535205 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 281, "felt:has_geometry": true, "felt:h3_index": 644747449238602998, "STATEFP": 6.0, "PLACEFP": 36448.0, "PLACENS": 2410101.0, "GEOID": 636448.0, "NAME": "Indio", "NAMELSAD": "Indio city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 85944832.0, "AWATER": 20661.0, "INTPTLAT": 33.7316388, "INTPTLON": -116.2359705 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2359705, 33.7316388 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 282, "felt:has_geometry": true, "felt:h3_index": 644747025862970516, "STATEFP": 6.0, "PLACEFP": 56700.0, "PLACENS": 2411403.0, "GEOID": 656700.0, "NAME": "Perris", "NAMELSAD": "Perris city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 81748619.0, "AWATER": 279334.0, "INTPTLAT": 33.7898494, "INTPTLON": -117.2221715 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2221715, 33.7898494 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 283, "felt:has_geometry": true, "felt:h3_index": 644748023430717729, "STATEFP": 6.0, "PLACEFP": 2924.0, "PLACENS": 2409738.0, "GEOID": 602924.0, "NAME": "Arvin", "NAMELSAD": "Arvin city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12482061.0, "AWATER": 0.0, "INTPTLAT": 35.1943611, "INTPTLON": -118.8305687 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8305687, 35.1943611 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 284, "felt:has_geometry": true, "felt:h3_index": 644747239564182225, "STATEFP": 6.0, "PLACEFP": 60704.0, "PLACENS": 2410944.0, "GEOID": 660704.0, "NAME": "Ridgecrest", "NAMELSAD": "Ridgecrest city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 54029088.0, "AWATER": 1671951.0, "INTPTLAT": 35.6285421, "INTPTLON": -117.6639923 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6639923, 35.6285421 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 285, "felt:has_geometry": true, "felt:h3_index": 644748024436175472, "STATEFP": 6.0, "PLACEFP": 78092.0, "PLACENS": 2412041.0, "GEOID": 678092.0, "NAME": "Tehachapi", "NAMELSAD": "Tehachapi city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26563140.0, "AWATER": 250130.0, "INTPTLAT": 35.1429585, "INTPTLON": -118.4460356 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4460356, 35.1429585 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 286, "felt:has_geometry": true, "felt:h3_index": 644721787001381217, "STATEFP": 6.0, "PLACEFP": 8142.0, "PLACENS": 2409902.0, "GEOID": 608142.0, "NAME": "Brentwood", "NAMELSAD": "Brentwood city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38501266.0, "AWATER": 0.0, "INTPTLAT": 37.9355778, "INTPTLON": -121.7189698 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7189698, 37.9355778 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 287, "felt:has_geometry": true, "felt:h3_index": 644722034977957618, "STATEFP": 6.0, "PLACEFP": 60102.0, "PLACENS": 2410919.0, "GEOID": 660102.0, "NAME": "Redwood City", "NAMELSAD": "Redwood City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50080209.0, "AWATER": 39901457.0, "INTPTLAT": 37.5152736, "INTPTLON": -122.2136716 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2136716, 37.5152736 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 288, "felt:has_geometry": true, "felt:h3_index": 644721782905196560, "STATEFP": 6.0, "PLACEFP": 68364.0, "PLACENS": 2411804.0, "GEOID": 668364.0, "NAME": "San Rafael", "NAMELSAD": "San Rafael city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42960193.0, "AWATER": 15426850.0, "INTPTLAT": 37.9810032, "INTPTLON": -122.5069297 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5069297, 37.9810032 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 289, "felt:has_geometry": true, "felt:h3_index": 644737842143468300, "STATEFP": 6.0, "PLACEFP": 11250.0, "PLACENS": 2409987.0, "GEOID": 611250.0, "NAME": "Carmel-by-the-Sea", "NAMELSAD": "Carmel-by-the-Sea city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2748715.0, "AWATER": 0.0, "INTPTLAT": 36.5528806, "INTPTLON": -121.9219185 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9219185, 36.5528806 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 290, "felt:has_geometry": true, "felt:h3_index": 644737842345595032, "STATEFP": 6.0, "PLACEFP": 18688.0, "PLACENS": 2410315.0, "GEOID": 618688.0, "NAME": "Del Rey Oaks", "NAMELSAD": "Del Rey Oaks city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2730932.0, "AWATER": 5204.0, "INTPTLAT": 36.5896993, "INTPTLON": -121.8295272 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8295272, 36.5896993 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 291, "felt:has_geometry": true, "felt:h3_index": 644747584730061441, "STATEFP": 6.0, "PLACEFP": 36084.0, "PLACENS": 2410081.0, "GEOID": 636084.0, "NAME": "Huron", "NAMELSAD": "Huron city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4302328.0, "AWATER": 0.0, "INTPTLAT": 36.2042339, "INTPTLON": -120.0953108 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0953108, 36.2042339 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 292, "felt:has_geometry": true, "felt:h3_index": 644747682967826784, "STATEFP": 6.0, "PLACEFP": 30392.0, "PLACENS": 2410617.0, "GEOID": 630392.0, "NAME": "Gonzales", "NAMELSAD": "Gonzales city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4955568.0, "AWATER": 98218.0, "INTPTLAT": 36.505979, "INTPTLON": -121.442918 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.442918, 36.505979 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 293, "felt:has_geometry": true, "felt:h3_index": 644747675861780150, "STATEFP": 6.0, "PLACEFP": 30994.0, "PLACENS": 2410657.0, "GEOID": 630994.0, "NAME": "Greenfield", "NAMELSAD": "Greenfield city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7548415.0, "AWATER": 98210.0, "INTPTLAT": 36.3245614, "INTPTLON": -121.2426579 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2426579, 36.3245614 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 294, "felt:has_geometry": true, "felt:h3_index": 644719882398990498, "STATEFP": 6.0, "PLACEFP": 59892.0, "PLACENS": 2411527.0, "GEOID": 659892.0, "NAME": "Red Bluff", "NAMELSAD": "Red Bluff city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19582197.0, "AWATER": 295207.0, "INTPTLAT": 40.1735147, "INTPTLON": -122.2415247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2415247, 40.1735147 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 295, "felt:has_geometry": true, "felt:h3_index": 644721919076738481, "STATEFP": 6.0, "PLACEFP": 18100.0, "PLACENS": 2410296.0, "GEOID": 618100.0, "NAME": "Davis", "NAMELSAD": "Davis city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25826324.0, "AWATER": 90331.0, "INTPTLAT": 38.556147, "INTPTLON": -121.7377925 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7377925, 38.556147 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 296, "felt:has_geometry": true, "felt:h3_index": 644721917400555624, "STATEFP": 6.0, "PLACEFP": 84816.0, "PLACENS": 2412228.0, "GEOID": 684816.0, "NAME": "West Sacramento", "NAMELSAD": "West Sacramento city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55606617.0, "AWATER": 3446736.0, "INTPTLAT": 38.5543684, "INTPTLON": -121.5486634 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5486634, 38.5543684 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 297, "felt:has_geometry": true, "felt:h3_index": 644721759376263982, "STATEFP": 6.0, "PLACEFP": 86034.0, "PLACENS": 2412288.0, "GEOID": 686034.0, "NAME": "Winters", "NAMELSAD": "Winters city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7601165.0, "AWATER": 64542.0, "INTPTLAT": 38.5332708, "INTPTLON": -121.975473 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.975473, 38.5332708 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 298, "felt:has_geometry": true, "felt:h3_index": 644721918588814197, "STATEFP": 6.0, "PLACEFP": 86328.0, "PLACENS": 2412300.0, "GEOID": 686328.0, "NAME": "Woodland", "NAMELSAD": "Woodland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39665023.0, "AWATER": 0.0, "INTPTLAT": 38.6711605, "INTPTLON": -121.7500432 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7500432, 38.6711605 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 299, "felt:has_geometry": true, "felt:h3_index": 644719784625908842, "STATEFP": 6.0, "PLACEFP": 19584.0, "PLACENS": 2410347.0, "GEOID": 619584.0, "NAME": "Dorris", "NAMELSAD": "Dorris city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1819374.0, "AWATER": 40653.0, "INTPTLAT": 41.9649654, "INTPTLON": -121.9203865 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9203865, 41.9649654 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 300, "felt:has_geometry": true, "felt:h3_index": 644719609596492310, "STATEFP": 6.0, "PLACEFP": 49852.0, "PLACENS": 2411181.0, "GEOID": 649852.0, "NAME": "Mount Shasta", "NAMELSAD": "Mount Shasta city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9754373.0, "AWATER": 9660.0, "INTPTLAT": 41.3208797, "INTPTLON": -122.3154809 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3154809, 41.3208797 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 301, "felt:has_geometry": true, "felt:h3_index": 644721988000654554, "STATEFP": 6.0, "PLACEFP": 39710.0, "PLACENS": 2411609.0, "GEOID": 639710.0, "NAME": "Lakeport", "NAMELSAD": "Lakeport city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7920508.0, "AWATER": 363747.0, "INTPTLAT": 39.0383327, "INTPTLON": -122.9226333 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9226333, 39.0383327 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 302, "felt:has_geometry": true, "felt:h3_index": 644747300973930090, "STATEFP": 6.0, "PLACEFP": 16378.0, "PLACENS": 2410233.0, "GEOID": 616378.0, "NAME": "Coronado", "NAMELSAD": "Coronado city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20215844.0, "AWATER": 63957492.0, "INTPTLAT": 32.6576246, "INTPTLON": -117.1565392 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1565392, 32.6576246 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 303, "felt:has_geometry": true, "felt:h3_index": 644747326829808690, "STATEFP": 6.0, "PLACEFP": 22804.0, "PLACENS": 2410455.0, "GEOID": 622804.0, "NAME": "Escondido", "NAMELSAD": "Escondido city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 96726218.0, "AWATER": 276445.0, "INTPTLAT": 33.1330533, "INTPTLON": -117.074043 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.074043, 33.1330533 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 304, "felt:has_geometry": true, "felt:h3_index": 644747349727826304, "STATEFP": 6.0, "PLACEFP": 36294.0, "PLACENS": 2410098.0, "GEOID": 636294.0, "NAME": "Imperial Beach", "NAMELSAD": "Imperial Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11112520.0, "AWATER": 304504.0, "INTPTLAT": 32.5691398, "INTPTLON": -117.1149206 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1149206, 32.5691398 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 305, "felt:has_geometry": true, "felt:h3_index": 644747623669054852, "STATEFP": 6.0, "PLACEFP": 18394.0, "PLACENS": 2410317.0, "GEOID": 618394.0, "NAME": "Delano", "NAMELSAD": "Delano city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38114812.0, "AWATER": 135325.0, "INTPTLAT": 35.7664302, "INTPTLON": -119.2642212 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2642212, 35.7664302 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 306, "felt:has_geometry": true, "felt:h3_index": 644747627426563821, "STATEFP": 6.0, "PLACEFP": 44826.0, "PLACENS": 2411062.0, "GEOID": 644826.0, "NAME": "McFarland", "NAMELSAD": "McFarland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7875289.0, "AWATER": 0.0, "INTPTLAT": 35.6705643, "INTPTLON": -119.231681 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.231681, 35.6705643 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 307, "felt:has_geometry": true, "felt:h3_index": 644747849145864875, "STATEFP": 6.0, "PLACEFP": 45736.0, "PLACENS": 2411033.0, "GEOID": 645736.0, "NAME": "Maricopa", "NAMELSAD": "Maricopa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4054515.0, "AWATER": 0.0, "INTPTLAT": 35.050942, "INTPTLON": -119.406605 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.406605, 35.050942 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 308, "felt:has_geometry": true, "felt:h3_index": 644722063639663686, "STATEFP": 6.0, "PLACEFP": 45778.0, "PLACENS": 2411035.0, "GEOID": 645778.0, "NAME": "Marina", "NAMELSAD": "Marina city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23070824.0, "AWATER": 2333714.0, "INTPTLAT": 36.6802563, "INTPTLON": -121.7893682 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7893682, 36.6802563 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 309, "felt:has_geometry": true, "felt:h3_index": 644722064084048993, "STATEFP": 6.0, "PLACEFP": 65112.0, "PLACENS": 2411806.0, "GEOID": 665112.0, "NAME": "Sand City", "NAMELSAD": "Sand City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1416996.0, "AWATER": 6121647.0, "INTPTLAT": 36.6217704, "INTPTLON": -121.8476681 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8476681, 36.6217704 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 310, "felt:has_geometry": true, "felt:h3_index": 644722064175205187, "STATEFP": 6.0, "PLACEFP": 70742.0, "PLACENS": 2411853.0, "GEOID": 670742.0, "NAME": "Seaside", "NAMELSAD": "Seaside city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23111409.0, "AWATER": 355497.0, "INTPTLAT": 36.6250576, "INTPTLON": -121.8178044 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8178044, 36.6250576 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 311, "felt:has_geometry": true, "felt:h3_index": 644747689997471765, "STATEFP": 6.0, "PLACEFP": 72520.0, "PLACENS": 2411924.0, "GEOID": 672520.0, "NAME": "Soledad", "NAMELSAD": "Soledad city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11551909.0, "AWATER": 492321.0, "INTPTLAT": 36.4345222, "INTPTLON": -121.3177588 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3177588, 36.4345222 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 312, "felt:has_geometry": true, "felt:h3_index": 644721902177031257, "STATEFP": 6.0, "PLACEFP": 14498.0, "PLACENS": 2410190.0, "GEOID": 614498.0, "NAME": "Colfax", "NAMELSAD": "Colfax city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3641506.0, "AWATER": 0.0, "INTPTLAT": 39.0937989, "INTPTLON": -120.9532218 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9532218, 39.0937989 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 313, "felt:has_geometry": true, "felt:h3_index": 644719881388344180, "STATEFP": 6.0, "PLACEFP": 2042.0, "PLACENS": 2409706.0, "GEOID": 602042.0, "NAME": "Anderson", "NAMELSAD": "Anderson city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18210820.0, "AWATER": 466513.0, "INTPTLAT": 40.4497548, "INTPTLON": -122.2950698 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2950698, 40.4497548 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 314, "felt:has_geometry": true, "felt:h3_index": 644719613690727203, "STATEFP": 6.0, "PLACEFP": 86944.0, "PLACENS": 2412324.0, "GEOID": 686944.0, "NAME": "Yreka", "NAMELSAD": "Yreka city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25861889.0, "AWATER": 188154.0, "INTPTLAT": 41.7240335, "INTPTLON": -122.6315699 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6315699, 41.7240335 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 315, "felt:has_geometry": true, "felt:h3_index": 644745694598468490, "STATEFP": 6.0, "PLACEFP": 45358.0, "PLACENS": 2412936.0, "GEOID": 645358.0, "NAME": "Mammoth Lakes", "NAMELSAD": "Mammoth Lakes town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 64402450.0, "AWATER": 1139030.0, "INTPTLAT": 37.6244355, "INTPTLON": -118.9884322 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9884322, 37.6244355 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 316, "felt:has_geometry": true, "felt:h3_index": 644721773630909779, "STATEFP": 6.0, "PLACEFP": 53000.0, "PLACENS": 2411292.0, "GEOID": 653000.0, "NAME": "Oakland", "NAMELSAD": "Oakland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 144944705.0, "AWATER": 57160794.0, "INTPTLAT": 37.7698464, "INTPTLON": -122.22569 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.22569, 37.7698464 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 317, "felt:has_geometry": true, "felt:h3_index": 644747391231408362, "STATEFP": 6.0, "PLACEFP": 11530.0, "PLACENS": 2409399.0, "GEOID": 611530.0, "NAME": "Carson", "NAMELSAD": "Carson city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48513002.0, "AWATER": 612009.0, "INTPTLAT": 33.840367, "INTPTLON": -118.2495736 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2495736, 33.840367 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 318, "felt:has_geometry": true, "felt:h3_index": 644747302892672018, "STATEFP": 6.0, "PLACEFP": 41124.0, "PLACENS": 2410818.0, "GEOID": 641124.0, "NAME": "Lemon Grove", "NAMELSAD": "Lemon Grove city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10045731.0, "AWATER": 0.0, "INTPTLAT": 32.7330712, "INTPTLON": -117.0344134 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0344134, 32.7330712 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 319, "felt:has_geometry": true, "felt:h3_index": 644747349465553050, "STATEFP": 6.0, "PLACEFP": 13392.0, "PLACENS": 2409461.0, "GEOID": 613392.0, "NAME": "Chula Vista", "NAMELSAD": "Chula Vista city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 128560729.0, "AWATER": 6360807.0, "INTPTLAT": 32.6276701, "INTPTLON": -117.0151696 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0151696, 32.6276701 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 320, "felt:has_geometry": true, "felt:h3_index": 644747302935828405, "STATEFP": 6.0, "PLACEFP": 66000.0, "PLACENS": 2411782.0, "GEOID": 666000.0, "NAME": "San Diego", "NAMELSAD": "San Diego city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 844031824.0, "AWATER": 120532755.0, "INTPTLAT": 32.814977, "INTPTLON": -117.1355615 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1355615, 32.814977 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 321, "felt:has_geometry": true, "felt:h3_index": 644748031996254085, "STATEFP": 6.0, "PLACEFP": 71106.0, "PLACENS": 2411873.0, "GEOID": 671106.0, "NAME": "Shafter", "NAMELSAD": "Shafter city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 100221605.0, "AWATER": 0.0, "INTPTLAT": 35.4794212, "INTPTLON": -119.2012851 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2012851, 35.4794212 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 322, "felt:has_geometry": true, "felt:h3_index": 644747627683405902, "STATEFP": 6.0, "PLACEFP": 83542.0, "PLACENS": 2412185.0, "GEOID": 683542.0, "NAME": "Wasco", "NAMELSAD": "Wasco city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24313382.0, "AWATER": 0.0, "INTPTLAT": 35.5937849, "INTPTLON": -119.3671006 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3671006, 35.5937849 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 323, "felt:has_geometry": true, "felt:h3_index": 644721768171489905, "STATEFP": 6.0, "PLACEFP": 70364.0, "PLACENS": 2411834.0, "GEOID": 670364.0, "NAME": "Sausalito", "NAMELSAD": "Sausalito city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4568773.0, "AWATER": 1276883.0, "INTPTLAT": 37.8583694, "INTPTLON": -122.4918436 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4918436, 37.8583694 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 324, "felt:has_geometry": true, "felt:h3_index": 644721769203154334, "STATEFP": 6.0, "PLACEFP": 54232.0, "PLACENS": 2411334.0, "GEOID": 654232.0, "NAME": "Orinda", "NAMELSAD": "Orinda city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33285592.0, "AWATER": 40530.0, "INTPTLAT": 37.8816103, "INTPTLON": -122.1685955 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1685955, 37.8816103 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 325, "felt:has_geometry": true, "felt:h3_index": 644721770777306177, "STATEFP": 6.0, "PLACEFP": 57288.0, "PLACENS": 2411428.0, "GEOID": 657288.0, "NAME": "Pinole", "NAMELSAD": "Pinole city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13218372.0, "AWATER": 17242736.0, "INTPTLAT": 38.0017019, "INTPTLON": -122.318488 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.318488, 38.0017019 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 326, "felt:has_geometry": true, "felt:h3_index": 644721770273784531, "STATEFP": 6.0, "PLACEFP": 60620.0, "PLACENS": 2410939.0, "GEOID": 660620.0, "NAME": "Richmond", "NAMELSAD": "Richmond city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77809538.0, "AWATER": 58194574.0, "INTPTLAT": 37.9522779, "INTPTLON": -122.360609 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.360609, 37.9522779 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 327, "felt:has_geometry": true, "felt:h3_index": 644721770308755549, "STATEFP": 6.0, "PLACEFP": 68294.0, "PLACENS": 2411801.0, "GEOID": 668294.0, "NAME": "San Pablo", "NAMELSAD": "San Pablo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6797163.0, "AWATER": 0.0, "INTPTLAT": 37.9628612, "INTPTLON": -122.3425814 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3425814, 37.9628612 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 328, "felt:has_geometry": true, "felt:h3_index": 644721769555225709, "STATEFP": 6.0, "PLACEFP": 39122.0, "PLACENS": 2411591.0, "GEOID": 639122.0, "NAME": "Lafayette", "NAMELSAD": "Lafayette city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38912815.0, "AWATER": 431202.0, "INTPTLAT": 37.891004, "INTPTLON": -122.1195292 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1195292, 37.891004 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 329, "felt:has_geometry": true, "felt:h3_index": 644747021878350657, "STATEFP": 6.0, "PLACEFP": 42370.0, "PLACENS": 2410857.0, "GEOID": 642370.0, "NAME": "Loma Linda", "NAMELSAD": "Loma Linda city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22528575.0, "AWATER": 2371.0, "INTPTLAT": 34.0429322, "INTPTLON": -117.2488722 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2488722, 34.0429322 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 330, "felt:has_geometry": true, "felt:h3_index": 644747067958717867, "STATEFP": 6.0, "PLACEFP": 48788.0, "PLACENS": 2411141.0, "GEOID": 648788.0, "NAME": "Montclair", "NAMELSAD": "Montclair city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14325101.0, "AWATER": 0.0, "INTPTLAT": 34.0714926, "INTPTLON": -117.6980798 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6980798, 34.0714926 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 331, "felt:has_geometry": true, "felt:h3_index": 644748247045125961, "STATEFP": 6.0, "PLACEFP": 50734.0, "PLACENS": 2411220.0, "GEOID": 650734.0, "NAME": "Needles", "NAMELSAD": "Needles city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79196617.0, "AWATER": 1289442.0, "INTPTLAT": 34.8134263, "INTPTLON": -114.6266387 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.6266387, 34.8134263 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 332, "felt:has_geometry": true, "felt:h3_index": 644747034960402868, "STATEFP": 6.0, "PLACEFP": 53896.0, "PLACENS": 2411323.0, "GEOID": 653896.0, "NAME": "Ontario", "NAMELSAD": "Ontario city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 129459234.0, "AWATER": 75071.0, "INTPTLAT": 34.0376483, "INTPTLON": -117.6044326 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6044326, 34.0376483 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 333, "felt:has_geometry": true, "felt:h3_index": 644721823180247955, "STATEFP": 6.0, "PLACEFP": 33056.0, "PLACENS": 2410726.0, "GEOID": 633056.0, "NAME": "Healdsburg", "NAMELSAD": "Healdsburg city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11448706.0, "AWATER": 0.0, "INTPTLAT": 38.6225262, "INTPTLON": -122.8651327 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8651327, 38.6225262 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 334, "felt:has_geometry": true, "felt:h3_index": 644721743088761758, "STATEFP": 6.0, "PLACEFP": 85922.0, "PLACENS": 2413495.0, "GEOID": 685922.0, "NAME": "Windsor", "NAMELSAD": "Windsor town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19260063.0, "AWATER": 60261.0, "INTPTLAT": 38.5420993, "INTPTLON": -122.8086133 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8086133, 38.5420993 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 335, "felt:has_geometry": true, "felt:h3_index": 644718882313740706, "STATEFP": 6.0, "PLACEFP": 25058.0, "PLACENS": 2410525.0, "GEOID": 625058.0, "NAME": "Fort Bragg", "NAMELSAD": "Fort Bragg city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7483743.0, "AWATER": 71203.0, "INTPTLAT": 39.4398027, "INTPTLON": -123.8017566 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.8017566, 39.4398027 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 336, "felt:has_geometry": true, "felt:h3_index": 644747817176709852, "STATEFP": 6.0, "PLACEFP": 38226.0, "PLACENS": 2411536.0, "GEOID": 638226.0, "NAME": "Kerman", "NAMELSAD": "Kerman city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8697690.0, "AWATER": 0.0, "INTPTLAT": 36.7250406, "INTPTLON": -120.0624734 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0624734, 36.7250406 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 337, "felt:has_geometry": true, "felt:h3_index": 644747737800824493, "STATEFP": 6.0, "PLACEFP": 6798.0, "PLACENS": 2409852.0, "GEOID": 606798.0, "NAME": "Bishop", "NAMELSAD": "Bishop city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4827233.0, "AWATER": 122068.0, "INTPTLAT": 37.3663813, "INTPTLON": -118.3958082 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3958082, 37.3663813 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 338, "felt:has_geometry": true, "felt:h3_index": 644747319627887118, "STATEFP": 6.0, "PLACEFP": 21712.0, "PLACENS": 2410406.0, "GEOID": 621712.0, "NAME": "El Cajon", "NAMELSAD": "El Cajon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37579662.0, "AWATER": 0.0, "INTPTLAT": 32.8016733, "INTPTLON": -116.9604685 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9604685, 32.8016733 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 339, "felt:has_geometry": true, "felt:h3_index": 644747299725936744, "STATEFP": 6.0, "PLACEFP": 22678.0, "PLACENS": 2410440.0, "GEOID": 622678.0, "NAME": "Encinitas", "NAMELSAD": "Encinitas city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 49353552.0, "AWATER": 2854559.0, "INTPTLAT": 33.0506323, "INTPTLON": -117.2636163 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2636163, 33.0506323 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 340, "felt:has_geometry": true, "felt:h3_index": 644747303065095330, "STATEFP": 6.0, "PLACEFP": 40004.0, "PLACENS": 2411576.0, "GEOID": 640004.0, "NAME": "La Mesa", "NAMELSAD": "La Mesa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23546769.0, "AWATER": 12381.0, "INTPTLAT": 32.7694947, "INTPTLON": -117.0219232 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0219232, 32.7694947 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 341, "felt:has_geometry": true, "felt:h3_index": 644747307456168565, "STATEFP": 6.0, "PLACEFP": 53322.0, "PLACENS": 2411301.0, "GEOID": 653322.0, "NAME": "Oceanside", "NAMELSAD": "Oceanside city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 106883484.0, "AWATER": 2297570.0, "INTPTLAT": 33.2246006, "INTPTLON": -117.3062909 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3062909, 33.2246006 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 342, "felt:has_geometry": true, "felt:h3_index": 644747298923432365, "STATEFP": 6.0, "PLACEFP": 58520.0, "PLACENS": 2411480.0, "GEOID": 658520.0, "NAME": "Poway", "NAMELSAD": "Poway city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 101210495.0, "AWATER": 223435.0, "INTPTLAT": 32.9876765, "INTPTLON": -117.0218144 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0218144, 32.9876765 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 343, "felt:has_geometry": true, "felt:h3_index": 644747327819540016, "STATEFP": 6.0, "PLACEFP": 68196.0, "PLACENS": 2411797.0, "GEOID": 668196.0, "NAME": "San Marcos", "NAMELSAD": "San Marcos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 63624545.0, "AWATER": 52493.0, "INTPTLAT": 33.1325674, "INTPTLON": -117.1698921 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1698921, 33.1325674 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 344, "felt:has_geometry": true, "felt:h3_index": 644721767960709350, "STATEFP": 6.0, "PLACEFP": 562.0, "PLACENS": 2409669.0, "GEOID": 600562.0, "NAME": "Alameda", "NAMELSAD": "Alameda city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26934009.0, "AWATER": 32581545.0, "INTPTLAT": 37.7419107, "INTPTLON": -122.2599139 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2599139, 37.7419107 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 345, "felt:has_geometry": true, "felt:h3_index": 644721771174244512, "STATEFP": 6.0, "PLACEFP": 674.0, "PLACENS": 2409674.0, "GEOID": 600674.0, "NAME": "Albany", "NAMELSAD": "Albany city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4636035.0, "AWATER": 9521771.0, "INTPTLAT": 37.8906499, "INTPTLON": -122.3181164 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3181164, 37.8906499 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 346, "felt:has_geometry": true, "felt:h3_index": 644721767494091681, "STATEFP": 6.0, "PLACEFP": 6000.0, "PLACENS": 2409837.0, "GEOID": 606000.0, "NAME": "Berkeley", "NAMELSAD": "Berkeley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27018309.0, "AWATER": 18712737.0, "INTPTLAT": 37.8656733, "INTPTLON": -122.2987247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2987247, 37.8656733 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 347, "felt:has_geometry": true, "felt:h3_index": 644721789270931524, "STATEFP": 6.0, "PLACEFP": 20018.0, "PLACENS": 2410362.0, "GEOID": 620018.0, "NAME": "Dublin", "NAMELSAD": "Dublin city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39442778.0, "AWATER": 0.0, "INTPTLAT": 37.7161372, "INTPTLON": -121.8962293 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8962293, 37.7161372 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 348, "felt:has_geometry": true, "felt:h3_index": 644721767554172941, "STATEFP": 6.0, "PLACEFP": 22594.0, "PLACENS": 2410436.0, "GEOID": 622594.0, "NAME": "Emeryville", "NAMELSAD": "Emeryville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3297586.0, "AWATER": 2499006.0, "INTPTLAT": 37.8384729, "INTPTLON": -122.301682 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.301682, 37.8384729 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 349, "felt:has_geometry": true, "felt:h3_index": 644747327971027348, "STATEFP": 6.0, "PLACEFP": 82996.0, "PLACENS": 2412161.0, "GEOID": 682996.0, "NAME": "Vista", "NAMELSAD": "Vista city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48551300.0, "AWATER": 0.0, "INTPTLAT": 33.1896819, "INTPTLON": -117.2385799 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2385799, 33.1896819 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 350, "felt:has_geometry": true, "felt:h3_index": 644722034050507336, "STATEFP": 6.0, "PLACEFP": 50916.0, "PLACENS": 2411238.0, "GEOID": 650916.0, "NAME": "Newark", "NAMELSAD": "Newark city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36051023.0, "AWATER": 60526.0, "INTPTLAT": 37.5042533, "INTPTLON": -122.0319104 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0319104, 37.5042533 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 351, "felt:has_geometry": true, "felt:h3_index": 644721773560687748, "STATEFP": 6.0, "PLACEFP": 68084.0, "PLACENS": 2411794.0, "GEOID": 668084.0, "NAME": "San Leandro", "NAMELSAD": "San Leandro city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34507478.0, "AWATER": 5587445.0, "INTPTLAT": 37.7033683, "INTPTLON": -122.163036 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.163036, 37.7033683 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 352, "felt:has_geometry": true, "felt:h3_index": 644722037096731658, "STATEFP": 6.0, "PLACEFP": 81204.0, "PLACENS": 2412130.0, "GEOID": 681204.0, "NAME": "Union City", "NAMELSAD": "Union City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50240700.0, "AWATER": 0.0, "INTPTLAT": 37.6027593, "INTPTLON": -122.0188397 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0188397, 37.6027593 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 353, "felt:has_geometry": true, "felt:h3_index": 644722034196980939, "STATEFP": 6.0, "PLACEFP": 26000.0, "PLACENS": 2410545.0, "GEOID": 626000.0, "NAME": "Fremont", "NAMELSAD": "Fremont city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 202285909.0, "AWATER": 26263069.0, "INTPTLAT": 37.4944602, "INTPTLON": -121.9411495 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9411495, 37.4944602 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 354, "felt:has_geometry": true, "felt:h3_index": 644721734083250478, "STATEFP": 6.0, "PLACEFP": 50258.0, "PLACENS": 2411209.0, "GEOID": 650258.0, "NAME": "Napa", "NAMELSAD": "Napa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46714150.0, "AWATER": 810079.0, "INTPTLAT": 38.2978718, "INTPTLON": -122.3007407 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3007407, 38.2978718 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 355, "felt:has_geometry": true, "felt:h3_index": 644721741584868253, "STATEFP": 6.0, "PLACEFP": 64140.0, "PLACENS": 2411758.0, "GEOID": 664140.0, "NAME": "St. Helena", "NAMELSAD": "St. Helena city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12838322.0, "AWATER": 327737.0, "INTPTLAT": 38.5128518, "INTPTLON": -122.4680218 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4680218, 38.5128518 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 356, "felt:has_geometry": true, "felt:h3_index": 644747675028637091, "STATEFP": 6.0, "PLACEFP": 38520.0, "PLACENS": 2411544.0, "GEOID": 638520.0, "NAME": "King City", "NAMELSAD": "King City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9833874.0, "AWATER": 342510.0, "INTPTLAT": 36.2162833, "INTPTLON": -121.1319616 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1319616, 36.2162833 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 357, "felt:has_geometry": true, "felt:h3_index": 644747591885081987, "STATEFP": 6.0, "PLACEFP": 86300.0, "PLACENS": 2412299.0, "GEOID": 686300.0, "NAME": "Woodlake", "NAMELSAD": "Woodlake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7379538.0, "AWATER": 1178472.0, "INTPTLAT": 36.4128277, "INTPTLON": -119.1007177 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1007177, 36.4128277 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 358, "felt:has_geometry": true, "felt:h3_index": 644747196022577172, "STATEFP": 6.0, "PLACEFP": 80994.0, "PLACENS": 2412119.0, "GEOID": 680994.0, "NAME": "Twentynine Palms", "NAMELSAD": "Twentynine Palms city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 152157672.0, "AWATER": 0.0, "INTPTLAT": 34.1478175, "INTPTLON": -116.0659586 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.0659586, 34.1478175 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 359, "felt:has_geometry": true, "felt:h3_index": 644747035020499818, "STATEFP": 6.0, "PLACEFP": 81344.0, "PLACENS": 2412137.0, "GEOID": 681344.0, "NAME": "Upland", "NAMELSAD": "Upland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40363418.0, "AWATER": 86983.0, "INTPTLAT": 34.1160732, "INTPTLON": -117.6599224 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6599224, 34.1160732 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 360, "felt:has_geometry": true, "felt:h3_index": 644747024471987290, "STATEFP": 6.0, "PLACEFP": 87042.0, "PLACENS": 2412326.0, "GEOID": 687042.0, "NAME": "Yucaipa", "NAMELSAD": "Yucaipa city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 73188295.0, "AWATER": 0.0, "INTPTLAT": 34.0335819, "INTPTLON": -117.0428976 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0428976, 34.0335819 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 361, "felt:has_geometry": true, "felt:h3_index": 644747198802471755, "STATEFP": 6.0, "PLACEFP": 87056.0, "PLACENS": 2413524.0, "GEOID": 687056.0, "NAME": "Yucca Valley", "NAMELSAD": "Yucca Valley town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103161847.0, "AWATER": 0.0, "INTPTLAT": 34.1233473, "INTPTLON": -116.4215573 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4215573, 34.1233473 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 362, "felt:has_geometry": true, "felt:h3_index": 644719852095185584, "STATEFP": 6.0, "PLACEFP": 55520.0, "PLACENS": 2413111.0, "GEOID": 655520.0, "NAME": "Paradise", "NAMELSAD": "Paradise town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47439306.0, "AWATER": 34214.0, "INTPTLAT": 39.7541919, "INTPTLON": -121.6064 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6064, 39.7541919 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 363, "felt:has_geometry": true, "felt:h3_index": 644747577859302684, "STATEFP": 6.0, "PLACEFP": 16224.0, "PLACENS": 2410227.0, "GEOID": 616224.0, "NAME": "Corcoran", "NAMELSAD": "Corcoran city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19315232.0, "AWATER": 0.0, "INTPTLAT": 36.084057, "INTPTLON": -119.5612683 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5612683, 36.084057 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 364, "felt:has_geometry": true, "felt:h3_index": 644747266452686109, "STATEFP": 6.0, "PLACEFP": 296.0, "PLACENS": 2409663.0, "GEOID": 600296.0, "NAME": "Adelanto", "NAMELSAD": "Adelanto city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 136923866.0, "AWATER": 41151.0, "INTPTLAT": 34.5809017, "INTPTLON": -117.4394577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.4394577, 34.5809017 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 365, "felt:has_geometry": true, "felt:h3_index": 644747024293973236, "STATEFP": 6.0, "PLACEFP": 59962.0, "PLACENS": 2411532.0, "GEOID": 659962.0, "NAME": "Redlands", "NAMELSAD": "Redlands city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 93292256.0, "AWATER": 673021.0, "INTPTLAT": 34.0535056, "INTPTLON": -117.1704758 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1704758, 34.0535056 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 366, "felt:has_geometry": true, "felt:h3_index": 644747274542948770, "STATEFP": 6.0, "PLACEFP": 9780.0, "PLACENS": 2409960.0, "GEOID": 609780.0, "NAME": "California City", "NAMELSAD": "California City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 527395596.0, "AWATER": 174458.0, "INTPTLAT": 35.1465903, "INTPTLON": -117.8693463 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8693463, 35.1465903 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 367, "felt:has_geometry": true, "felt:h3_index": 644747848510120284, "STATEFP": 6.0, "PLACEFP": 77574.0, "PLACENS": 2412026.0, "GEOID": 677574.0, "NAME": "Taft", "NAMELSAD": "Taft city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39552120.0, "AWATER": 0.0, "INTPTLAT": 35.126696, "INTPTLON": -119.4241938 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4241938, 35.126696 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 368, "felt:has_geometry": true, "felt:h3_index": 644747066559863579, "STATEFP": 6.0, "PLACEFP": 21230.0, "PLACENS": 2650584.0, "GEOID": 621230.0, "NAME": "Eastvale", "NAMELSAD": "Eastvale city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32837284.0, "AWATER": 1143505.0, "INTPTLAT": 33.9632744, "INTPTLON": -117.5823688 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5823688, 33.9632744 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 369, "felt:has_geometry": true, "felt:h3_index": 644747054570202468, "STATEFP": 6.0, "PLACEFP": 6434.0, "PLACENS": 2409843.0, "GEOID": 606434.0, "NAME": "Big Bear Lake", "NAMELSAD": "Big Bear Lake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16164304.0, "AWATER": 474774.0, "INTPTLAT": 34.2428884, "INTPTLON": -116.8938931 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8938931, 34.2428884 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 370, "felt:has_geometry": true, "felt:h3_index": 644747022729288045, "STATEFP": 6.0, "PLACEFP": 24680.0, "PLACENS": 2410517.0, "GEOID": 624680.0, "NAME": "Fontana", "NAMELSAD": "Fontana city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 112089027.0, "AWATER": 0.0, "INTPTLAT": 34.109686, "INTPTLON": -117.462888 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.462888, 34.109686 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 371, "felt:has_geometry": true, "felt:h3_index": 644747022998624653, "STATEFP": 6.0, "PLACEFP": 60466.0, "PLACENS": 2410931.0, "GEOID": 660466.0, "NAME": "Rialto", "NAMELSAD": "Rialto city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62397099.0, "AWATER": 0.0, "INTPTLAT": 34.1174193, "INTPTLON": -117.3892148 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3892148, 34.1174193 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 372, "felt:has_geometry": true, "felt:h3_index": 644747299588038765, "STATEFP": 6.0, "PLACEFP": 72506.0, "PLACENS": 2411923.0, "GEOID": 672506.0, "NAME": "Solana Beach", "NAMELSAD": "Solana Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8841642.0, "AWATER": 270081.0, "INTPTLAT": 32.9913002, "INTPTLON": -117.2580617 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2580617, 32.9913002 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 373, "felt:has_geometry": true, "felt:h3_index": 644747058839430387, "STATEFP": 6.0, "PLACEFP": 50076.0, "PLACENS": 2411199.0, "GEOID": 650076.0, "NAME": "Murrieta", "NAMELSAD": "Murrieta city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 86858399.0, "AWATER": 93770.0, "INTPTLAT": 33.5721337, "INTPTLON": -117.1904442 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1904442, 33.5721337 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 374, "felt:has_geometry": true, "felt:h3_index": 644721927938467665, "STATEFP": 6.0, "PLACEFP": 77392.0, "PLACENS": 2412019.0, "GEOID": 677392.0, "NAME": "Sutter Creek", "NAMELSAD": "Sutter Creek city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6988164.0, "AWATER": 0.0, "INTPTLAT": 38.3924453, "INTPTLON": -120.798969 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.798969, 38.3924453 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 375, "felt:has_geometry": true, "felt:h3_index": 644747921741987202, "STATEFP": 6.0, "PLACEFP": 3064.0, "PLACENS": 2409745.0, "GEOID": 603064.0, "NAME": "Atascadero", "NAMELSAD": "Atascadero city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67524872.0, "AWATER": 161112.0, "INTPTLAT": 35.4857179, "INTPTLON": -120.687942 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.687942, 35.4857179 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 376, "felt:has_geometry": true, "felt:h3_index": 644747972085499150, "STATEFP": 6.0, "PLACEFP": 31393.0, "PLACENS": 2410668.0, "GEOID": 631393.0, "NAME": "Grover Beach", "NAMELSAD": "Grover Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5988133.0, "AWATER": 11431.0, "INTPTLAT": 35.1208877, "INTPTLON": -120.6196642 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6196642, 35.1208877 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 377, "felt:has_geometry": true, "felt:h3_index": 644747971776234794, "STATEFP": 6.0, "PLACEFP": 57414.0, "PLACENS": 2411429.0, "GEOID": 657414.0, "NAME": "Pismo Beach", "NAMELSAD": "Pismo Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9057591.0, "AWATER": 25582378.0, "INTPTLAT": 35.1531734, "INTPTLON": -120.6738743 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6738743, 35.1531734 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 378, "felt:has_geometry": true, "felt:h3_index": 644747972100843614, "STATEFP": 6.0, "PLACEFP": 2868.0, "PLACENS": 2409734.0, "GEOID": 602868.0, "NAME": "Arroyo Grande", "NAMELSAD": "Arroyo Grande city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15382199.0, "AWATER": 0.0, "INTPTLAT": 35.1241492, "INTPTLON": -120.5845327 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5845327, 35.1241492 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 379, "felt:has_geometry": true, "felt:h3_index": 644745479806012125, "STATEFP": 6.0, "PLACEFP": 73108.0, "PLACENS": 2411938.0, "GEOID": 673108.0, "NAME": "South Lake Tahoe", "NAMELSAD": "South Lake Tahoe city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26075509.0, "AWATER": 742938.0, "INTPTLAT": 38.9282184, "INTPTLON": -119.9809998 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.9809998, 38.9282184 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 380, "felt:has_geometry": true, "felt:h3_index": 644747818578917681, "STATEFP": 6.0, "PLACEFP": 14218.0, "PLACENS": 2409488.0, "GEOID": 614218.0, "NAME": "Clovis", "NAMELSAD": "Clovis city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 66957051.0, "AWATER": 309836.0, "INTPTLAT": 36.8289665, "INTPTLON": -119.6849217 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6849217, 36.8289665 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 381, "felt:has_geometry": true, "felt:h3_index": 644747818899249181, "STATEFP": 6.0, "PLACEFP": 27000.0, "PLACENS": 2410546.0, "GEOID": 627000.0, "NAME": "Fresno", "NAMELSAD": "Fresno city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 299967554.0, "AWATER": 3127480.0, "INTPTLAT": 36.7826843, "INTPTLON": -119.7933595 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7933595, 36.7826843 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 382, "felt:has_geometry": true, "felt:h3_index": 644721974489566092, "STATEFP": 6.0, "PLACEFP": 13945.0, "PLACENS": 2409479.0, "GEOID": 613945.0, "NAME": "Clearlake", "NAMELSAD": "Clearlake city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26235110.0, "AWATER": 1167608.0, "INTPTLAT": 38.9600452, "INTPTLON": -122.6332316 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6332316, 38.9600452 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 383, "felt:has_geometry": true, "felt:h3_index": 644722177498180508, "STATEFP": 6.0, "PLACEFP": 2112.0, "PLACENS": 2409709.0, "GEOID": 602112.0, "NAME": "Angels", "NAMELSAD": "Angels city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9407811.0, "AWATER": 12740.0, "INTPTLAT": 38.0710375, "INTPTLON": -120.5517286 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5517286, 38.0710375 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 384, "felt:has_geometry": true, "felt:h3_index": 644719716002435619, "STATEFP": 6.0, "PLACEFP": 1444.0, "PLACENS": 2409688.0, "GEOID": 601444.0, "NAME": "Alturas", "NAMELSAD": "Alturas city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7345639.0, "AWATER": 46987.0, "INTPTLAT": 41.4891359, "INTPTLON": -120.5512862 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5512862, 41.4891359 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 385, "felt:has_geometry": true, "felt:h3_index": 644721880543344883, "STATEFP": 6.0, "PLACEFP": 86972.0, "PLACENS": 2412325.0, "GEOID": 686972.0, "NAME": "Yuba City", "NAMELSAD": "Yuba City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39703338.0, "AWATER": 201005.0, "INTPTLAT": 39.1338507, "INTPTLON": -121.6390282 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6390282, 39.1338507 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 386, "felt:has_geometry": true, "felt:h3_index": 644721876382532801, "STATEFP": 6.0, "PLACEFP": 24638.0, "PLACENS": 2410516.0, "GEOID": 624638.0, "NAME": "Folsom", "NAMELSAD": "Folsom city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 72210787.0, "AWATER": 5879392.0, "INTPTLAT": 38.6665966, "INTPTLON": -121.1416355 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1416355, 38.6665966 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 387, "felt:has_geometry": true, "felt:h3_index": 644721754442474178, "STATEFP": 6.0, "PLACEFP": 36882.0, "PLACENS": 2410122.0, "GEOID": 636882.0, "NAME": "Isleton", "NAMELSAD": "Isleton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1138589.0, "AWATER": 133509.0, "INTPTLAT": 38.161252, "INTPTLON": -121.6049577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6049577, 38.161252 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 388, "felt:has_geometry": true, "felt:h3_index": 644721908446346637, "STATEFP": 6.0, "PLACEFP": 59444.0, "PLACENS": 2411513.0, "GEOID": 659444.0, "NAME": "Rancho Cordova", "NAMELSAD": "Rancho Cordova city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89533865.0, "AWATER": 795317.0, "INTPTLAT": 38.5770789, "INTPTLON": -121.2361872 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2361872, 38.5770789 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 389, "felt:has_geometry": true, "felt:h3_index": 644737842555603587, "STATEFP": 6.0, "PLACEFP": 48872.0, "PLACENS": 2411145.0, "GEOID": 648872.0, "NAME": "Monterey", "NAMELSAD": "Monterey city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22390414.0, "AWATER": 9365025.0, "INTPTLAT": 36.6011932, "INTPTLON": -121.8831098 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8831098, 36.6011932 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 390, "felt:has_geometry": true, "felt:h3_index": 644721733365930889, "STATEFP": 6.0, "PLACEFP": 1640.0, "PLACENS": 2409695.0, "GEOID": 601640.0, "NAME": "American Canyon", "NAMELSAD": "American Canyon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15780247.0, "AWATER": 102525.0, "INTPTLAT": 38.1790331, "INTPTLON": -122.2596023 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2596023, 38.1790331 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 391, "felt:has_geometry": true, "felt:h3_index": 644721745046755010, "STATEFP": 6.0, "PLACEFP": 9892.0, "PLACENS": 2409963.0, "GEOID": 609892.0, "NAME": "Calistoga", "NAMELSAD": "Calistoga city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6673453.0, "AWATER": 46827.0, "INTPTLAT": 38.5814083, "INTPTLON": -122.5826961 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5826961, 38.5814083 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 392, "felt:has_geometry": true, "felt:h3_index": 644721747833575956, "STATEFP": 6.0, "PLACEFP": 86930.0, "PLACENS": 2412323.0, "GEOID": 686930.0, "NAME": "Yountville", "NAMELSAD": "Yountville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3851793.0, "AWATER": 6876.0, "INTPTLAT": 38.3935118, "INTPTLON": -122.3655355 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3655355, 38.3935118 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 393, "felt:has_geometry": true, "felt:h3_index": 644737351546963468, "STATEFP": 6.0, "PLACEFP": 8758.0, "PLACENS": 2409931.0, "GEOID": 608758.0, "NAME": "Buellton", "NAMELSAD": "Buellton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4097750.0, "AWATER": 1684.0, "INTPTLAT": 34.6154975, "INTPTLON": -120.1942368 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1942368, 34.6154975 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 394, "felt:has_geometry": true, "felt:h3_index": 644721784669758060, "STATEFP": 6.0, "PLACEFP": 2252.0, "PLACENS": 2409715.0, "GEOID": 602252.0, "NAME": "Antioch", "NAMELSAD": "Antioch city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75552859.0, "AWATER": 1995937.0, "INTPTLAT": 37.978336, "INTPTLON": -121.7960638 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7960638, 37.978336 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 395, "felt:has_geometry": true, "felt:h3_index": 644721785309273326, "STATEFP": 6.0, "PLACEFP": 16000.0, "PLACENS": 2410214.0, "GEOID": 616000.0, "NAME": "Concord", "NAMELSAD": "Concord city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79148766.0, "AWATER": 0.0, "INTPTLAT": 37.972186, "INTPTLON": -122.0015986 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0015986, 37.972186 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 396, "felt:has_geometry": true, "felt:h3_index": 644721789707702597, "STATEFP": 6.0, "PLACEFP": 17988.0, "PLACENS": 2412403.0, "GEOID": 617988.0, "NAME": "Danville", "NAMELSAD": "Danville town", "LSAD": 43.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46821256.0, "AWATER": 0.0, "INTPTLAT": 37.8121416, "INTPTLON": -121.9698235 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9698235, 37.8121416 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 397, "felt:has_geometry": true, "felt:h3_index": 644721737833908141, "STATEFP": 6.0, "PLACEFP": 46114.0, "PLACENS": 2411045.0, "GEOID": 646114.0, "NAME": "Martinez", "NAMELSAD": "Martinez city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32744877.0, "AWATER": 2607776.0, "INTPTLAT": 37.9981157, "INTPTLON": -122.1144193 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1144193, 37.9981157 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 398, "felt:has_geometry": true, "felt:h3_index": 644721788008285010, "STATEFP": 6.0, "PLACEFP": 57456.0, "PLACENS": 2411430.0, "GEOID": 657456.0, "NAME": "Pittsburg", "NAMELSAD": "Pittsburg city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45780277.0, "AWATER": 5359381.0, "INTPTLAT": 38.0167706, "INTPTLON": -121.8969477 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8969477, 38.0167706 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 399, "felt:has_geometry": true, "felt:h3_index": 644721785988555057, "STATEFP": 6.0, "PLACEFP": 57764.0, "PLACENS": 2411439.0, "GEOID": 657764.0, "NAME": "Pleasant Hill", "NAMELSAD": "Pleasant Hill city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18324535.0, "AWATER": 3158.0, "INTPTLAT": 37.9541635, "INTPTLON": -122.0757723 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0757723, 37.9541635 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 400, "felt:has_geometry": true, "felt:h3_index": 644721790516054444, "STATEFP": 6.0, "PLACEFP": 68378.0, "PLACENS": 2411805.0, "GEOID": 668378.0, "NAME": "San Ramon", "NAMELSAD": "San Ramon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51953230.0, "AWATER": 88389.0, "INTPTLAT": 37.7652582, "INTPTLON": -121.9319874 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9319874, 37.7652582 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 401, "felt:has_geometry": true, "felt:h3_index": 644721785930607182, "STATEFP": 6.0, "PLACEFP": 83346.0, "PLACENS": 2412174.0, "GEOID": 683346.0, "NAME": "Walnut Creek", "NAMELSAD": "Walnut Creek city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51179061.0, "AWATER": 31195.0, "INTPTLAT": 37.902666, "INTPTLON": -122.040479 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.040479, 37.902666 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 402, "felt:has_geometry": true, "felt:h3_index": 644737292909635118, "STATEFP": 6.0, "PLACEFP": 11446.0, "PLACENS": 2409990.0, "GEOID": 611446.0, "NAME": "Carpinteria", "NAMELSAD": "Carpinteria city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6704026.0, "AWATER": 17313119.0, "INTPTLAT": 34.385234, "INTPTLON": -119.5007588 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5007588, 34.385234 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 403, "felt:has_geometry": true, "felt:h3_index": 644737361373050436, "STATEFP": 6.0, "PLACEFP": 31414.0, "PLACENS": 2410672.0, "GEOID": 631414.0, "NAME": "Guadalupe", "NAMELSAD": "Guadalupe city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3394103.0, "AWATER": 10948.0, "INTPTLAT": 34.9649289, "INTPTLON": -120.5731271 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5731271, 34.9649289 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 404, "felt:has_geometry": true, "felt:h3_index": 644747603618660723, "STATEFP": 6.0, "PLACEFP": 19318.0, "PLACENS": 2410342.0, "GEOID": 619318.0, "NAME": "Dinuba", "NAMELSAD": "Dinuba city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16892332.0, "AWATER": 0.0, "INTPTLAT": 36.5453259, "INTPTLON": -119.3986439 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3986439, 36.5453259 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 405, "felt:has_geometry": true, "felt:h3_index": 644747588809938028, "STATEFP": 6.0, "PLACEFP": 23126.0, "PLACENS": 2410472.0, "GEOID": 623126.0, "NAME": "Exeter", "NAMELSAD": "Exeter city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6373810.0, "AWATER": 0.0, "INTPTLAT": 36.2940725, "INTPTLON": -119.1459536 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1459536, 36.2940725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 406, "felt:has_geometry": true, "felt:h3_index": 644747588564558930, "STATEFP": 6.0, "PLACEFP": 23616.0, "PLACENS": 2410485.0, "GEOID": 623616.0, "NAME": "Farmersville", "NAMELSAD": "Farmersville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5860074.0, "AWATER": 0.0, "INTPTLAT": 36.3047394, "INTPTLON": -119.2086052 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2086052, 36.3047394 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 407, "felt:has_geometry": true, "felt:h3_index": 644747589237869779, "STATEFP": 6.0, "PLACEFP": 41712.0, "PLACENS": 2410839.0, "GEOID": 641712.0, "NAME": "Lindsay", "NAMELSAD": "Lindsay city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7055435.0, "AWATER": 0.0, "INTPTLAT": 36.2081916, "INTPTLON": -119.0897031 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0897031, 36.2081916 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 408, "felt:has_geometry": true, "felt:h3_index": 644722066089956558, "STATEFP": 6.0, "PLACEFP": 64224.0, "PLACENS": 2411768.0, "GEOID": 664224.0, "NAME": "Salinas", "NAMELSAD": "Salinas city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60903234.0, "AWATER": 83122.0, "INTPTLAT": 36.6902168, "INTPTLON": -121.6337934 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6337934, 36.6902168 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 409, "felt:has_geometry": true, "felt:h3_index": 644747125723925686, "STATEFP": 6.0, "PLACEFP": 394.0, "PLACENS": 2409666.0, "GEOID": 600394.0, "NAME": "Agoura Hills", "NAMELSAD": "Agoura Hills city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20191601.0, "AWATER": 55687.0, "INTPTLAT": 34.1489422, "INTPTLON": -118.7639301 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7639301, 34.1489422 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 410, "felt:has_geometry": true, "felt:h3_index": 644747392977549932, "STATEFP": 6.0, "PLACEFP": 2896.0, "PLACENS": 2409735.0, "GEOID": 602896.0, "NAME": "Artesia", "NAMELSAD": "Artesia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4196986.0, "AWATER": 0.0, "INTPTLAT": 33.8675912, "INTPTLON": -118.0806338 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0806338, 33.8675912 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 411, "felt:has_geometry": true, "felt:h3_index": 644722040511955312, "STATEFP": 6.0, "PLACEFP": 47766.0, "PLACENS": 2411113.0, "GEOID": 647766.0, "NAME": "Milpitas", "NAMELSAD": "Milpitas city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34915447.0, "AWATER": 99377.0, "INTPTLAT": 37.4331408, "INTPTLON": -121.8909237 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8909237, 37.4331408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 412, "felt:has_geometry": true, "felt:h3_index": 644747300151053218, "STATEFP": 6.0, "PLACEFP": 18506.0, "PLACENS": 2410314.0, "GEOID": 618506.0, "NAME": "Del Mar", "NAMELSAD": "Del Mar city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4446743.0, "AWATER": 141302.0, "INTPTLAT": 32.9639446, "INTPTLON": -117.2598039 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2598039, 32.9639446 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 413, "felt:has_geometry": true, "felt:h3_index": 644721956063023726, "STATEFP": 6.0, "PLACEFP": 6560.0, "PLACENS": 2409848.0, "GEOID": 606560.0, "NAME": "Biggs", "NAMELSAD": "Biggs city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2317099.0, "AWATER": 0.0, "INTPTLAT": 39.4101867, "INTPTLON": -121.7133215 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7133215, 39.4101867 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 414, "felt:has_geometry": true, "felt:h3_index": 644721956836683122, "STATEFP": 6.0, "PLACEFP": 31260.0, "PLACENS": 2410665.0, "GEOID": 631260.0, "NAME": "Gridley", "NAMELSAD": "Gridley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5404056.0, "AWATER": 0.0, "INTPTLAT": 39.3622287, "INTPTLON": -121.6970797 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6970797, 39.3622287 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 415, "felt:has_geometry": true, "felt:h3_index": 644747371654271030, "STATEFP": 6.0, "PLACEFP": 3274.0, "PLACENS": 2409763.0, "GEOID": 603274.0, "NAME": "Avalon", "NAMELSAD": "Avalon city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7473920.0, "AWATER": 12349954.0, "INTPTLAT": 33.3433354, "INTPTLON": -118.3176149 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3176149, 33.3433354 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 416, "felt:has_geometry": true, "felt:h3_index": 644747393217452248, "STATEFP": 6.0, "PLACEFP": 4982.0, "PLACENS": 2409822.0, "GEOID": 604982.0, "NAME": "Bellflower", "NAMELSAD": "Bellflower city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15843604.0, "AWATER": 130868.0, "INTPTLAT": 33.8878214, "INTPTLON": -118.1272504 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1272504, 33.8878214 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 417, "felt:has_geometry": true, "felt:h3_index": 644747146635948588, "STATEFP": 6.0, "PLACEFP": 4996.0, "PLACENS": 2409817.0, "GEOID": 604996.0, "NAME": "Bell Gardens", "NAMELSAD": "Bell Gardens city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6368687.0, "AWATER": 14400.0, "INTPTLAT": 33.9643785, "INTPTLON": -118.1544369 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1544369, 33.9643785 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 418, "felt:has_geometry": true, "felt:h3_index": 644747036298516076, "STATEFP": 6.0, "PLACEFP": 13756.0, "PLACENS": 2409465.0, "GEOID": 613756.0, "NAME": "Claremont", "NAMELSAD": "Claremont city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34537069.0, "AWATER": 352454.0, "INTPTLAT": 34.1249246, "INTPTLON": -117.7139226 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7139226, 34.1249246 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 419, "felt:has_geometry": true, "felt:h3_index": 644747146793199956, "STATEFP": 6.0, "PLACEFP": 14974.0, "PLACENS": 2410209.0, "GEOID": 614974.0, "NAME": "Commerce", "NAMELSAD": "Commerce city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16923940.0, "AWATER": 3306.0, "INTPTLAT": 33.9945234, "INTPTLON": -118.1499518 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1499518, 33.9945234 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 420, "felt:has_geometry": true, "felt:h3_index": 644747394359435626, "STATEFP": 6.0, "PLACEFP": 17498.0, "PLACENS": 2410272.0, "GEOID": 617498.0, "NAME": "Cudahy", "NAMELSAD": "Cudahy city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3046449.0, "AWATER": 131179.0, "INTPTLAT": 33.9640029, "INTPTLON": -118.1825614 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1825614, 33.9640029 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 421, "felt:has_geometry": true, "felt:h3_index": 644747148924037018, "STATEFP": 6.0, "PLACEFP": 22230.0, "PLACENS": 2410413.0, "GEOID": 622230.0, "NAME": "El Monte", "NAMELSAD": "El Monte city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24752904.0, "AWATER": 221652.0, "INTPTLAT": 34.0746329, "INTPTLON": -118.0291358 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0291358, 34.0746329 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 422, "felt:has_geometry": true, "felt:h3_index": 644737351347285339, "STATEFP": 6.0, "PLACEFP": 72576.0, "PLACENS": 2411925.0, "GEOID": 672576.0, "NAME": "Solvang", "NAMELSAD": "Solvang city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6281307.0, "AWATER": 3053.0, "INTPTLAT": 34.5937578, "INTPTLON": -120.1396803 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1396803, 34.5937578 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 423, "felt:has_geometry": true, "felt:h3_index": 644747885459913905, "STATEFP": 6.0, "PLACEFP": 30378.0, "PLACENS": 2015546.0, "GEOID": 630378.0, "NAME": "Goleta", "NAMELSAD": "Goleta city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20339515.0, "AWATER": 187022.0, "INTPTLAT": 34.4354411, "INTPTLON": -119.8589464 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8589464, 34.4354411 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 424, "felt:has_geometry": true, "felt:h3_index": 644737350721453443, "STATEFP": 6.0, "PLACEFP": 42524.0, "PLACENS": 2410860.0, "GEOID": 642524.0, "NAME": "Lompoc", "NAMELSAD": "Lompoc city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30103860.0, "AWATER": 201559.0, "INTPTLAT": 34.6626889, "INTPTLON": -120.470837 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.470837, 34.6626889 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 425, "felt:has_geometry": true, "felt:h3_index": 644737290365243523, "STATEFP": 6.0, "PLACEFP": 69070.0, "PLACENS": 2411815.0, "GEOID": 669070.0, "NAME": "Santa Barbara", "NAMELSAD": "Santa Barbara city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50517342.0, "AWATER": 58271494.0, "INTPTLAT": 34.4006009, "INTPTLON": -119.7129545 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7129545, 34.4006009 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 426, "felt:has_geometry": true, "felt:h3_index": 644737360445248156, "STATEFP": 6.0, "PLACEFP": 69196.0, "PLACENS": 2411824.0, "GEOID": 669196.0, "NAME": "Santa Maria", "NAMELSAD": "Santa Maria city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59078450.0, "AWATER": 1575636.0, "INTPTLAT": 34.9330764, "INTPTLON": -120.443559 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.443559, 34.9330764 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 427, "felt:has_geometry": true, "felt:h3_index": 644745455174562523, "STATEFP": 6.0, "PLACEFP": 44364.0, "PLACENS": 2410891.0, "GEOID": 644364.0, "NAME": "Loyalton", "NAMELSAD": "Loyalton city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 920711.0, "AWATER": 0.0, "INTPTLAT": 39.6768545, "INTPTLON": -120.2448111 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2448111, 39.6768545 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 428, "felt:has_geometry": true, "felt:h3_index": 644747492590805858, "STATEFP": 6.0, "PLACEFP": 8058.0, "PLACENS": 2409893.0, "GEOID": 608058.0, "NAME": "Brawley", "NAMELSAD": "Brawley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21024324.0, "AWATER": 0.0, "INTPTLAT": 32.9783547, "INTPTLON": -115.5286723 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.5286723, 32.9783547 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 429, "felt:has_geometry": true, "felt:h3_index": 644747392312425654, "STATEFP": 6.0, "PLACEFP": 22412.0, "PLACENS": 2410417.0, "GEOID": 622412.0, "NAME": "El Segundo", "NAMELSAD": "El Segundo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14113054.0, "AWATER": 13722008.0, "INTPTLAT": 33.9103673, "INTPTLON": -118.4250795 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4250795, 33.9103673 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 430, "felt:has_geometry": true, "felt:h3_index": 644747393795185462, "STATEFP": 6.0, "PLACEFP": 32506.0, "PLACENS": 2410716.0, "GEOID": 632506.0, "NAME": "Hawaiian Gardens", "NAMELSAD": "Hawaiian Gardens city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2447971.0, "AWATER": 30331.0, "INTPTLAT": 33.8304821, "INTPTLON": -118.0734509 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0734509, 33.8304821 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 431, "felt:has_geometry": true, "felt:h3_index": 644747391939978161, "STATEFP": 6.0, "PLACEFP": 33364.0, "PLACENS": 2410749.0, "GEOID": 633364.0, "NAME": "Hermosa Beach", "NAMELSAD": "Hermosa Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3692737.0, "AWATER": 12981958.0, "INTPTLAT": 33.8698189, "INTPTLON": -118.4052955 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4052955, 33.8698189 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 432, "felt:has_geometry": true, "felt:h3_index": 644747124724687755, "STATEFP": 6.0, "PLACEFP": 33518.0, "PLACENS": 2410756.0, "GEOID": 633518.0, "NAME": "Hidden Hills", "NAMELSAD": "Hidden Hills city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4372993.0, "AWATER": 0.0, "INTPTLAT": 34.1637443, "INTPTLON": -118.6612099 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6612099, 34.1637443 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 433, "felt:has_geometry": true, "felt:h3_index": 644721897520043152, "STATEFP": 6.0, "PLACEFP": 30798.0, "PLACENS": 2410651.0, "GEOID": 630798.0, "NAME": "Grass Valley", "NAMELSAD": "Grass Valley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13765037.0, "AWATER": 0.0, "INTPTLAT": 39.2237374, "INTPTLON": -121.052455 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.052455, 39.2237374 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 434, "felt:has_geometry": true, "felt:h3_index": 644747142494357794, "STATEFP": 6.0, "PLACEFP": 56000.0, "PLACENS": 2411379.0, "GEOID": 656000.0, "NAME": "Pasadena", "NAMELSAD": "Pasadena city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59466031.0, "AWATER": 366889.0, "INTPTLAT": 34.1606016, "INTPTLON": -118.1379537 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1379537, 34.1606016 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 435, "felt:has_geometry": true, "felt:h3_index": 644747131694930644, "STATEFP": 6.0, "PLACEFP": 70000.0, "PLACENS": 2411825.0, "GEOID": 670000.0, "NAME": "Santa Monica", "NAMELSAD": "Santa Monica city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21779158.0, "AWATER": 22696935.0, "INTPTLAT": 34.0109107, "INTPTLON": -118.4982446 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4982446, 34.0109107 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 436, "felt:has_geometry": true, "felt:h3_index": 645287686261300440, "STATEFP": 6.0, "PLACEFP": 9710.0, "PLACENS": 2409958.0, "GEOID": 609710.0, "NAME": "Calexico", "NAMELSAD": "Calexico city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22324358.0, "AWATER": 0.0, "INTPTLAT": 32.6849313, "INTPTLON": -115.4943572 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.4943572, 32.6849313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 437, "felt:has_geometry": true, "felt:h3_index": 645287682155536658, "STATEFP": 6.0, "PLACEFP": 21782.0, "PLACENS": 2410409.0, "GEOID": 621782.0, "NAME": "El Centro", "NAMELSAD": "El Centro city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31280475.0, "AWATER": 45518.0, "INTPTLAT": 32.7863511, "INTPTLON": -115.5602059 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.5602059, 32.7863511 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 438, "felt:has_geometry": true, "felt:h3_index": 645287681026633739, "STATEFP": 6.0, "PLACEFP": 34246.0, "PLACENS": 2410780.0, "GEOID": 634246.0, "NAME": "Holtville", "NAMELSAD": "Holtville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2988033.0, "AWATER": 11902.0, "INTPTLAT": 32.8137812, "INTPTLON": -115.3783188 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.3783188, 32.8137812 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 439, "felt:has_geometry": true, "felt:h3_index": 645287681701005467, "STATEFP": 6.0, "PLACEFP": 36280.0, "PLACENS": 2410097.0, "GEOID": 636280.0, "NAME": "Imperial", "NAMELSAD": "Imperial city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16536838.0, "AWATER": 0.0, "INTPTLAT": 32.8388748, "INTPTLON": -115.5718415 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.5718415, 32.8388748 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 440, "felt:has_geometry": true, "felt:h3_index": 644747492481485891, "STATEFP": 6.0, "PLACEFP": 84606.0, "PLACENS": 2412239.0, "GEOID": 684606.0, "NAME": "Westmorland", "NAMELSAD": "Westmorland city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1528294.0, "AWATER": 0.0, "INTPTLAT": 33.038922, "INTPTLON": -115.6223136 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.6223136, 33.038922 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 441, "felt:has_geometry": true, "felt:h3_index": 644721876263162129, "STATEFP": 6.0, "PLACEFP": 13588.0, "PLACENS": 2409464.0, "GEOID": 613588.0, "NAME": "Citrus Heights", "NAMELSAD": "Citrus Heights city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36820409.0, "AWATER": 0.0, "INTPTLAT": 38.6948103, "INTPTLON": -121.2879525 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2879525, 38.6948103 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 442, "felt:has_geometry": true, "felt:h3_index": 644721906196764361, "STATEFP": 6.0, "PLACEFP": 22020.0, "PLACENS": 2410425.0, "GEOID": 622020.0, "NAME": "Elk Grove", "NAMELSAD": "Elk Grove city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110336008.0, "AWATER": 533192.0, "INTPTLAT": 38.4146207, "INTPTLON": -121.3849614 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3849614, 38.4146207 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 443, "felt:has_geometry": true, "felt:h3_index": 644721910760879467, "STATEFP": 6.0, "PLACEFP": 28112.0, "PLACENS": 2410563.0, "GEOID": 628112.0, "NAME": "Galt", "NAMELSAD": "Galt city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18508749.0, "AWATER": 34676.0, "INTPTLAT": 38.2703894, "INTPTLON": -121.3005957 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3005957, 38.2703894 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 444, "felt:has_geometry": true, "felt:h3_index": 644721917732948493, "STATEFP": 6.0, "PLACEFP": 64000.0, "PLACENS": 2411751.0, "GEOID": 664000.0, "NAME": "Sacramento", "NAMELSAD": "Sacramento city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 255491817.0, "AWATER": 5413141.0, "INTPTLAT": 38.5676936, "INTPTLON": -121.4681605 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4681605, 38.5676936 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 445, "felt:has_geometry": true, "felt:h3_index": 644747654188651234, "STATEFP": 6.0, "PLACEFP": 34120.0, "PLACENS": 2410778.0, "GEOID": 634120.0, "NAME": "Hollister", "NAMELSAD": "Hollister city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20622323.0, "AWATER": 0.0, "INTPTLAT": 36.8555992, "INTPTLON": -121.3985978 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3985978, 36.8555992 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 446, "felt:has_geometry": true, "felt:h3_index": 644747393020254636, "STATEFP": 6.0, "PLACEFP": 12552.0, "PLACENS": 2409431.0, "GEOID": 612552.0, "NAME": "Cerritos", "NAMELSAD": "Cerritos city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22602736.0, "AWATER": 338649.0, "INTPTLAT": 33.867745, "INTPTLON": -118.069471 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.069471, 33.867745 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 447, "felt:has_geometry": true, "felt:h3_index": 644747149015418564, "STATEFP": 6.0, "PLACEFP": 16742.0, "PLACENS": 2410251.0, "GEOID": 616742.0, "NAME": "Covina", "NAMELSAD": "Covina city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18220783.0, "AWATER": 32773.0, "INTPTLAT": 34.0904746, "INTPTLON": -117.8821434 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8821434, 34.0904746 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 448, "felt:has_geometry": true, "felt:h3_index": 644747391035825066, "STATEFP": 6.0, "PLACEFP": 42468.0, "PLACENS": 2410859.0, "GEOID": 642468.0, "NAME": "Lomita", "NAMELSAD": "Lomita city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4952726.0, "AWATER": 0.0, "INTPTLAT": 33.7933059, "INTPTLON": -118.3174546 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3174546, 33.7933059 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 449, "felt:has_geometry": true, "felt:h3_index": 644747392390463787, "STATEFP": 6.0, "PLACEFP": 45400.0, "PLACENS": 2411020.0, "GEOID": 645400.0, "NAME": "Manhattan Beach", "NAMELSAD": "Manhattan Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10189493.0, "AWATER": 16389932.0, "INTPTLAT": 33.9008699, "INTPTLON": -118.4207152 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4207152, 33.9008699 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 450, "felt:has_geometry": true, "felt:h3_index": 644747146780877936, "STATEFP": 6.0, "PLACEFP": 46492.0, "PLACENS": 2411054.0, "GEOID": 646492.0, "NAME": "Maywood", "NAMELSAD": "Maywood city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3034744.0, "AWATER": 0.0, "INTPTLAT": 33.9885475, "INTPTLON": -118.1877074 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1877074, 33.9885475 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 451, "felt:has_geometry": true, "felt:h3_index": 644747148296010002, "STATEFP": 6.0, "PLACEFP": 48648.0, "PLACENS": 2411138.0, "GEOID": 648648.0, "NAME": "Monrovia", "NAMELSAD": "Monrovia city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35306882.0, "AWATER": 282054.0, "INTPTLAT": 34.1639844, "INTPTLON": -117.9846459 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9846459, 34.1639844 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 452, "felt:has_geometry": true, "felt:h3_index": 644747067814318305, "STATEFP": 6.0, "PLACEFP": 66070.0, "PLACENS": 2411784.0, "GEOID": 666070.0, "NAME": "San Dimas", "NAMELSAD": "San Dimas city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38937385.0, "AWATER": 1009641.0, "INTPTLAT": 34.1079574, "INTPTLON": -117.8085286 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8085286, 34.1079574 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 453, "felt:has_geometry": true, "felt:h3_index": 644747917244440605, "STATEFP": 6.0, "PLACEFP": 22300.0, "PLACENS": 2410415.0, "GEOID": 622300.0, "NAME": "El Paso de Robles (Paso Robles)", "NAMELSAD": "El Paso de Robles (Paso Robles) city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51579271.0, "AWATER": 29864.0, "INTPTLAT": 35.6285131, "INTPTLON": -120.6503559 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6503559, 35.6285131 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 454, "felt:has_geometry": true, "felt:h3_index": 644747919127909449, "STATEFP": 6.0, "PLACEFP": 49362.0, "PLACENS": 2411169.0, "GEOID": 649362.0, "NAME": "Morro Bay", "NAMELSAD": "Morro Bay city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13826501.0, "AWATER": 12914764.0, "INTPTLAT": 35.3667732, "INTPTLON": -120.8682895 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8682895, 35.3667732 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 455, "felt:has_geometry": true, "felt:h3_index": 644747967536964293, "STATEFP": 6.0, "PLACEFP": 68154.0, "PLACENS": 2411796.0, "GEOID": 668154.0, "NAME": "San Luis Obispo", "NAMELSAD": "San Luis Obispo city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34883862.0, "AWATER": 380513.0, "INTPTLAT": 35.2661952, "INTPTLON": -120.6684376 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6684376, 35.2661952 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 456, "felt:has_geometry": true, "felt:h3_index": 644721786404046512, "STATEFP": 6.0, "PLACEFP": 53070.0, "PLACENS": 2411294.0, "GEOID": 653070.0, "NAME": "Oakley", "NAMELSAD": "Oakley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 41091677.0, "AWATER": 789638.0, "INTPTLAT": 37.9961485, "INTPTLON": -121.6936235 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6936235, 37.9961485 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 457, "felt:has_geometry": true, "felt:h3_index": 644747615712534694, "STATEFP": 6.0, "PLACEFP": 14274.0, "PLACENS": 2409495.0, "GEOID": 614274.0, "NAME": "Coalinga", "NAMELSAD": "Coalinga city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17734580.0, "AWATER": 79727.0, "INTPTLAT": 36.1330557, "INTPTLON": -120.3390286 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3390286, 36.1330557 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 458, "felt:has_geometry": true, "felt:h3_index": 644747660894821784, "STATEFP": 6.0, "PLACEFP": 24134.0, "PLACENS": 2410507.0, "GEOID": 624134.0, "NAME": "Firebaugh", "NAMELSAD": "Firebaugh city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9109030.0, "AWATER": 143103.0, "INTPTLAT": 36.8537446, "INTPTLON": -120.4537457 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4537457, 36.8537446 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 459, "felt:has_geometry": true, "felt:h3_index": 644747598104416946, "STATEFP": 6.0, "PLACEFP": 25436.0, "PLACENS": 2410538.0, "GEOID": 625436.0, "NAME": "Fowler", "NAMELSAD": "Fowler city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6924931.0, "AWATER": 0.0, "INTPTLAT": 36.6241197, "INTPTLON": -119.6746987 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6746987, 36.6241197 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 460, "felt:has_geometry": true, "felt:h3_index": 644747597079579664, "STATEFP": 6.0, "PLACEFP": 38562.0, "PLACENS": 2411548.0, "GEOID": 638562.0, "NAME": "Kingsburg", "NAMELSAD": "Kingsburg city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9627176.0, "AWATER": 0.0, "INTPTLAT": 36.5251925, "INTPTLON": -119.5665645 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5665645, 36.5251925 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 461, "felt:has_geometry": true, "felt:h3_index": 644721927117279756, "STATEFP": 6.0, "PLACEFP": 1514.0, "PLACENS": 2409693.0, "GEOID": 601514.0, "NAME": "Amador City", "NAMELSAD": "Amador City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 801747.0, "AWATER": 0.0, "INTPTLAT": 38.4189949, "INTPTLON": -120.8232598 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8232598, 38.4189949 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 462, "felt:has_geometry": true, "felt:h3_index": 644721911287721171, "STATEFP": 6.0, "PLACEFP": 36672.0, "PLACENS": 2410110.0, "GEOID": 636672.0, "NAME": "Ione", "NAMELSAD": "Ione city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11861672.0, "AWATER": 118011.0, "INTPTLAT": 38.3628615, "INTPTLON": -120.9476845 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9476845, 38.3628615 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 463, "felt:has_geometry": true, "felt:h3_index": 644722174407075204, "STATEFP": 6.0, "PLACEFP": 36980.0, "PLACENS": 2410128.0, "GEOID": 636980.0, "NAME": "Jackson", "NAMELSAD": "Jackson city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9277425.0, "AWATER": 0.0, "INTPTLAT": 38.348485, "INTPTLON": -120.772821 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.772821, 38.348485 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 464, "felt:has_geometry": true, "felt:h3_index": 644721927284803904, "STATEFP": 6.0, "PLACEFP": 57834.0, "PLACENS": 2411446.0, "GEOID": 657834.0, "NAME": "Plymouth", "NAMELSAD": "Plymouth city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6860201.0, "AWATER": 32811.0, "INTPTLAT": 38.4717408, "INTPTLON": -120.857194 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.857194, 38.4717408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 465, "felt:has_geometry": true, "felt:h3_index": 644747657149768426, "STATEFP": 6.0, "PLACEFP": 46828.0, "PLACENS": 2411078.0, "GEOID": 646828.0, "NAME": "Mendota", "NAMELSAD": "Mendota city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8788278.0, "AWATER": 8333.0, "INTPTLAT": 36.7575951, "INTPTLON": -120.3804737 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3804737, 36.7575951 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 466, "felt:has_geometry": true, "felt:h3_index": 644747599237693969, "STATEFP": 6.0, "PLACEFP": 54008.0, "PLACENS": 2411327.0, "GEOID": 654008.0, "NAME": "Orange Cove", "NAMELSAD": "Orange Cove city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4640753.0, "AWATER": 0.0, "INTPTLAT": 36.6211449, "INTPTLON": -119.3187498 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3187498, 36.6211449 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 467, "felt:has_geometry": true, "felt:h3_index": 644747597413788188, "STATEFP": 6.0, "PLACEFP": 55856.0, "PLACENS": 2411376.0, "GEOID": 655856.0, "NAME": "Parlier", "NAMELSAD": "Parlier city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6238407.0, "AWATER": 0.0, "INTPTLAT": 36.608693, "INTPTLON": -119.5433673 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5433673, 36.608693 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 468, "felt:has_geometry": true, "felt:h3_index": 644747599899282065, "STATEFP": 6.0, "PLACEFP": 60242.0, "PLACENS": 2410920.0, "GEOID": 660242.0, "NAME": "Reedley", "NAMELSAD": "Reedley city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14429457.0, "AWATER": 185397.0, "INTPTLAT": 36.5983642, "INTPTLON": -119.4466866 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4466866, 36.5983642 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 469, "felt:has_geometry": true, "felt:h3_index": 644747600295446035, "STATEFP": 6.0, "PLACEFP": 67056.0, "PLACENS": 2411811.0, "GEOID": 667056.0, "NAME": "Sanger", "NAMELSAD": "Sanger city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14937115.0, "AWATER": 0.0, "INTPTLAT": 36.6989667, "INTPTLON": -119.5574831 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5574831, 36.6989667 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 470, "felt:has_geometry": true, "felt:h3_index": 644747597212359372, "STATEFP": 6.0, "PLACEFP": 70882.0, "PLACENS": 2411863.0, "GEOID": 670882.0, "NAME": "Selma", "NAMELSAD": "Selma city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15041784.0, "AWATER": 0.0, "INTPTLAT": 36.5715478, "INTPTLON": -119.6142675 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6142675, 36.5715478 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 471, "felt:has_geometry": true, "felt:h3_index": 644722062904934765, "STATEFP": 6.0, "PLACEFP": 83668.0, "PLACENS": 2412194.0, "GEOID": 683668.0, "NAME": "Watsonville", "NAMELSAD": "Watsonville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17576477.0, "AWATER": 253182.0, "INTPTLAT": 36.9235873, "INTPTLON": -121.7723952 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7723952, 36.9235873 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 472, "felt:has_geometry": true, "felt:h3_index": 644722012169345097, "STATEFP": 6.0, "PLACEFP": 69112.0, "PLACENS": 2411820.0, "GEOID": 669112.0, "NAME": "Santa Cruz", "NAMELSAD": "Santa Cruz city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32996448.0, "AWATER": 7998699.0, "INTPTLAT": 36.974385, "INTPTLON": -122.0352679 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0352679, 36.974385 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 473, "felt:has_geometry": true, "felt:h3_index": 644747386286516806, "STATEFP": 6.0, "PLACEFP": 51182.0, "PLACENS": 2411250.0, "GEOID": 651182.0, "NAME": "Newport Beach", "NAMELSAD": "Newport Beach city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61634972.0, "AWATER": 75434150.0, "INTPTLAT": 33.597332, "INTPTLON": -117.890352 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.890352, 33.597332 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 474, "felt:has_geometry": true, "felt:h3_index": 644722094550163509, "STATEFP": 6.0, "PLACEFP": 67000.0, "PLACENS": 2411786.0, "GEOID": 667000.0, "NAME": "San Francisco", "NAMELSAD": "San Francisco city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 121045788.0, "AWATER": 479608103.0, "INTPTLAT": 37.7272391, "INTPTLON": -123.0322294 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0322294, 37.7272391 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 475, "felt:has_geometry": true, "felt:h3_index": 644722014655660627, "STATEFP": 6.0, "PLACEFP": 11040.0, "PLACENS": 2409981.0, "GEOID": 611040.0, "NAME": "Capitola", "NAMELSAD": "Capitola city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4129576.0, "AWATER": 213680.0, "INTPTLAT": 36.9760826, "INTPTLON": -121.954012 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.954012, 36.9760826 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 476, "felt:has_geometry": true, "felt:h3_index": 644721734916323120, "STATEFP": 6.0, "PLACEFP": 23182.0, "PLACENS": 2410474.0, "GEOID": 623182.0, "NAME": "Fairfield", "NAMELSAD": "Fairfield city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107707592.0, "AWATER": 738306.0, "INTPTLAT": 38.2620602, "INTPTLON": -122.032386 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.032386, 38.2620602 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 477, "felt:has_geometry": true, "felt:h3_index": 644721735279050956, "STATEFP": 6.0, "PLACEFP": 81554.0, "PLACENS": 2412139.0, "GEOID": 681554.0, "NAME": "Vacaville", "NAMELSAD": "Vacaville city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77363273.0, "AWATER": 600053.0, "INTPTLAT": 38.3586211, "INTPTLON": -121.9686015 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9686015, 38.3586211 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 478, "felt:has_geometry": true, "felt:h3_index": 644721831311520371, "STATEFP": 6.0, "PLACEFP": 81134.0, "PLACENS": 2412125.0, "GEOID": 681134.0, "NAME": "Ukiah", "NAMELSAD": "Ukiah city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12346151.0, "AWATER": 116762.0, "INTPTLAT": 39.146614, "INTPTLON": -123.2103259 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.2103259, 39.146614 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 479, "felt:has_geometry": true, "felt:h3_index": 644747148306998289, "STATEFP": 6.0, "PLACEFP": 7946.0, "PLACENS": 2409891.0, "GEOID": 607946.0, "NAME": "Bradbury", "NAMELSAD": "Bradbury city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084447.0, "AWATER": 3236.0, "INTPTLAT": 34.1531592, "INTPTLON": -117.9688184 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9688184, 34.1531592 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 480, "felt:has_geometry": true, "felt:h3_index": 644747328246928626, "STATEFP": 6.0, "PLACEFP": 11194.0, "PLACENS": 2409984.0, "GEOID": 611194.0, "NAME": "Carlsbad", "NAMELSAD": "Carlsbad city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 97932263.0, "AWATER": 3378580.0, "INTPTLAT": 33.1292841, "INTPTLON": -117.2841831 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2841831, 33.1292841 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 481, "felt:has_geometry": true, "felt:h3_index": 644747303393477936, "STATEFP": 6.0, "PLACEFP": 50398.0, "PLACENS": 2411216.0, "GEOID": 650398.0, "NAME": "National City", "NAMELSAD": "National City city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19030794.0, "AWATER": 4772029.0, "INTPTLAT": 32.6658617, "INTPTLON": -117.097361 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.097361, 32.6658617 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 482, "felt:has_geometry": true, "felt:h3_index": 644747299395028361, "STATEFP": 6.0, "PLACEFP": 70224.0, "PLACENS": 2411830.0, "GEOID": 670224.0, "NAME": "Santee", "NAMELSAD": "Santee city", "LSAD": 25.0, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42831663.0, "AWATER": 470863.0, "INTPTLAT": 32.8549903, "INTPTLON": -116.9860556 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9860556, 32.8549903 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 483, "felt:has_geometry": true, "felt:h3_index": 644721769512851616, "STATEFP": 6.0, "PLACEFP": 135.0, "PLACENS": 2582926.0, "GEOID": 600135.0, "NAME": "Acalanes Ridge", "NAMELSAD": "Acalanes Ridge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1193569.0, "AWATER": 0.0, "INTPTLAT": 37.904725, "INTPTLON": -122.0785674 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0785674, 37.904725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 484, "felt:has_geometry": true, "felt:h3_index": 644722157180062342, "STATEFP": 6.0, "PLACEFP": 156.0, "PLACENS": 2629758.0, "GEOID": 600156.0, "NAME": "Acampo", "NAMELSAD": "Acampo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2428474.0, "AWATER": 0.0, "INTPTLAT": 38.1735286, "INTPTLON": -121.2798915 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2798915, 38.1735286 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 485, "felt:has_geometry": true, "felt:h3_index": 644747113398709264, "STATEFP": 6.0, "PLACEFP": 212.0, "PLACENS": 2407697.0, "GEOID": 600212.0, "NAME": "Acton", "NAMELSAD": "Acton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 101679451.0, "AWATER": 60418.0, "INTPTLAT": 34.4960703, "INTPTLON": -118.183897 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.183897, 34.4960703 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 486, "felt:has_geometry": true, "felt:h3_index": 644719563810683392, "STATEFP": 6.0, "PLACEFP": 310.0, "PLACENS": 2582927.0, "GEOID": 600310.0, "NAME": "Adin", "NAMELSAD": "Adin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7587701.0, "AWATER": 15858.0, "INTPTLAT": 41.1993122, "INTPTLON": -120.9567786 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9567786, 41.1993122 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 487, "felt:has_geometry": true, "felt:h3_index": 644747096810914953, "STATEFP": 6.0, "PLACEFP": 450.0, "PLACENS": 2582928.0, "GEOID": 600450.0, "NAME": "Agua Dulce", "NAMELSAD": "Agua Dulce CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 59181047.0, "AWATER": 14646.0, "INTPTLAT": 34.5016784, "INTPTLON": -118.3206796 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3206796, 34.5016784 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 488, "felt:has_geometry": true, "felt:h3_index": 644747078104684645, "STATEFP": 6.0, "PLACEFP": 464.0, "PLACENS": 2582929.0, "GEOID": 600464.0, "NAME": "Aguanga", "NAMELSAD": "Aguanga CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35222110.0, "AWATER": 0.0, "INTPTLAT": 33.4522463, "INTPTLON": -116.8554705 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8554705, 33.4522463 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 489, "felt:has_geometry": true, "felt:h3_index": 644747781168871065, "STATEFP": 6.0, "PLACEFP": 478.0, "PLACENS": 2628702.0, "GEOID": 600478.0, "NAME": "Ahwahnee", "NAMELSAD": "Ahwahnee CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29896182.0, "AWATER": 0.0, "INTPTLAT": 37.3654228, "INTPTLON": -119.7165606 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7165606, 37.3654228 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 490, "felt:has_geometry": true, "felt:h3_index": 644722149478193333, "STATEFP": 6.0, "PLACEFP": 535.0, "PLACENS": 2583084.0, "GEOID": 600535.0, "NAME": "Airport", "NAMELSAD": "Airport CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 451729.0, "AWATER": 0.0, "INTPTLAT": 37.6338833, "INTPTLON": -120.9720056 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9720056, 37.6338833 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 491, "felt:has_geometry": true, "felt:h3_index": 644721790097115892, "STATEFP": 6.0, "PLACEFP": 618.0, "PLACENS": 2407707.0, "GEOID": 600618.0, "NAME": "Alamo", "NAMELSAD": "Alamo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25422415.0, "AWATER": 0.0, "INTPTLAT": 37.8547678, "INTPTLON": -122.0135573 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0135573, 37.8547678 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 492, "felt:has_geometry": true, "felt:h3_index": 644718886539187978, "STATEFP": 6.0, "PLACEFP": 716.0, "PLACENS": 2628703.0, "GEOID": 600716.0, "NAME": "Albion", "NAMELSAD": "Albion CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4701873.0, "AWATER": 96897.0, "INTPTLAT": 39.2253267, "INTPTLON": -123.7575859 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7575859, 39.2253267 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 493, "felt:has_geometry": true, "felt:h3_index": 644718873994931008, "STATEFP": 6.0, "PLACEFP": 786.0, "PLACENS": 2611374.0, "GEOID": 600786.0, "NAME": "Alderpoint", "NAMELSAD": "Alderpoint CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6288254.0, "AWATER": 0.0, "INTPTLAT": 40.1613467, "INTPTLON": -123.6157293 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.6157293, 40.1613467 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 494, "felt:has_geometry": true, "felt:h3_index": 644721737866489930, "STATEFP": 6.0, "PLACEFP": 898.0, "PLACENS": 2582930.0, "GEOID": 600898.0, "NAME": "Alhambra Valley", "NAMELSAD": "Alhambra Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4181518.0, "AWATER": 0.0, "INTPTLAT": 37.9667437, "INTPTLON": -122.1359983 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1359983, 37.9667437 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 495, "felt:has_geometry": true, "felt:h3_index": 644721899576338716, "STATEFP": 6.0, "PLACEFP": 982.0, "PLACENS": 2582931.0, "GEOID": 600982.0, "NAME": "Alleghany", "NAMELSAD": "Alleghany CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 904298.0, "AWATER": 0.0, "INTPTLAT": 39.4666605, "INTPTLON": -120.8411258 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8411258, 39.4666605 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 496, "felt:has_geometry": true, "felt:h3_index": 644721763109407845, "STATEFP": 6.0, "PLACEFP": 996.0, "PLACENS": 2582932.0, "GEOID": 600996.0, "NAME": "Allendale", "NAMELSAD": "Allendale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15892908.0, "AWATER": 164542.0, "INTPTLAT": 38.4429856, "INTPTLON": -121.9833299 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9833299, 38.4429856 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 497, "felt:has_geometry": true, "felt:h3_index": 644747622956296557, "STATEFP": 6.0, "PLACEFP": 1010.0, "PLACENS": 2585402.0, "GEOID": 601010.0, "NAME": "Allensworth", "NAMELSAD": "Allensworth CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8035085.0, "AWATER": 0.0, "INTPTLAT": 35.8498779, "INTPTLON": -119.389209 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.389209, 35.8498779 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 498, "felt:has_geometry": true, "felt:h3_index": 644719840379355715, "STATEFP": 6.0, "PLACEFP": 1094.0, "PLACENS": 2407722.0, "GEOID": 601094.0, "NAME": "Almanor", "NAMELSAD": "Almanor CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2287751.0, "AWATER": 0.0, "INTPTLAT": 40.2144936, "INTPTLON": -121.1762201 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1762201, 40.2144936 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 499, "felt:has_geometry": true, "felt:h3_index": 644747392208083680, "STATEFP": 6.0, "PLACEFP": 1150.0, "PLACENS": 2407724.0, "GEOID": 601150.0, "NAME": "Alondra Park", "NAMELSAD": "Alondra Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2861316.0, "AWATER": 93791.0, "INTPTLAT": 33.8901549, "INTPTLON": -118.3356779 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3356779, 33.8901549 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 500, "felt:has_geometry": true, "felt:h3_index": 644747623936866486, "STATEFP": 6.0, "PLACEFP": 1164.0, "PLACENS": 2407725.0, "GEOID": 601164.0, "NAME": "Alpaugh", "NAMELSAD": "Alpaugh CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1082836.0, "AWATER": 0.0, "INTPTLAT": 35.8890372, "INTPTLON": -119.4858089 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4858089, 35.8890372 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 501, "felt:has_geometry": true, "felt:h3_index": 644747314123622017, "STATEFP": 6.0, "PLACEFP": 1192.0, "PLACENS": 2407726.0, "GEOID": 601192.0, "NAME": "Alpine", "NAMELSAD": "Alpine CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69374324.0, "AWATER": 1475.0, "INTPTLAT": 32.842487, "INTPTLON": -116.7559106 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.7559106, 32.842487 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 502, "felt:has_geometry": true, "felt:h3_index": 644745743227496204, "STATEFP": 6.0, "PLACEFP": 1228.0, "PLACENS": 2407729.0, "GEOID": 601228.0, "NAME": "Alpine Village", "NAMELSAD": "Alpine Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10569744.0, "AWATER": 0.0, "INTPTLAT": 38.7793457, "INTPTLON": -119.807785 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.807785, 38.7793457 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 503, "felt:has_geometry": true, "felt:h3_index": 644721896762133132, "STATEFP": 6.0, "PLACEFP": 1276.0, "PLACENS": 2628704.0, "GEOID": 601276.0, "NAME": "Alta", "NAMELSAD": "Alta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6173301.0, "AWATER": 17423.0, "INTPTLAT": 39.2156848, "INTPTLON": -120.7985091 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7985091, 39.2156848 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 504, "felt:has_geometry": true, "felt:h3_index": 644747141745695387, "STATEFP": 6.0, "PLACEFP": 1290.0, "PLACENS": 2407732.0, "GEOID": 601290.0, "NAME": "Altadena", "NAMELSAD": "Altadena CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21924372.0, "AWATER": 40734.0, "INTPTLAT": 34.1922117, "INTPTLON": -118.1355893 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1355893, 34.1922117 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 505, "felt:has_geometry": true, "felt:h3_index": 644747984907617924, "STATEFP": 6.0, "PLACEFP": 1358.0, "PLACENS": 2804107.0, "GEOID": 601358.0, "NAME": "Alta Sierra", "NAMELSAD": "Alta Sierra CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2631092.0, "AWATER": 1178.0, "INTPTLAT": 35.7257758, "INTPTLON": -118.5451664 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.5451664, 35.7257758 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 506, "felt:has_geometry": true, "felt:h3_index": 644721901352885549, "STATEFP": 6.0, "PLACEFP": 1360.0, "PLACENS": 2407731.0, "GEOID": 601360.0, "NAME": "Alta Sierra", "NAMELSAD": "Alta Sierra CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21551268.0, "AWATER": 53117.0, "INTPTLAT": 39.1261741, "INTPTLON": -121.0490846 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0490846, 39.1261741 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 507, "felt:has_geometry": true, "felt:h3_index": 644721768618662666, "STATEFP": 6.0, "PLACEFP": 1416.0, "PLACENS": 2582933.0, "GEOID": 601416.0, "NAME": "Alto", "NAMELSAD": "Alto CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 325686.0, "AWATER": 0.0, "INTPTLAT": 37.9055811, "INTPTLON": -122.5187182 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5187182, 37.9055811 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 508, "felt:has_geometry": true, "felt:h3_index": 644722040331327337, "STATEFP": 6.0, "PLACEFP": 1458.0, "PLACENS": 2407736.0, "GEOID": 601458.0, "NAME": "Alum Rock", "NAMELSAD": "Alum Rock CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2250531.0, "AWATER": 0.0, "INTPTLAT": 37.3694076, "INTPTLON": -121.8238087 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8238087, 37.3694076 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 509, "felt:has_geometry": true, "felt:h3_index": 644721928344028706, "STATEFP": 6.0, "PLACEFP": 1518.0, "PLACENS": 2812655.0, "GEOID": 601518.0, "NAME": "Amador Pines", "NAMELSAD": "Amador Pines CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12561595.0, "AWATER": 0.0, "INTPTLAT": 38.4896313, "INTPTLON": -120.5333049 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5333049, 38.4896313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 510, "felt:has_geometry": true, "felt:h3_index": 644722062342416396, "STATEFP": 6.0, "PLACEFP": 1651.0, "PLACENS": 2407740.0, "GEOID": 601651.0, "NAME": "Amesti", "NAMELSAD": "Amesti CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599656.0, "AWATER": 166652.0, "INTPTLAT": 36.9594832, "INTPTLON": -121.7817391 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7817391, 36.9594832 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 511, "felt:has_geometry": true, "felt:h3_index": 644721817248894376, "STATEFP": 6.0, "PLACEFP": 2028.0, "PLACENS": 2628706.0, "GEOID": 602028.0, "NAME": "Anchor Bay", "NAMELSAD": "Anchor Bay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9097805.0, "AWATER": 0.0, "INTPTLAT": 38.8126532, "INTPTLON": -123.5702668 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.5702668, 38.8126532 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 512, "felt:has_geometry": true, "felt:h3_index": 644721744154407233, "STATEFP": 6.0, "PLACEFP": 2168.0, "PLACENS": 2407744.0, "GEOID": 602168.0, "NAME": "Angwin", "NAMELSAD": "Angwin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12507052.0, "AWATER": 108688.0, "INTPTLAT": 38.5778747, "INTPTLON": -122.4512239 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4512239, 38.5778747 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 513, "felt:has_geometry": true, "felt:h3_index": 644721919944418001, "STATEFP": 6.0, "PLACEFP": 2210.0, "PLACENS": 2582934.0, "GEOID": 602210.0, "NAME": "Antelope", "NAMELSAD": "Antelope CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17705728.0, "AWATER": 0.0, "INTPTLAT": 38.7153301, "INTPTLON": -121.3609616 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3609616, 38.7153301 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 514, "felt:has_geometry": true, "felt:h3_index": 644747079546123337, "STATEFP": 6.0, "PLACEFP": 2294.0, "PLACENS": 2582935.0, "GEOID": 602294.0, "NAME": "Anza", "NAMELSAD": "Anza CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71470883.0, "AWATER": 212166.0, "INTPTLAT": 33.5615903, "INTPTLON": -116.6960661 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.6960661, 33.5615903 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 515, "felt:has_geometry": true, "felt:h3_index": 644722014822158945, "STATEFP": 6.0, "PLACEFP": 2378.0, "PLACENS": 2407750.0, "GEOID": 602378.0, "NAME": "Aptos", "NAMELSAD": "Aptos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17037117.0, "AWATER": 0.0, "INTPTLAT": 36.99115, "INTPTLON": -121.8934565 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8934565, 36.99115 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 516, "felt:has_geometry": true, "felt:h3_index": 644722063034364304, "STATEFP": 6.0, "PLACEFP": 2382.0, "PLACENS": 2407751.0, "GEOID": 602382.0, "NAME": "Aptos Hills-Larkin Valley", "NAMELSAD": "Aptos Hills-Larkin Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23984497.0, "AWATER": 85462.0, "INTPTLAT": 36.9634918, "INTPTLON": -121.8352137 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8352137, 36.9634918 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 517, "felt:has_geometry": true, "felt:h3_index": 644721992046339372, "STATEFP": 6.0, "PLACEFP": 2420.0, "PLACENS": 2407755.0, "GEOID": 602420.0, "NAME": "Arbuckle", "NAMELSAD": "Arbuckle CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4559938.0, "AWATER": 0.0, "INTPTLAT": 39.0141947, "INTPTLON": -122.0610427 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0610427, 39.0141947 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 518, "felt:has_geometry": true, "felt:h3_index": 644721920080101603, "STATEFP": 6.0, "PLACEFP": 2553.0, "PLACENS": 2407756.0, "GEOID": 602553.0, "NAME": "Arden-Arcade", "NAMELSAD": "Arden-Arcade CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41169054.0, "AWATER": 588891.0, "INTPTLAT": 38.6006475, "INTPTLON": -121.3846427 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3846427, 38.6006475 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 519, "felt:has_geometry": true, "felt:h3_index": 644747574496057734, "STATEFP": 6.0, "PLACEFP": 2700.0, "PLACENS": 2407762.0, "GEOID": 602700.0, "NAME": "Armona", "NAMELSAD": "Armona CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5317203.0, "AWATER": 0.0, "INTPTLAT": 36.3166068, "INTPTLON": -119.7053798 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7053798, 36.3166068 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 520, "felt:has_geometry": true, "felt:h3_index": 644745759464527409, "STATEFP": 6.0, "PLACEFP": 2770.0, "PLACENS": 2407763.0, "GEOID": 602770.0, "NAME": "Arnold", "NAMELSAD": "Arnold CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23482385.0, "AWATER": 168745.0, "INTPTLAT": 38.2486418, "INTPTLON": -120.3509888 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3509888, 38.2486418 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 521, "felt:has_geometry": true, "felt:h3_index": 644722061849957702, "STATEFP": 6.0, "PLACEFP": 2812.0, "PLACENS": 2407764.0, "GEOID": 602812.0, "NAME": "Aromas", "NAMELSAD": "Aromas CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12263807.0, "AWATER": 27254.0, "INTPTLAT": 36.8747551, "INTPTLON": -121.6307316 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6307316, 36.8747551 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 522, "felt:has_geometry": true, "felt:h3_index": 644721965368679813, "STATEFP": 6.0, "PLACEFP": 2910.0, "PLACENS": 2628707.0, "GEOID": 602910.0, "NAME": "Artois", "NAMELSAD": "Artois CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7458262.0, "AWATER": 0.0, "INTPTLAT": 39.6331786, "INTPTLON": -122.1897577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1897577, 39.6331786 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 523, "felt:has_geometry": true, "felt:h3_index": 644721774305353045, "STATEFP": 6.0, "PLACEFP": 2980.0, "PLACENS": 2407773.0, "GEOID": 602980.0, "NAME": "Ashland", "NAMELSAD": "Ashland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4772238.0, "AWATER": 0.0, "INTPTLAT": 37.6941967, "INTPTLON": -122.1159367 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1159367, 37.6941967 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 524, "felt:has_geometry": true, "felt:h3_index": 644745685298369459, "STATEFP": 6.0, "PLACEFP": 3026.0, "PLACENS": 2582936.0, "GEOID": 603026.0, "NAME": "Aspen Springs", "NAMELSAD": "Aspen Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9288460.0, "AWATER": 1429.0, "INTPTLAT": 37.5487908, "INTPTLON": -118.6996633 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6996633, 37.5487908 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 525, "felt:has_geometry": true, "felt:h3_index": 644747832813524064, "STATEFP": 6.0, "PLACEFP": 3190.0, "PLACENS": 2407779.0, "GEOID": 603190.0, "NAME": "Auberry", "NAMELSAD": "Auberry CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 120251753.0, "AWATER": 1032543.0, "INTPTLAT": 37.0886542, "INTPTLON": -119.4507568 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4507568, 37.0886542 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 526, "felt:has_geometry": true, "felt:h3_index": 644721870536811062, "STATEFP": 6.0, "PLACEFP": 3205.0, "PLACENS": 2582982.0, "GEOID": 603205.0, "NAME": "Auburn Lake Trails", "NAMELSAD": "Auburn Lake Trails CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32963739.0, "AWATER": 56719.0, "INTPTLAT": 38.8862376, "INTPTLON": -120.9796991 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9796991, 38.8862376 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 527, "felt:has_geometry": true, "felt:h3_index": 644722154408420564, "STATEFP": 6.0, "PLACEFP": 3209.0, "PLACENS": 2407781.0, "GEOID": 603209.0, "NAME": "August", "NAMELSAD": "August CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3252575.0, "AWATER": 0.0, "INTPTLAT": 37.9796439, "INTPTLON": -121.2625104 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2625104, 37.9796439 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 528, "felt:has_geometry": true, "felt:h3_index": 644745759487578395, "STATEFP": 6.0, "PLACEFP": 3316.0, "PLACENS": 2407784.0, "GEOID": 603316.0, "NAME": "Avery", "NAMELSAD": "Avery CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5449102.0, "AWATER": 47866.0, "INTPTLAT": 38.1979118, "INTPTLON": -120.3694331 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3694331, 38.1979118 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 529, "felt:has_geometry": true, "felt:h3_index": 644747971911081101, "STATEFP": 6.0, "PLACEFP": 3330.0, "PLACENS": 2582937.0, "GEOID": 603330.0, "NAME": "Avila Beach", "NAMELSAD": "Avila Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15761159.0, "AWATER": 580356.0, "INTPTLAT": 35.1993549, "INTPTLON": -120.7207571 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7207571, 35.1993549 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 530, "felt:has_geometry": true, "felt:h3_index": 644747146388466398, "STATEFP": 6.0, "PLACEFP": 3344.0, "PLACENS": 2407785.0, "GEOID": 603344.0, "NAME": "Avocado Heights", "NAMELSAD": "Avocado Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5828913.0, "AWATER": 6069.0, "INTPTLAT": 34.0390386, "INTPTLON": -117.9981669 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9981669, 34.0390386 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 531, "felt:has_geometry": true, "felt:h3_index": 644745138290378516, "STATEFP": 6.0, "PLACEFP": 3512.0, "PLACENS": 2628708.0, "GEOID": 603512.0, "NAME": "Baker", "NAMELSAD": "Baker CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6961528.0, "AWATER": 0.0, "INTPTLAT": 35.2769184, "INTPTLON": -116.071735 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.071735, 35.2769184 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 532, "felt:has_geometry": true, "felt:h3_index": 644748031071160428, "STATEFP": 6.0, "PLACEFP": 3546.0, "PLACENS": 2804108.0, "GEOID": 603546.0, "NAME": "Bakersfield Country Club", "NAMELSAD": "Bakersfield Country Club CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1963093.0, "AWATER": 0.0, "INTPTLAT": 35.3898914, "INTPTLON": -118.9409146 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9409146, 35.3898914 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 533, "felt:has_geometry": true, "felt:h3_index": 644737351846149005, "STATEFP": 6.0, "PLACEFP": 3694.0, "PLACENS": 2582938.0, "GEOID": 603694.0, "NAME": "Ballard", "NAMELSAD": "Ballard CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7236936.0, "AWATER": 13445.0, "INTPTLAT": 34.6399477, "INTPTLON": -120.1109886 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1109886, 34.6399477 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 534, "felt:has_geometry": true, "felt:h3_index": 644722198528190390, "STATEFP": 6.0, "PLACEFP": 3708.0, "PLACENS": 2582939.0, "GEOID": 603708.0, "NAME": "Ballico", "NAMELSAD": "Ballico CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7828206.0, "AWATER": 0.0, "INTPTLAT": 37.4519168, "INTPTLON": -120.703707 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.703707, 37.4519168 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 535, "felt:has_geometry": true, "felt:h3_index": 644719848870971657, "STATEFP": 6.0, "PLACEFP": 3792.0, "PLACENS": 2612459.0, "GEOID": 603792.0, "NAME": "Bangor", "NAMELSAD": "Bangor CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34765044.0, "AWATER": 0.0, "INTPTLAT": 39.3760873, "INTPTLON": -121.4116537 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4116537, 39.3760873 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 536, "felt:has_geometry": true, "felt:h3_index": 644747779608432652, "STATEFP": 6.0, "PLACEFP": 4198.0, "PLACENS": 2628709.0, "GEOID": 604198.0, "NAME": "Bass Lake", "NAMELSAD": "Bass Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4874800.0, "AWATER": 1570518.0, "INTPTLAT": 37.3272815, "INTPTLON": -119.565326 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.565326, 37.3272815 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 537, "felt:has_geometry": true, "felt:h3_index": 644721785814419763, "STATEFP": 6.0, "PLACEFP": 4415.0, "PLACENS": 2407808.0, "GEOID": 604415.0, "NAME": "Bay Point", "NAMELSAD": "Bay Point CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16643644.0, "AWATER": 2637541.0, "INTPTLAT": 38.032254, "INTPTLON": -121.9622357 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9622357, 38.032254 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 538, "felt:has_geometry": true, "felt:h3_index": 644721770680073371, "STATEFP": 6.0, "PLACEFP": 4470.0, "PLACENS": 2582940.0, "GEOID": 604470.0, "NAME": "Bayview", "NAMELSAD": "Bayview CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 789227.0, "AWATER": 209670.0, "INTPTLAT": 38.0062344, "INTPTLON": -122.3201647 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3201647, 38.0062344 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 539, "felt:has_geometry": true, "felt:h3_index": 644718618509053075, "STATEFP": 6.0, "PLACEFP": 4478.0, "PLACENS": 2407810.0, "GEOID": 604478.0, "NAME": "Bayview", "NAMELSAD": "Bayview CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1908100.0, "AWATER": 0.0, "INTPTLAT": 40.7653596, "INTPTLON": -124.1786242 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1786242, 40.7653596 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 540, "felt:has_geometry": true, "felt:h3_index": 644722018795040026, "STATEFP": 6.0, "PLACEFP": 4549.0, "PLACENS": 2805052.0, "GEOID": 604549.0, "NAME": "Baywood Park", "NAMELSAD": "Baywood Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1416274.0, "AWATER": 0.0, "INTPTLAT": 37.529163, "INTPTLON": -122.341637 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.341637, 37.529163 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 541, "felt:has_geometry": true, "felt:h3_index": 644722203640059760, "STATEFP": 6.0, "PLACEFP": 4632.0, "PLACENS": 2629759.0, "GEOID": 604632.0, "NAME": "Bear Creek", "NAMELSAD": "Bear Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 148411.0, "AWATER": 0.0, "INTPTLAT": 37.2966009, "INTPTLON": -120.4176758 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4176758, 37.2966009 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 542, "felt:has_geometry": true, "felt:h3_index": 644745729533363345, "STATEFP": 6.0, "PLACEFP": 4716.0, "PLACENS": 2407814.0, "GEOID": 604716.0, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13352822.0, "AWATER": 56384.0, "INTPTLAT": 38.4723209, "INTPTLON": -120.0518467 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0518467, 38.4723209 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 543, "felt:has_geometry": true, "felt:h3_index": 644747786170317588, "STATEFP": 6.0, "PLACEFP": 4730.0, "PLACENS": 2582941.0, "GEOID": 604730.0, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6318984.0, "AWATER": 3006.0, "INTPTLAT": 37.5747403, "INTPTLON": -120.1360978 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1360978, 37.5747403 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 544, "felt:has_geometry": true, "felt:h3_index": 644748018489412126, "STATEFP": 6.0, "PLACEFP": 4734.0, "PLACENS": 2407815.0, "GEOID": 604734.0, "NAME": "Bear Valley Springs", "NAMELSAD": "Bear Valley Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100685639.0, "AWATER": 173880.0, "INTPTLAT": 35.1783554, "INTPTLON": -118.669618 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.669618, 35.1783554 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 545, "felt:has_geometry": true, "felt:h3_index": 644745450739046257, "STATEFP": 6.0, "PLACEFP": 4772.0, "PLACENS": 2407819.0, "GEOID": 604772.0, "NAME": "Beckwourth", "NAMELSAD": "Beckwourth CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30257790.0, "AWATER": 13194.0, "INTPTLAT": 39.8439312, "INTPTLON": -120.4140086 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4140086, 39.8439312 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 546, "felt:has_geometry": true, "felt:h3_index": 644719810114116161, "STATEFP": 6.0, "PLACEFP": 4856.0, "PLACENS": 2407822.0, "GEOID": 604856.0, "NAME": "Belden", "NAMELSAD": "Belden CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1578657.0, "AWATER": 299647.0, "INTPTLAT": 40.0067829, "INTPTLON": -121.2481908 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2481908, 40.0067829 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 547, "felt:has_geometry": true, "felt:h3_index": 644719908744222592, "STATEFP": 6.0, "PLACEFP": 4926.0, "PLACENS": 2582942.0, "GEOID": 604926.0, "NAME": "Bella Vista", "NAMELSAD": "Bella Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68485004.0, "AWATER": 508710.0, "INTPTLAT": 40.6512049, "INTPTLON": -122.2563699 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2563699, 40.6512049 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 548, "felt:has_geometry": true, "felt:h3_index": 644747128505920270, "STATEFP": 6.0, "PLACEFP": 4938.0, "PLACENS": 2585403.0, "GEOID": 604938.0, "NAME": "Bell Canyon", "NAMELSAD": "Bell Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9424351.0, "AWATER": 0.0, "INTPTLAT": 34.2081484, "INTPTLON": -118.6875736 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6875736, 34.2081484 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 549, "felt:has_geometry": true, "felt:h3_index": 644718857983963529, "STATEFP": 6.0, "PLACEFP": 5262.0, "PLACENS": 2611375.0, "GEOID": 605262.0, "NAME": "Benbow", "NAMELSAD": "Benbow CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12641980.0, "AWATER": 0.0, "INTPTLAT": 40.0602672, "INTPTLON": -123.7653807 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7653807, 40.0602672 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 550, "felt:has_geometry": true, "felt:h3_index": 644719884450064174, "STATEFP": 6.0, "PLACEFP": 5276.0, "PLACENS": 2628710.0, "GEOID": 605276.0, "NAME": "Bend", "NAMELSAD": "Bend CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7548202.0, "AWATER": 663196.0, "INTPTLAT": 40.2550916, "INTPTLON": -122.2109161 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2109161, 40.2550916 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 551, "felt:has_geometry": true, "felt:h3_index": 644722008425538892, "STATEFP": 6.0, "PLACEFP": 5332.0, "PLACENS": 2407827.0, "GEOID": 605332.0, "NAME": "Ben Lomond", "NAMELSAD": "Ben Lomond CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21674902.0, "AWATER": 0.0, "INTPTLAT": 37.0782118, "INTPTLON": -122.0881023 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0881023, 37.0782118 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 552, "felt:has_geometry": true, "felt:h3_index": 644745647903540376, "STATEFP": 6.0, "PLACEFP": 5346.0, "PLACENS": 2582943.0, "GEOID": 605346.0, "NAME": "Benton", "NAMELSAD": "Benton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73732744.0, "AWATER": 52423.0, "INTPTLAT": 37.8224379, "INTPTLON": -118.4876873 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4876873, 37.8224379 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 553, "felt:has_geometry": true, "felt:h3_index": 644748031550909872, "STATEFP": 6.0, "PLACEFP": 5356.0, "PLACENS": 2804109.0, "GEOID": 605356.0, "NAME": "Benton Park", "NAMELSAD": "Benton Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1942378.0, "AWATER": 0.0, "INTPTLAT": 35.3464387, "INTPTLON": -119.0298149 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0298149, 35.3464387 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 554, "felt:has_geometry": true, "felt:h3_index": 644747442747446932, "STATEFP": 6.0, "PLACEFP": 6028.0, "PLACENS": 2407831.0, "GEOID": 606028.0, "NAME": "Bermuda Dunes", "NAMELSAD": "Bermuda Dunes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639830.0, "AWATER": 0.0, "INTPTLAT": 33.7434898, "INTPTLON": -116.2873354 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2873354, 33.7434898 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 555, "felt:has_geometry": true, "felt:h3_index": 644719844406726684, "STATEFP": 6.0, "PLACEFP": 6070.0, "PLACENS": 2612472.0, "GEOID": 606070.0, "NAME": "Berry Creek", "NAMELSAD": "Berry Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 147940054.0, "AWATER": 154403.0, "INTPTLAT": 39.6318124, "INTPTLON": -121.4056211 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4056211, 39.6318124 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 556, "felt:has_geometry": true, "felt:h3_index": 644720401727131841, "STATEFP": 6.0, "PLACEFP": 6150.0, "PLACENS": 2407832.0, "GEOID": 606150.0, "NAME": "Bertsch-Oceanview", "NAMELSAD": "Bertsch-Oceanview CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13659961.0, "AWATER": 776446.0, "INTPTLAT": 41.7517274, "INTPTLON": -124.1702139 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1702139, 41.7517274 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 557, "felt:has_geometry": true, "felt:h3_index": 644721786665457922, "STATEFP": 6.0, "PLACEFP": 6210.0, "PLACENS": 2407834.0, "GEOID": 606210.0, "NAME": "Bethel Island", "NAMELSAD": "Bethel Island CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13599384.0, "AWATER": 1468307.0, "INTPTLAT": 38.0281297, "INTPTLON": -121.6298509 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6298509, 38.0281297 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 558, "felt:has_geometry": true, "felt:h3_index": 644719536896074354, "STATEFP": 6.0, "PLACEFP": 6336.0, "PLACENS": 2582944.0, "GEOID": 606336.0, "NAME": "Bieber", "NAMELSAD": "Bieber CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8944480.0, "AWATER": 148149.0, "INTPTLAT": 41.1384505, "INTPTLON": -121.1170059 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1170059, 41.1384505 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 559, "felt:has_geometry": true, "felt:h3_index": 644747042063014814, "STATEFP": 6.0, "PLACEFP": 6406.0, "PLACENS": 2407838.0, "GEOID": 606406.0, "NAME": "Big Bear City", "NAMELSAD": "Big Bear City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82917622.0, "AWATER": 44975.0, "INTPTLAT": 34.2541177, "INTPTLON": -116.7963779 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.7963779, 34.2541177 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 560, "felt:has_geometry": true, "felt:h3_index": 644719658497383694, "STATEFP": 6.0, "PLACEFP": 6475.0, "PLACENS": 2407839.0, "GEOID": 606475.0, "NAME": "Big Bend", "NAMELSAD": "Big Bend CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14852515.0, "AWATER": 230960.0, "INTPTLAT": 41.0116239, "INTPTLON": -121.9304344 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9304344, 41.0116239 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 561, "felt:has_geometry": true, "felt:h3_index": 644747799558897750, "STATEFP": 6.0, "PLACEFP": 6518.0, "PLACENS": 2628711.0, "GEOID": 606518.0, "NAME": "Big Creek", "NAMELSAD": "Big Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1191495.0, "AWATER": 0.0, "INTPTLAT": 37.2035645, "INTPTLON": -119.2484886 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2484886, 37.2035645 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6.0, "PLACEFP": 6567.0, "PLACENS": 2611424.0, "GEOID": 606567.0, "NAME": "Big Lagoon", "NAMELSAD": "Big Lagoon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136.0, "AWATER": 0.0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1297465, 41.1594267 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 563, "felt:has_geometry": true, "felt:h3_index": 644747734461914507, "STATEFP": 6.0, "PLACEFP": 6616.0, "PLACENS": 2407843.0, "GEOID": 606616.0, "NAME": "Big Pine", "NAMELSAD": "Big Pine CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7636605.0, "AWATER": 4831.0, "INTPTLAT": 37.1655071, "INTPTLON": -118.2962618 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2962618, 37.1655071 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 564, "felt:has_geometry": true, "felt:h3_index": 644748481924483172, "STATEFP": 6.0, "PLACEFP": 6635.0, "PLACENS": 2407844.0, "GEOID": 606635.0, "NAME": "Big River", "NAMELSAD": "Big River CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28050915.0, "AWATER": 1344398.0, "INTPTLAT": 34.1398232, "INTPTLON": -114.3620987 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.3620987, 34.1398232 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 565, "felt:has_geometry": true, "felt:h3_index": 644747817615988385, "STATEFP": 6.0, "PLACEFP": 6728.0, "PLACENS": 2407849.0, "GEOID": 606728.0, "NAME": "Biola", "NAMELSAD": "Biola CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1675805.0, "AWATER": 0.0, "INTPTLAT": 36.7999379, "INTPTLON": -120.0210376 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0210376, 36.7999379 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 566, "felt:has_geometry": true, "felt:h3_index": 644721789940488612, "STATEFP": 6.0, "PLACEFP": 6928.0, "PLACENS": 2407859.0, "GEOID": 606928.0, "NAME": "Blackhawk", "NAMELSAD": "Blackhawk CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14958249.0, "AWATER": 31771.0, "INTPTLAT": 37.8096292, "INTPTLON": -121.9132414 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9132414, 37.8096292 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 567, "felt:has_geometry": true, "felt:h3_index": 644747971356265233, "STATEFP": 6.0, "PLACEFP": 6935.0, "PLACENS": 2582945.0, "GEOID": 606935.0, "NAME": "Blacklake", "NAMELSAD": "Blacklake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2707660.0, "AWATER": 0.0, "INTPTLAT": 35.0496895, "INTPTLON": -120.538642 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.538642, 35.0496895 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 568, "felt:has_geometry": true, "felt:h3_index": 644721778689154443, "STATEFP": 6.0, "PLACEFP": 6982.0, "PLACENS": 2407857.0, "GEOID": 606982.0, "NAME": "Black Point-Green Point", "NAMELSAD": "Black Point-Green Point CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7322458.0, "AWATER": 181453.0, "INTPTLAT": 38.1106512, "INTPTLON": -122.5190972 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5190972, 38.1106512 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 569, "felt:has_geometry": true, "felt:h3_index": 644719863646448041, "STATEFP": 6.0, "PLACEFP": 6994.0, "PLACENS": 2407861.0, "GEOID": 606994.0, "NAME": "Blairsden", "NAMELSAD": "Blairsden CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1402709.0, "AWATER": 0.0, "INTPTLAT": 39.775205, "INTPTLON": -120.6108447 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6108447, 39.775205 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 570, "felt:has_geometry": true, "felt:h3_index": 644721859681798678, "STATEFP": 6.0, "PLACEFP": 7036.0, "PLACENS": 2582946.0, "GEOID": 607036.0, "NAME": "Bloomfield", "NAMELSAD": "Bloomfield CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21076160.0, "AWATER": 17431.0, "INTPTLAT": 38.3220688, "INTPTLON": -122.834464 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.834464, 38.3220688 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 571, "felt:has_geometry": true, "felt:h3_index": 644747022568655702, "STATEFP": 6.0, "PLACEFP": 7064.0, "PLACENS": 2407863.0, "GEOID": 607064.0, "NAME": "Bloomington", "NAMELSAD": "Bloomington CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15723229.0, "AWATER": 0.0, "INTPTLAT": 34.0600706, "INTPTLON": -117.4012379 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.4012379, 34.0600706 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 572, "felt:has_geometry": true, "felt:h3_index": 644748484593699356, "STATEFP": 6.0, "PLACEFP": 7172.0, "PLACENS": 2407869.0, "GEOID": 607172.0, "NAME": "Bluewater", "NAMELSAD": "Bluewater CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2711814.0, "AWATER": 766390.0, "INTPTLAT": 34.1754314, "INTPTLON": -114.2649617 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.2649617, 34.1754314 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 573, "felt:has_geometry": true, "felt:h3_index": 644721859550923989, "STATEFP": 6.0, "PLACEFP": 7246.0, "PLACENS": 2582947.0, "GEOID": 607246.0, "NAME": "Bodega", "NAMELSAD": "Bodega CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7515783.0, "AWATER": 0.0, "INTPTLAT": 38.3488408, "INTPTLON": -122.9711641 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9711641, 38.3488408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 574, "felt:has_geometry": true, "felt:h3_index": 644721853777715462, "STATEFP": 6.0, "PLACEFP": 7260.0, "PLACENS": 2407872.0, "GEOID": 607260.0, "NAME": "Bodega Bay", "NAMELSAD": "Bodega Bay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21676778.0, "AWATER": 10759202.0, "INTPTLAT": 38.3272149, "INTPTLON": -123.0292296 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0292296, 38.3272149 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 575, "felt:has_geometry": true, "felt:h3_index": 644747984072293270, "STATEFP": 6.0, "PLACEFP": 7274.0, "PLACENS": 2407873.0, "GEOID": 607274.0, "NAME": "Bodfish", "NAMELSAD": "Bodfish CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21273286.0, "AWATER": 31784.0, "INTPTLAT": 35.5734164, "INTPTLON": -118.4864408 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4864408, 35.5734164 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 576, "felt:has_geometry": true, "felt:h3_index": 644721779945822237, "STATEFP": 6.0, "PLACEFP": 7316.0, "PLACENS": 2407875.0, "GEOID": 607316.0, "NAME": "Bolinas", "NAMELSAD": "Bolinas CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15090532.0, "AWATER": 0.0, "INTPTLAT": 37.9177251, "INTPTLON": -122.7095023 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7095023, 37.9177251 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 577, "felt:has_geometry": true, "felt:h3_index": 644747456934429382, "STATEFP": 6.0, "PLACEFP": 7372.0, "PLACENS": 2407878.0, "GEOID": 607372.0, "NAME": "Bombay Beach", "NAMELSAD": "Bombay Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1719105.0, "AWATER": 0.0, "INTPTLAT": 33.3556097, "INTPTLON": -115.7269018 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.7269018, 33.3556097 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 578, "felt:has_geometry": true, "felt:h3_index": 644747815029937379, "STATEFP": 6.0, "PLACEFP": 7378.0, "PLACENS": 2805049.0, "GEOID": 607378.0, "NAME": "Bonadelle Ranchos", "NAMELSAD": "Bonadelle Ranchos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23343618.0, "AWATER": 0.0, "INTPTLAT": 36.9688065, "INTPTLON": -119.8927786 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8927786, 36.9688065 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 579, "felt:has_geometry": true, "felt:h3_index": 644747303664156829, "STATEFP": 6.0, "PLACEFP": 7414.0, "PLACENS": 2407882.0, "GEOID": 607414.0, "NAME": "Bonita", "NAMELSAD": "Bonita CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12993682.0, "AWATER": 359832.0, "INTPTLAT": 32.673217, "INTPTLON": -117.0061014 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0061014, 32.673217 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 580, "felt:has_geometry": true, "felt:h3_index": 644722008148753014, "STATEFP": 6.0, "PLACEFP": 7470.0, "PLACENS": 2582948.0, "GEOID": 607470.0, "NAME": "Bonny Doon", "NAMELSAD": "Bonny Doon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42898133.0, "AWATER": 0.0, "INTPTLAT": 37.0435771, "INTPTLON": -122.1369719 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1369719, 37.0435771 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 581, "felt:has_geometry": true, "felt:h3_index": 644747323985629586, "STATEFP": 6.0, "PLACEFP": 7498.0, "PLACENS": 2407884.0, "GEOID": 607498.0, "NAME": "Bonsall", "NAMELSAD": "Bonsall CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35286264.0, "AWATER": 451966.0, "INTPTLAT": 33.2748761, "INTPTLON": -117.1918628 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1918628, 33.2748761 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 582, "felt:has_geometry": true, "felt:h3_index": 644721827939161384, "STATEFP": 6.0, "PLACEFP": 7512.0, "PLACENS": 2628712.0, "GEOID": 607512.0, "NAME": "Boonville", "NAMELSAD": "Boonville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14355353.0, "AWATER": 0.0, "INTPTLAT": 39.0114745, "INTPTLON": -123.3740428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.3740428, 39.0114745 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 583, "felt:has_geometry": true, "felt:h3_index": 644747792508084312, "STATEFP": 6.0, "PLACEFP": 7525.0, "PLACENS": 2407885.0, "GEOID": 607525.0, "NAME": "Bootjack", "NAMELSAD": "Bootjack CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9924991.0, "AWATER": 80795.0, "INTPTLAT": 37.4740444, "INTPTLON": -119.8837998 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8837998, 37.4740444 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 584, "felt:has_geometry": true, "felt:h3_index": 644747270943253810, "STATEFP": 6.0, "PLACEFP": 7568.0, "PLACENS": 2407886.0, "GEOID": 607568.0, "NAME": "Boron", "NAMELSAD": "Boron CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35516742.0, "AWATER": 24136.0, "INTPTLAT": 35.0197799, "INTPTLON": -117.6659382 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6659382, 35.0197799 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 585, "felt:has_geometry": true, "felt:h3_index": 644722066297886637, "STATEFP": 6.0, "PLACEFP": 7578.0, "PLACENS": 2407887.0, "GEOID": 607578.0, "NAME": "Boronda", "NAMELSAD": "Boronda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1486322.0, "AWATER": 0.0, "INTPTLAT": 36.6946324, "INTPTLON": -121.6745116 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6745116, 36.6946324 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 586, "felt:has_geometry": true, "felt:h3_index": 644747483273028443, "STATEFP": 6.0, "PLACEFP": 7596.0, "PLACENS": 2407888.0, "GEOID": 607596.0, "NAME": "Borrego Springs", "NAMELSAD": "Borrego Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 112422778.0, "AWATER": 0.0, "INTPTLAT": 33.2409651, "INTPTLON": -116.3571189 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3571189, 33.2409651 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 587, "felt:has_geometry": true, "felt:h3_index": 644747319662707601, "STATEFP": 6.0, "PLACEFP": 7624.0, "PLACENS": 2407889.0, "GEOID": 607624.0, "NAME": "Bostonia", "NAMELSAD": "Bostonia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4989175.0, "AWATER": 0.0, "INTPTLAT": 32.8189845, "INTPTLON": -116.942264 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.942264, 32.8189845 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 588, "felt:has_geometry": true, "felt:h3_index": 644722008068795715, "STATEFP": 6.0, "PLACEFP": 7652.0, "PLACENS": 2407892.0, "GEOID": 607652.0, "NAME": "Boulder Creek", "NAMELSAD": "Boulder Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19456234.0, "AWATER": 0.0, "INTPTLAT": 37.1340991, "INTPTLON": -122.1272084 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1272084, 37.1340991 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 589, "felt:has_geometry": true, "felt:h3_index": 645287511563970892, "STATEFP": 6.0, "PLACEFP": 7694.0, "PLACENS": 2582949.0, "GEOID": 607694.0, "NAME": "Boulevard", "NAMELSAD": "Boulevard CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10115840.0, "AWATER": 0.0, "INTPTLAT": 32.6640221, "INTPTLON": -116.2896012 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2896012, 32.6640221 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 590, "felt:has_geometry": true, "felt:h3_index": 644721745922909084, "STATEFP": 6.0, "PLACEFP": 7848.0, "PLACENS": 2407898.0, "GEOID": 607848.0, "NAME": "Boyes Hot Springs", "NAMELSAD": "Boyes Hot Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2746385.0, "AWATER": 0.0, "INTPTLAT": 38.3126328, "INTPTLON": -122.4887382 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4887382, 38.3126328 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 591, "felt:has_geometry": true, "felt:h3_index": 644747946277486941, "STATEFP": 6.0, "PLACEFP": 7974.0, "PLACENS": 2407899.0, "GEOID": 607974.0, "NAME": "Bradley", "NAMELSAD": "Bradley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 222711.0, "AWATER": 0.0, "INTPTLAT": 35.8628398, "INTPTLON": -120.8042676 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8042676, 35.8628398 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 592, "felt:has_geometry": true, "felt:h3_index": 644722149510399568, "STATEFP": 6.0, "PLACEFP": 8172.0, "PLACENS": 2407902.0, "GEOID": 608172.0, "NAME": "Bret Harte", "NAMELSAD": "Bret Harte CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1425057.0, "AWATER": 0.0, "INTPTLAT": 37.6020778, "INTPTLON": -121.0043804 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0043804, 37.6020778 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 593, "felt:has_geometry": true, "felt:h3_index": 644745738094579731, "STATEFP": 6.0, "PLACEFP": 8240.0, "PLACENS": 2582950.0, "GEOID": 608240.0, "NAME": "Bridgeport", "NAMELSAD": "Bridgeport CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56306218.0, "AWATER": 21149.0, "INTPTLAT": 38.2552098, "INTPTLON": -119.2104243 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2104243, 38.2552098 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 594, "felt:has_geometry": true, "felt:h3_index": 644721772525304616, "STATEFP": 6.0, "PLACEFP": 8338.0, "PLACENS": 2407907.0, "GEOID": 608338.0, "NAME": "Broadmoor", "NAMELSAD": "Broadmoor CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1118795.0, "AWATER": 0.0, "INTPTLAT": 37.6914953, "INTPTLON": -122.4813393 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4813393, 37.6914953 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 595, "felt:has_geometry": true, "felt:h3_index": 644722007611057680, "STATEFP": 6.0, "PLACEFP": 8478.0, "PLACENS": 2582951.0, "GEOID": 608478.0, "NAME": "Brookdale", "NAMELSAD": "Brookdale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9963087.0, "AWATER": 0.0, "INTPTLAT": 37.1057317, "INTPTLON": -122.110623 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.110623, 37.1057317 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 596, "felt:has_geometry": true, "felt:h3_index": 644721762382294226, "STATEFP": 6.0, "PLACEFP": 8506.0, "PLACENS": 2805237.0, "GEOID": 608506.0, "NAME": "Brooks", "NAMELSAD": "Brooks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11146719.0, "AWATER": 0.0, "INTPTLAT": 38.7368801, "INTPTLON": -122.1468072 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1468072, 38.7368801 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 597, "felt:has_geometry": true, "felt:h3_index": 644718883285586088, "STATEFP": 6.0, "PLACEFP": 8530.0, "PLACENS": 2628713.0, "GEOID": 608530.0, "NAME": "Brooktrails", "NAMELSAD": "Brooktrails CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18790840.0, "AWATER": 122096.0, "INTPTLAT": 39.4432827, "INTPTLON": -123.3938002 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.3938002, 39.4432827 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 598, "felt:has_geometry": true, "felt:h3_index": 644721928787056372, "STATEFP": 6.0, "PLACEFP": 8680.0, "PLACENS": 2586444.0, "GEOID": 608680.0, "NAME": "Buckhorn", "NAMELSAD": "Buckhorn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12772523.0, "AWATER": 0.0, "INTPTLAT": 38.4547969, "INTPTLON": -120.5323337 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5323337, 38.4547969 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 599, "felt:has_geometry": true, "felt:h3_index": 644745756408964336, "STATEFP": 6.0, "PLACEFP": 8716.0, "PLACENS": 2582952.0, "GEOID": 608716.0, "NAME": "Buck Meadows", "NAMELSAD": "Buck Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1386273.0, "AWATER": 0.0, "INTPTLAT": 37.8070463, "INTPTLON": -120.075237 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.075237, 37.8070463 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 600, "felt:has_geometry": true, "felt:h3_index": 644719814321859776, "STATEFP": 6.0, "PLACEFP": 8744.0, "PLACENS": 2407918.0, "GEOID": 608744.0, "NAME": "Bucks Lake", "NAMELSAD": "Bucks Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26784856.0, "AWATER": 21082.0, "INTPTLAT": 39.8795599, "INTPTLON": -121.1990806 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1990806, 39.8795599 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 601, "felt:has_geometry": true, "felt:h3_index": 644721911846607281, "STATEFP": 6.0, "PLACEFP": 8828.0, "PLACENS": 2582953.0, "GEOID": 608828.0, "NAME": "Buena Vista", "NAMELSAD": "Buena Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4370822.0, "AWATER": 0.0, "INTPTLAT": 38.2974871, "INTPTLON": -120.9174023 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9174023, 38.2974871 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 602, "felt:has_geometry": true, "felt:h3_index": 644722038498322762, "STATEFP": 6.0, "PLACEFP": 8968.0, "PLACENS": 2407924.0, "GEOID": 608968.0, "NAME": "Burbank", "NAMELSAD": "Burbank CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1082490.0, "AWATER": 0.0, "INTPTLAT": 37.3210966, "INTPTLON": -121.930608 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.930608, 37.3210966 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6.0, "PLACEFP": 9122.0, "PLACENS": 2407926.0, "GEOID": 609122.0, "NAME": "Burney", "NAMELSAD": "Burney CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869.0, "AWATER": 12780.0, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6754646, 40.8893625 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6.0, "PLACEFP": 9150.0, "PLACENS": 2582954.0, "GEOID": 609150.0, "NAME": "Burnt Ranch", "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000.0, "AWATER": 3143.0, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.5082607, 40.8113348 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 605, "felt:has_geometry": true, "felt:h3_index": 644719857380923420, "STATEFP": 6.0, "PLACEFP": 9310.0, "PLACENS": 2612473.0, "GEOID": 609310.0, "NAME": "Butte Creek Canyon", "NAMELSAD": "Butte Creek Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 53133631.0, "AWATER": 68391.0, "INTPTLAT": 39.744502, "INTPTLON": -121.7071314 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7071314, 39.744502 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 606, "felt:has_geometry": true, "felt:h3_index": 644719823364230032, "STATEFP": 6.0, "PLACEFP": 9318.0, "PLACENS": 2612474.0, "GEOID": 609318.0, "NAME": "Butte Meadows", "NAMELSAD": "Butte Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5554035.0, "AWATER": 1292.0, "INTPTLAT": 40.08531, "INTPTLON": -121.5426826 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5426826, 40.08531 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 607, "felt:has_geometry": true, "felt:h3_index": 644719856012416565, "STATEFP": 6.0, "PLACEFP": 9324.0, "PLACENS": 2612475.0, "GEOID": 609324.0, "NAME": "Butte Valley", "NAMELSAD": "Butte Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47368451.0, "AWATER": 29332.0, "INTPTLAT": 39.6688146, "INTPTLON": -121.6458877 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6458877, 39.6688146 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 608, "felt:has_geometry": true, "felt:h3_index": 644747872724656994, "STATEFP": 6.0, "PLACEFP": 9332.0, "PLACENS": 2407932.0, "GEOID": 609332.0, "NAME": "Buttonwillow", "NAMELSAD": "Buttonwillow CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17941128.0, "AWATER": 0.0, "INTPTLAT": 35.4092286, "INTPTLON": -119.4406682 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4406682, 35.4092286 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 609, "felt:has_geometry": true, "felt:h3_index": 644721791153484726, "STATEFP": 6.0, "PLACEFP": 9346.0, "PLACENS": 2407934.0, "GEOID": 609346.0, "NAME": "Byron", "NAMELSAD": "Byron CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16889207.0, "AWATER": 0.0, "INTPTLAT": 37.8756441, "INTPTLON": -121.6421196 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6421196, 37.8756441 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 610, "felt:has_geometry": true, "felt:h3_index": 644722149478705994, "STATEFP": 6.0, "PLACEFP": 9353.0, "PLACENS": 2407935.0, "GEOID": 609353.0, "NAME": "Bystrom", "NAMELSAD": "Bystrom CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1408724.0, "AWATER": 28574.0, "INTPTLAT": 37.6193902, "INTPTLON": -120.9812542 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9812542, 37.6193902 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 611, "felt:has_geometry": true, "felt:h3_index": 644747043144326483, "STATEFP": 6.0, "PLACEFP": 9360.0, "PLACENS": 2407936.0, "GEOID": 609360.0, "NAME": "Cabazon", "NAMELSAD": "Cabazon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12674708.0, "AWATER": 0.0, "INTPTLAT": 33.9127262, "INTPTLON": -116.7828306 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.7828306, 33.9127262 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 612, "felt:has_geometry": true, "felt:h3_index": 644747998616816278, "STATEFP": 6.0, "PLACEFP": 9822.0, "PLACENS": 2585404.0, "GEOID": 609822.0, "NAME": "California Hot Springs", "NAMELSAD": "California Hot Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2334885.0, "AWATER": 0.0, "INTPTLAT": 35.8875684, "INTPTLON": -118.6550221 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6550221, 35.8875684 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 613, "felt:has_geometry": true, "felt:h3_index": 644719720153001358, "STATEFP": 6.0, "PLACEFP": 9834.0, "PLACENS": 2582955.0, "GEOID": 609834.0, "NAME": "California Pines", "NAMELSAD": "California Pines CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19236734.0, "AWATER": 366425.0, "INTPTLAT": 41.413786, "INTPTLON": -120.6653096 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6653096, 41.413786 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 614, "felt:has_geometry": true, "felt:h3_index": 644747967904224288, "STATEFP": 6.0, "PLACEFP": 9835.0, "PLACENS": 2805238.0, "GEOID": 609835.0, "NAME": "California Polytechnic State University", "NAMELSAD": "California Polytechnic State University CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3983144.0, "AWATER": 22384.0, "INTPTLAT": 35.3069806, "INTPTLON": -120.6672761 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6672761, 35.3069806 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 615, "felt:has_geometry": true, "felt:h3_index": 644747971377453494, "STATEFP": 6.0, "PLACEFP": 9948.0, "PLACENS": 2582956.0, "GEOID": 609948.0, "NAME": "Callender", "NAMELSAD": "Callender CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5921649.0, "AWATER": 0.0, "INTPTLAT": 35.0479717, "INTPTLON": -120.5759076 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5759076, 35.0479717 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 616, "felt:has_geometry": true, "felt:h3_index": 644721830710044534, "STATEFP": 6.0, "PLACEFP": 9990.0, "PLACENS": 2628714.0, "GEOID": 609990.0, "NAME": "Calpella", "NAMELSAD": "Calpella CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6598677.0, "AWATER": 64954.0, "INTPTLAT": 39.2337206, "INTPTLON": -123.1937598 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.1937598, 39.2337206 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 617, "felt:has_geometry": true, "felt:h3_index": 644719863138919603, "STATEFP": 6.0, "PLACEFP": 10004.0, "PLACENS": 2582957.0, "GEOID": 610004.0, "NAME": "Calpine", "NAMELSAD": "Calpine CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1838557.0, "AWATER": 5712.0, "INTPTLAT": 39.663381, "INTPTLON": -120.4392769 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4392769, 39.663381 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 618, "felt:has_geometry": true, "felt:h3_index": 644747818737613745, "STATEFP": 6.0, "PLACEFP": 10032.0, "PLACENS": 2582958.0, "GEOID": 610032.0, "NAME": "Calwa", "NAMELSAD": "Calwa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1470052.0, "AWATER": 29829.0, "INTPTLAT": 36.7134766, "INTPTLON": -119.7608602 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7608602, 36.7134766 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 619, "felt:has_geometry": true, "felt:h3_index": 644722172327202204, "STATEFP": 6.0, "PLACEFP": 10042.0, "PLACENS": 2582959.0, "GEOID": 610042.0, "NAME": "Camanche North Shore", "NAMELSAD": "Camanche North Shore CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6039084.0, "AWATER": 0.0, "INTPTLAT": 38.2442182, "INTPTLON": -120.9539153 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9539153, 38.2442182 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 620, "felt:has_geometry": true, "felt:h3_index": 644722172271895917, "STATEFP": 6.0, "PLACEFP": 10044.0, "PLACENS": 2582960.0, "GEOID": 610044.0, "NAME": "Camanche Village", "NAMELSAD": "Camanche Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082638.0, "AWATER": 39226.0, "INTPTLAT": 38.2664813, "INTPTLON": -120.986575 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.986575, 38.2664813 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 621, "felt:has_geometry": true, "felt:h3_index": 644747916666027178, "STATEFP": 6.0, "PLACEFP": 10074.0, "PLACENS": 2407941.0, "GEOID": 610074.0, "NAME": "Cambria", "NAMELSAD": "Cambria CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21803724.0, "AWATER": 0.0, "INTPTLAT": 35.5520688, "INTPTLON": -121.0841373 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0841373, 35.5520688 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 622, "felt:has_geometry": true, "felt:h3_index": 644722010164307849, "STATEFP": 6.0, "PLACEFP": 10088.0, "PLACENS": 2407942.0, "GEOID": 610088.0, "NAME": "Cambrian Park", "NAMELSAD": "Cambrian Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1575566.0, "AWATER": 0.0, "INTPTLAT": 37.2562757, "INTPTLON": -121.9288407 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9288407, 37.2562757 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 623, "felt:has_geometry": true, "felt:h3_index": 644721874429391405, "STATEFP": 6.0, "PLACEFP": 10256.0, "PLACENS": 2407944.0, "GEOID": 610256.0, "NAME": "Cameron Park", "NAMELSAD": "Cameron Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29078546.0, "AWATER": 186312.0, "INTPTLAT": 38.6740287, "INTPTLON": -120.9883375 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9883375, 38.6740287 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 624, "felt:has_geometry": true, "felt:h3_index": 644721925059306634, "STATEFP": 6.0, "PLACEFP": 10270.0, "PLACENS": 2582961.0, "GEOID": 610270.0, "NAME": "Camino", "NAMELSAD": "Camino CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6659897.0, "AWATER": 0.0, "INTPTLAT": 38.7422654, "INTPTLON": -120.6808108 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6808108, 38.7422654 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 625, "felt:has_geometry": true, "felt:h3_index": 644721788670447854, "STATEFP": 6.0, "PLACEFP": 10301.0, "PLACENS": 2583160.0, "GEOID": 610301.0, "NAME": "Camino Tassajara", "NAMELSAD": "Camino Tassajara CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3305050.0, "AWATER": 0.0, "INTPTLAT": 37.7908857, "INTPTLON": -121.8850524 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8850524, 37.7908857 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 626, "felt:has_geometry": true, "felt:h3_index": 644747748116088140, "STATEFP": 6.0, "PLACEFP": 10494.0, "PLACENS": 2585405.0, "GEOID": 610494.0, "NAME": "Camp Nelson", "NAMELSAD": "Camp Nelson CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3207672.0, "AWATER": 0.0, "INTPTLAT": 36.1419783, "INTPTLON": -118.61071 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.61071, 36.1419783 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 627, "felt:has_geometry": true, "felt:h3_index": 645287510650479435, "STATEFP": 6.0, "PLACEFP": 10508.0, "PLACENS": 2582962.0, "GEOID": 610508.0, "NAME": "Campo", "NAMELSAD": "Campo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 60877895.0, "AWATER": 16844.0, "INTPTLAT": 32.6409655, "INTPTLON": -116.4745158 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4745158, 32.6409655 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 628, "felt:has_geometry": true, "felt:h3_index": 644747323880117952, "STATEFP": 6.0, "PLACEFP": 10554.0, "PLACENS": 2407946.0, "GEOID": 610554.0, "NAME": "Camp Pendleton Mainside", "NAMELSAD": "Camp Pendleton Mainside CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27834793.0, "AWATER": 525021.0, "INTPTLAT": 33.3072088, "INTPTLON": -117.3310482 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3310482, 33.3072088 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 629, "felt:has_geometry": true, "felt:h3_index": 644747307116790155, "STATEFP": 6.0, "PLACEFP": 10561.0, "PLACENS": 2407947.0, "GEOID": 610561.0, "NAME": "Camp Pendleton South", "NAMELSAD": "Camp Pendleton South CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17965903.0, "AWATER": 1062655.0, "INTPTLAT": 33.2318244, "INTPTLON": -117.391998 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.391998, 33.2318244 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 630, "felt:has_geometry": true, "felt:h3_index": 644719849349908232, "STATEFP": 6.0, "PLACEFP": 10676.0, "PLACENS": 2628715.0, "GEOID": 610676.0, "NAME": "Camptonville", "NAMELSAD": "Camptonville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221241.0, "AWATER": 0.0, "INTPTLAT": 39.4520717, "INTPTLON": -121.048668 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.048668, 39.4520717 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6.0, "PLACEFP": 10732.0, "PLACENS": 2582963.0, "GEOID": 610732.0, "NAME": "Canby", "NAMELSAD": "Canby CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540.0, "AWATER": 76979.0, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8883186, 41.4522933 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 632, "felt:has_geometry": true, "felt:h3_index": 644719840255551302, "STATEFP": 6.0, "PLACEFP": 10914.0, "PLACENS": 2407959.0, "GEOID": 610914.0, "NAME": "Canyondam", "NAMELSAD": "Canyondam CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1985597.0, "AWATER": 0.0, "INTPTLAT": 40.1698672, "INTPTLON": -121.0769858 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0769858, 40.1698672 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 633, "felt:has_geometry": true, "felt:h3_index": 644719824497203826, "STATEFP": 6.0, "PLACEFP": 11166.0, "PLACENS": 2407962.0, "GEOID": 611166.0, "NAME": "Caribou", "NAMELSAD": "Caribou CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 419798.0, "AWATER": 0.0, "INTPTLAT": 40.073244, "INTPTLON": -121.1656703 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1656703, 40.073244 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 634, "felt:has_geometry": true, "felt:h3_index": 644737841012000498, "STATEFP": 6.0, "PLACEFP": 11324.0, "PLACENS": 2407966.0, "GEOID": 611324.0, "NAME": "Carmel Valley Village", "NAMELSAD": "Carmel Valley Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49166228.0, "AWATER": 507112.0, "INTPTLAT": 36.5006267, "INTPTLON": -121.7318199 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7318199, 36.5006267 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 635, "felt:has_geometry": true, "felt:h3_index": 644721853009019950, "STATEFP": 6.0, "PLACEFP": 11376.0, "PLACENS": 2582964.0, "GEOID": 611376.0, "NAME": "Carmet", "NAMELSAD": "Carmet CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 742472.0, "AWATER": 0.0, "INTPTLAT": 38.3744519, "INTPTLON": -123.0718595 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0718595, 38.3744519 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 636, "felt:has_geometry": true, "felt:h3_index": 644721919623586141, "STATEFP": 6.0, "PLACEFP": 11390.0, "PLACENS": 2407967.0, "GEOID": 611390.0, "NAME": "Carmichael", "NAMELSAD": "Carmichael CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39714478.0, "AWATER": 602793.0, "INTPTLAT": 38.6308121, "INTPTLON": -121.3256364 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3256364, 38.6308121 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 637, "felt:has_geometry": true, "felt:h3_index": 644745491153168563, "STATEFP": 6.0, "PLACEFP": 11418.0, "PLACENS": 2628716.0, "GEOID": 611418.0, "NAME": "Carnelian Bay", "NAMELSAD": "Carnelian Bay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3364143.0, "AWATER": 516530.0, "INTPTLAT": 39.2351651, "INTPTLON": -120.0782068 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0782068, 39.2351651 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 638, "felt:has_geometry": true, "felt:h3_index": 644719602869519795, "STATEFP": 6.0, "PLACEFP": 11481.0, "PLACENS": 2407970.0, "GEOID": 611481.0, "NAME": "Carrick", "NAMELSAD": "Carrick CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 152301.0, "AWATER": 0.0, "INTPTLAT": 41.4467465, "INTPTLON": -122.3634572 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3634572, 41.4467465 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 639, "felt:has_geometry": true, "felt:h3_index": 644747764802586790, "STATEFP": 6.0, "PLACEFP": 11600.0, "PLACENS": 2407973.0, "GEOID": 611600.0, "NAME": "Cartago", "NAMELSAD": "Cartago CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3028826.0, "AWATER": 7192.0, "INTPTLAT": 36.3052395, "INTPTLON": -118.0271663 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0271663, 36.3052395 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 640, "felt:has_geometry": true, "felt:h3_index": 644747138005393675, "STATEFP": 6.0, "PLACEFP": 11656.0, "PLACENS": 2407978.0, "GEOID": 611656.0, "NAME": "Casa Conejo", "NAMELSAD": "Casa Conejo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1221471.0, "AWATER": 0.0, "INTPTLAT": 34.184731, "INTPTLON": -118.9445166 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9445166, 34.184731 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 641, "felt:has_geometry": true, "felt:h3_index": 644747303090461707, "STATEFP": 6.0, "PLACEFP": 11691.0, "PLACENS": 2407979.0, "GEOID": 611691.0, "NAME": "Casa de Oro-Mount Helix", "NAMELSAD": "Casa de Oro-Mount Helix CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17743954.0, "AWATER": 0.0, "INTPTLAT": 32.763962, "INTPTLON": -116.9688085 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9688085, 32.763962 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 642, "felt:has_geometry": true, "felt:h3_index": 644748031369765467, "STATEFP": 6.0, "PLACEFP": 11696.0, "PLACENS": 2805239.0, "GEOID": 611696.0, "NAME": "Casa Loma", "NAMELSAD": "Casa Loma CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1007621.0, "AWATER": 0.0, "INTPTLAT": 35.3432304, "INTPTLON": -118.9987108 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9987108, 35.3432304 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 643, "felt:has_geometry": true, "felt:h3_index": 644737360469462085, "STATEFP": 6.0, "PLACEFP": 11754.0, "PLACENS": 2582965.0, "GEOID": 611754.0, "NAME": "Casmalia", "NAMELSAD": "Casmalia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 433975.0, "AWATER": 0.0, "INTPTLAT": 34.8377987, "INTPTLON": -120.5310443 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5310443, 34.8377987 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 644, "felt:has_geometry": true, "felt:h3_index": 644718882019752066, "STATEFP": 6.0, "PLACEFP": 11768.0, "PLACENS": 2628717.0, "GEOID": 611768.0, "NAME": "Caspar", "NAMELSAD": "Caspar CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7748981.0, "AWATER": 0.0, "INTPTLAT": 39.3630629, "INTPTLON": -123.8041936 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.8041936, 39.3630629 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 645, "felt:has_geometry": true, "felt:h3_index": 644719579505466404, "STATEFP": 6.0, "PLACEFP": 11782.0, "PLACENS": 2611427.0, "GEOID": 611782.0, "NAME": "Cassel", "NAMELSAD": "Cassel CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5246417.0, "AWATER": 193675.0, "INTPTLAT": 40.9250207, "INTPTLON": -121.5484758 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5484758, 40.9250207 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 646, "felt:has_geometry": true, "felt:h3_index": 644747095977308468, "STATEFP": 6.0, "PLACEFP": 11796.0, "PLACENS": 2582966.0, "GEOID": 611796.0, "NAME": "Castaic", "NAMELSAD": "Castaic CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18807882.0, "AWATER": 44614.0, "INTPTLAT": 34.4775443, "INTPTLON": -118.6264003 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6264003, 34.4775443 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 647, "felt:has_geometry": true, "felt:h3_index": 644719655759495833, "STATEFP": 6.0, "PLACEFP": 11824.0, "PLACENS": 2813347.0, "GEOID": 611824.0, "NAME": "Castella", "NAMELSAD": "Castella CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2898121.0, "AWATER": 173038.0, "INTPTLAT": 41.1772527, "INTPTLON": -122.2872374 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2872374, 41.1772527 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 648, "felt:has_geometry": true, "felt:h3_index": 644721789792742642, "STATEFP": 6.0, "PLACEFP": 11915.0, "PLACENS": 2582967.0, "GEOID": 611915.0, "NAME": "Castle Hill", "NAMELSAD": "Castle Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1513889.0, "AWATER": 0.0, "INTPTLAT": 37.8747175, "INTPTLON": -122.0585817 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0585817, 37.8747175 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 649, "felt:has_geometry": true, "felt:h3_index": 644722036724042293, "STATEFP": 6.0, "PLACEFP": 11964.0, "PLACENS": 2407987.0, "GEOID": 611964.0, "NAME": "Castro Valley", "NAMELSAD": "Castro Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43637182.0, "AWATER": 571600.0, "INTPTLAT": 37.7082758, "INTPTLON": -122.0627686 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0627686, 37.7082758 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 650, "felt:has_geometry": true, "felt:h3_index": 644722059939718814, "STATEFP": 6.0, "PLACEFP": 11978.0, "PLACENS": 2407988.0, "GEOID": 611978.0, "NAME": "Castroville", "NAMELSAD": "Castroville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646281.0, "AWATER": 0.0, "INTPTLAT": 36.764838, "INTPTLON": -121.7533738 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7533738, 36.764838 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 651, "felt:has_geometry": true, "felt:h3_index": 644747790500096218, "STATEFP": 6.0, "PLACEFP": 12062.0, "PLACENS": 2582968.0, "GEOID": 612062.0, "NAME": "Catheys Valley", "NAMELSAD": "Catheys Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61148098.0, "AWATER": 148425.0, "INTPTLAT": 37.4277063, "INTPTLON": -120.0960378 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0960378, 37.4277063 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 652, "felt:has_geometry": true, "felt:h3_index": 644747915418359645, "STATEFP": 6.0, "PLACEFP": 12132.0, "PLACENS": 2407994.0, "GEOID": 612132.0, "NAME": "Cayucos", "NAMELSAD": "Cayucos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8028952.0, "AWATER": 2418782.0, "INTPTLAT": 35.4395808, "INTPTLON": -120.8898281 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8898281, 35.4395808 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 653, "felt:has_geometry": true, "felt:h3_index": 644721856191440666, "STATEFP": 6.0, "PLACEFP": 12146.0, "PLACENS": 2582969.0, "GEOID": 612146.0, "NAME": "Cazadero", "NAMELSAD": "Cazadero CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18431243.0, "AWATER": 3546.0, "INTPTLAT": 38.5278309, "INTPTLON": -123.1097995 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.1097995, 38.5278309 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 654, "felt:has_geometry": true, "felt:h3_index": 644745491175466112, "STATEFP": 6.0, "PLACEFP": 12216.0, "PLACENS": 2805240.0, "GEOID": 612216.0, "NAME": "Cedar Flat", "NAMELSAD": "Cedar Flat CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2796525.0, "AWATER": 378138.0, "INTPTLAT": 39.2069065, "INTPTLON": -120.094902 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.094902, 39.2069065 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 655, "felt:has_geometry": true, "felt:h3_index": 644745763100310698, "STATEFP": 6.0, "PLACEFP": 12300.0, "PLACENS": 2582970.0, "GEOID": 612300.0, "NAME": "Cedar Ridge", "NAMELSAD": "Cedar Ridge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20223241.0, "AWATER": 22466.0, "INTPTLAT": 38.0657363, "INTPTLON": -120.2738689 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2738689, 38.0657363 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 656, "felt:has_geometry": true, "felt:h3_index": 644747748155403045, "STATEFP": 6.0, "PLACEFP": 12314.0, "PLACENS": 2585406.0, "GEOID": 612314.0, "NAME": "Cedar Slope", "NAMELSAD": "Cedar Slope CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 746300.0, "AWATER": 0.0, "INTPTLAT": 36.1454644, "INTPTLON": -118.5788808 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.5788808, 36.1454644 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 657, "felt:has_geometry": true, "felt:h3_index": 644719717021977715, "STATEFP": 6.0, "PLACEFP": 12328.0, "PLACENS": 2582971.0, "GEOID": 612328.0, "NAME": "Cedarville", "NAMELSAD": "Cedarville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14095280.0, "AWATER": 8675.0, "INTPTLAT": 41.5286833, "INTPTLON": -120.1744329 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1744329, 41.5286833 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 658, "felt:has_geometry": true, "felt:h3_index": 644747600492608720, "STATEFP": 6.0, "PLACEFP": 12412.0, "PLACENS": 2582972.0, "GEOID": 612412.0, "NAME": "Centerville", "NAMELSAD": "Centerville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21012392.0, "AWATER": 0.0, "INTPTLAT": 36.7361168, "INTPTLON": -119.496006 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.496006, 36.7361168 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 659, "felt:has_geometry": true, "felt:h3_index": 644719893161305985, "STATEFP": 6.0, "PLACEFP": 12415.0, "PLACENS": 2813348.0, "GEOID": 612415.0, "NAME": "Centerville", "NAMELSAD": "Centerville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20842577.0, "AWATER": 105845.0, "INTPTLAT": 40.5429017, "INTPTLON": -122.4645048 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4645048, 40.5429017 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 660, "felt:has_geometry": true, "felt:h3_index": 644745704178587667, "STATEFP": 6.0, "PLACEFP": 12594.0, "PLACENS": 2582973.0, "GEOID": 612594.0, "NAME": "Chalfant", "NAMELSAD": "Chalfant CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 72616470.0, "AWATER": 73304.0, "INTPTLAT": 37.4921149, "INTPTLON": -118.3904081 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3904081, 37.4921149 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 661, "felt:has_geometry": true, "felt:h3_index": 644737296421422960, "STATEFP": 6.0, "PLACEFP": 12669.0, "PLACENS": 2408010.0, "GEOID": 612669.0, "NAME": "Channel Islands Beach", "NAMELSAD": "Channel Islands Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1094556.0, "AWATER": 580482.0, "INTPTLAT": 34.1689604, "INTPTLON": -119.2285418 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2285418, 34.1689604 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 662, "felt:has_geometry": true, "felt:h3_index": 644745127400902894, "STATEFP": 6.0, "PLACEFP": 12730.0, "PLACENS": 2804104.0, "GEOID": 612730.0, "NAME": "Charleston View", "NAMELSAD": "Charleston View CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1949194.0, "AWATER": 0.0, "INTPTLAT": 35.9646291, "INTPTLON": -115.8972354 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.8972354, 35.9646291 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 663, "felt:has_geometry": true, "felt:h3_index": 644747148495176849, "STATEFP": 6.0, "PLACEFP": 12734.0, "PLACENS": 2408014.0, "GEOID": 612734.0, "NAME": "Charter Oak", "NAMELSAD": "Charter Oak CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2402920.0, "AWATER": 0.0, "INTPTLAT": 34.1024918, "INTPTLON": -117.8562824 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8562824, 34.1024918 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 664, "felt:has_geometry": true, "felt:h3_index": 644719856145358945, "STATEFP": 6.0, "PLACEFP": 12818.0, "PLACENS": 2612476.0, "GEOID": 612818.0, "NAME": "Cherokee", "NAMELSAD": "Cherokee CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4533846.0, "AWATER": 442052.0, "INTPTLAT": 39.6508775, "INTPTLON": -121.5336463 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5336463, 39.6508775 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 665, "felt:has_geometry": true, "felt:h3_index": 644747874820249322, "STATEFP": 6.0, "PLACEFP": 12860.0, "PLACENS": 2629760.0, "GEOID": 612860.0, "NAME": "Cherokee Strip", "NAMELSAD": "Cherokee Strip CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 234735.0, "AWATER": 0.0, "INTPTLAT": 35.4695666, "INTPTLON": -119.2615255 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2615255, 35.4695666 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 666, "felt:has_geometry": true, "felt:h3_index": 644721774402220761, "STATEFP": 6.0, "PLACEFP": 12902.0, "PLACENS": 2408020.0, "GEOID": 612902.0, "NAME": "Cherryland", "NAMELSAD": "Cherryland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3090815.0, "AWATER": 0.0, "INTPTLAT": 37.6792159, "INTPTLON": -122.1037766 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1037766, 37.6792159 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 667, "felt:has_geometry": true, "felt:h3_index": 644747044742411950, "STATEFP": 6.0, "PLACEFP": 12916.0, "PLACENS": 2408019.0, "GEOID": 612916.0, "NAME": "Cherry Valley", "NAMELSAD": "Cherry Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20748133.0, "AWATER": 0.0, "INTPTLAT": 33.9796419, "INTPTLON": -116.9693705 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9693705, 33.9796419 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 668, "felt:has_geometry": true, "felt:h3_index": 644719819322821830, "STATEFP": 6.0, "PLACEFP": 12930.0, "PLACENS": 2408021.0, "GEOID": 612930.0, "NAME": "Chester", "NAMELSAD": "Chester CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18874561.0, "AWATER": 209672.0, "INTPTLAT": 40.3016748, "INTPTLON": -121.2325025 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2325025, 40.3016748 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 669, "felt:has_geometry": true, "felt:h3_index": 644745449965964333, "STATEFP": 6.0, "PLACEFP": 13077.0, "PLACENS": 2408024.0, "GEOID": 613077.0, "NAME": "Chilcoot-Vinton", "NAMELSAD": "Chilcoot-Vinton CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34207854.0, "AWATER": 0.0, "INTPTLAT": 39.806744, "INTPTLON": -120.1388608 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1388608, 39.806744 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 670, "felt:has_geometry": true, "felt:h3_index": 644748007264425394, "STATEFP": 6.0, "PLACEFP": 13157.0, "PLACENS": 2408027.0, "GEOID": 613157.0, "NAME": "China Lake Acres", "NAMELSAD": "China Lake Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13491529.0, "AWATER": 2579.0, "INTPTLAT": 35.6400189, "INTPTLON": -117.7664577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7664577, 35.6400189 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 671, "felt:has_geometry": true, "felt:h3_index": 644722162245424841, "STATEFP": 6.0, "PLACEFP": 13182.0, "PLACENS": 2408028.0, "GEOID": 613182.0, "NAME": "Chinese Camp", "NAMELSAD": "Chinese Camp CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2325639.0, "AWATER": 6504.0, "INTPTLAT": 37.8702154, "INTPTLON": -120.444225 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.444225, 37.8702154 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 672, "felt:has_geometry": true, "felt:h3_index": 644748033596702771, "STATEFP": 6.0, "PLACEFP": 13278.0, "PLACENS": 2804111.0, "GEOID": 613278.0, "NAME": "Choctaw Valley", "NAMELSAD": "Choctaw Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5885507.0, "AWATER": 0.0, "INTPTLAT": 35.4485545, "INTPTLON": -118.8871907 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8871907, 35.4485545 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 673, "felt:has_geometry": true, "felt:h3_index": 644747684305611873, "STATEFP": 6.0, "PLACEFP": 13364.0, "PLACENS": 2407612.0, "GEOID": 613364.0, "NAME": "Chualar", "NAMELSAD": "Chualar CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1621710.0, "AWATER": 0.0, "INTPTLAT": 36.5711128, "INTPTLON": -121.5102955 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5102955, 36.5711128 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 674, "felt:has_geometry": true, "felt:h3_index": 644747148522535499, "STATEFP": 6.0, "PLACEFP": 13560.0, "PLACENS": 2407624.0, "GEOID": 613560.0, "NAME": "Citrus", "NAMELSAD": "Citrus CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2268958.0, "AWATER": 3901.0, "INTPTLAT": 34.1134378, "INTPTLON": -117.8913011 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8913011, 34.1134378 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 675, "felt:has_geometry": true, "felt:h3_index": 644721752262400160, "STATEFP": 6.0, "PLACEFP": 13784.0, "PLACENS": 2582974.0, "GEOID": 613784.0, "NAME": "Clarksburg", "NAMELSAD": "Clarksburg CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5256094.0, "AWATER": 0.0, "INTPTLAT": 38.4193354, "INTPTLON": -121.5416175 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5416175, 38.4193354 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 676, "felt:has_geometry": true, "felt:h3_index": 644721909271835041, "STATEFP": 6.0, "PLACEFP": 13854.0, "PLACENS": 2582975.0, "GEOID": 613854.0, "NAME": "Clay", "NAMELSAD": "Clay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17496807.0, "AWATER": 0.0, "INTPTLAT": 38.3140376, "INTPTLON": -121.159591 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.159591, 38.3140376 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 677, "felt:has_geometry": true, "felt:h3_index": 644719836288113161, "STATEFP": 6.0, "PLACEFP": 13910.0, "PLACENS": 2611428.0, "GEOID": 613910.0, "NAME": "Clear Creek", "NAMELSAD": "Clear Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2934098.0, "AWATER": 19595.0, "INTPTLAT": 40.307086, "INTPTLON": -121.0554 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0554, 40.307086 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 678, "felt:has_geometry": true, "felt:h3_index": 644721988873897262, "STATEFP": 6.0, "PLACEFP": 13966.0, "PLACENS": 2407631.0, "GEOID": 613966.0, "NAME": "Clearlake Oaks", "NAMELSAD": "Clearlake Oaks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5123125.0, "AWATER": 442546.0, "INTPTLAT": 39.0206053, "INTPTLON": -122.6569387 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6569387, 39.0206053 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 679, "felt:has_geometry": true, "felt:h3_index": 644721986968608965, "STATEFP": 6.0, "PLACEFP": 13985.0, "PLACENS": 2582976.0, "GEOID": 613985.0, "NAME": "Clearlake Riviera", "NAMELSAD": "Clearlake Riviera CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13696201.0, "AWATER": 4029.0, "INTPTLAT": 38.9513834, "INTPTLON": -122.7222429 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7222429, 38.9513834 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 680, "felt:has_geometry": true, "felt:h3_index": 644718896773775600, "STATEFP": 6.0, "PLACEFP": 14008.0, "PLACENS": 2628718.0, "GEOID": 614008.0, "NAME": "Cleone", "NAMELSAD": "Cleone CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4126679.0, "AWATER": 62762.0, "INTPTLAT": 39.4901542, "INTPTLON": -123.7756919 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7756919, 39.4901542 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 681, "felt:has_geometry": true, "felt:h3_index": 644719862371191632, "STATEFP": 6.0, "PLACEFP": 14106.0, "PLACENS": 2407637.0, "GEOID": 614106.0, "NAME": "Clio", "NAMELSAD": "Clio CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1514932.0, "AWATER": 0.0, "INTPTLAT": 39.754217, "INTPTLON": -120.566728 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.566728, 39.754217 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 682, "felt:has_geometry": true, "felt:h3_index": 644719843191971241, "STATEFP": 6.0, "PLACEFP": 14148.0, "PLACENS": 2612477.0, "GEOID": 614148.0, "NAME": "Clipper Mills", "NAMELSAD": "Clipper Mills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4503147.0, "AWATER": 0.0, "INTPTLAT": 39.5324242, "INTPTLON": -121.1665519 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1665519, 39.5324242 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 683, "felt:has_geometry": true, "felt:h3_index": 644721785477020004, "STATEFP": 6.0, "PLACEFP": 14232.0, "PLACENS": 2407641.0, "GEOID": 614232.0, "NAME": "Clyde", "NAMELSAD": "Clyde CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 364483.0, "AWATER": 0.0, "INTPTLAT": 38.0253897, "INTPTLON": -122.0280157 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0280157, 38.0253897 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 684, "felt:has_geometry": true, "felt:h3_index": 644747777473030838, "STATEFP": 6.0, "PLACEFP": 14288.0, "PLACENS": 2628719.0, "GEOID": 614288.0, "NAME": "Coarsegold", "NAMELSAD": "Coarsegold CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44620400.0, "AWATER": 172119.0, "INTPTLAT": 37.2391838, "INTPTLON": -119.7009723 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7009723, 37.2391838 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 685, "felt:has_geometry": true, "felt:h3_index": 644721820850935306, "STATEFP": 6.0, "PLACEFP": 14302.0, "PLACENS": 2407643.0, "GEOID": 614302.0, "NAME": "Cobb", "NAMELSAD": "Cobb CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12897761.0, "AWATER": 22376.0, "INTPTLAT": 38.8353286, "INTPTLON": -122.7224347 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7224347, 38.8353286 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6.0, "PLACEFP": 14406.0, "PLACENS": 2582977.0, "GEOID": 614406.0, "NAME": "Coffee Creek", "NAMELSAD": "Coffee Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225.0, "AWATER": 48535.0, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.716906, 41.0796733 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 687, "felt:has_geometry": true, "felt:h3_index": 644719852980995169, "STATEFP": 6.0, "PLACEFP": 14442.0, "PLACENS": 2612478.0, "GEOID": 614442.0, "NAME": "Cohasset", "NAMELSAD": "Cohasset CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 64868861.0, "AWATER": 0.0, "INTPTLAT": 39.9021522, "INTPTLON": -121.7453682 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7453682, 39.9021522 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 688, "felt:has_geometry": true, "felt:h3_index": 644721877290423584, "STATEFP": 6.0, "PLACEFP": 14450.0, "PLACENS": 2628720.0, "GEOID": 614450.0, "NAME": "Cold Springs", "NAMELSAD": "Cold Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2526035.0, "AWATER": 0.0, "INTPTLAT": 38.7464398, "INTPTLON": -120.8738066 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8738066, 38.7464398 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 689, "felt:has_geometry": true, "felt:h3_index": 644745766042224649, "STATEFP": 6.0, "PLACEFP": 14454.0, "PLACENS": 2628721.0, "GEOID": 614454.0, "NAME": "Cold Springs", "NAMELSAD": "Cold Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4492222.0, "AWATER": 0.0, "INTPTLAT": 38.1613351, "INTPTLON": -120.053527 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.053527, 38.1613351 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 690, "felt:has_geometry": true, "felt:h3_index": 644745734195958914, "STATEFP": 6.0, "PLACEFP": 14484.0, "PLACENS": 2582978.0, "GEOID": 614484.0, "NAME": "Coleville", "NAMELSAD": "Coleville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49897132.0, "AWATER": 0.0, "INTPTLAT": 38.5805614, "INTPTLON": -119.502863 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.502863, 38.5805614 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 691, "felt:has_geometry": true, "felt:h3_index": 644721992379966553, "STATEFP": 6.0, "PLACEFP": 14554.0, "PLACENS": 2582979.0, "GEOID": 614554.0, "NAME": "College City", "NAMELSAD": "College City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599771.0, "AWATER": 0.0, "INTPTLAT": 39.0060851, "INTPTLON": -122.0051338 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0051338, 39.0060851 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 692, "felt:has_geometry": true, "felt:h3_index": 644722157148125033, "STATEFP": 6.0, "PLACEFP": 14708.0, "PLACENS": 2582980.0, "GEOID": 614708.0, "NAME": "Collierville", "NAMELSAD": "Collierville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17080884.0, "AWATER": 25477.0, "INTPTLAT": 38.2128313, "INTPTLON": -121.2649723 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2649723, 38.2128313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 693, "felt:has_geometry": true, "felt:h3_index": 644721876709673065, "STATEFP": 6.0, "PLACEFP": 14764.0, "PLACENS": 2582981.0, "GEOID": 614764.0, "NAME": "Coloma", "NAMELSAD": "Coloma CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8689800.0, "AWATER": 0.0, "INTPTLAT": 38.802616, "INTPTLON": -120.8946346 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8946346, 38.802616 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 694, "felt:has_geometry": true, "felt:h3_index": 644722165883684261, "STATEFP": 6.0, "PLACEFP": 14904.0, "PLACENS": 2407648.0, "GEOID": 614904.0, "NAME": "Columbia", "NAMELSAD": "Columbia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15439975.0, "AWATER": 47252.0, "INTPTLAT": 38.0312272, "INTPTLON": -120.4133976 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4133976, 38.0312272 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 695, "felt:has_geometry": true, "felt:h3_index": 644718881748979876, "STATEFP": 6.0, "PLACEFP": 15030.0, "PLACENS": 2628722.0, "GEOID": 615030.0, "NAME": "Comptche", "NAMELSAD": "Comptche CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987584.0, "AWATER": 0.0, "INTPTLAT": 39.2651343, "INTPTLON": -123.5897145 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.5897145, 39.2651343 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 696, "felt:has_geometry": true, "felt:h3_index": 644719852337669908, "STATEFP": 6.0, "PLACEFP": 16035.0, "PLACENS": 2407652.0, "GEOID": 616035.0, "NAME": "Concow", "NAMELSAD": "Concow CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 70981496.0, "AWATER": 968640.0, "INTPTLAT": 39.7703164, "INTPTLON": -121.513493 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.513493, 39.7703164 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 697, "felt:has_geometry": true, "felt:h3_index": 644721785858178389, "STATEFP": 6.0, "PLACEFP": 16090.0, "PLACENS": 2409521.0, "GEOID": 616090.0, "NAME": "Contra Costa Centre", "NAMELSAD": "Contra Costa Centre CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1649047.0, "AWATER": 0.0, "INTPTLAT": 37.9259633, "INTPTLON": -122.0539766 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0539766, 37.9259633 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 698, "felt:has_geometry": true, "felt:h3_index": 644722163433479414, "STATEFP": 6.0, "PLACEFP": 16210.0, "PLACENS": 2407658.0, "GEOID": 616210.0, "NAME": "Copperopolis", "NAMELSAD": "Copperopolis CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 40377349.0, "AWATER": 63065.0, "INTPTLAT": 37.9653875, "INTPTLON": -120.6409728 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6409728, 37.9653875 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 699, "felt:has_geometry": true, "felt:h3_index": 644747067160306400, "STATEFP": 6.0, "PLACEFP": 16420.0, "PLACENS": 2582983.0, "GEOID": 616420.0, "NAME": "Coronita", "NAMELSAD": "Coronita CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1569105.0, "AWATER": 0.0, "INTPTLAT": 33.8758773, "INTPTLON": -117.6109827 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6109827, 33.8758773 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 700, "felt:has_geometry": true, "felt:h3_index": 644722062381154332, "STATEFP": 6.0, "PLACEFP": 16434.0, "PLACENS": 2407664.0, "GEOID": 616434.0, "NAME": "Corralitos", "NAMELSAD": "Corralitos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23065281.0, "AWATER": 37138.0, "INTPTLAT": 36.9842301, "INTPTLON": -121.7894324 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7894324, 36.9842301 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 701, "felt:has_geometry": true, "felt:h3_index": 644747057464647986, "STATEFP": 6.0, "PLACEFP": 16580.0, "PLACENS": 2407666.0, "GEOID": 616580.0, "NAME": "Coto de Caza", "NAMELSAD": "Coto de Caza CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20196169.0, "AWATER": 60610.0, "INTPTLAT": 33.5970366, "INTPTLON": -117.5864845 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5864845, 33.5970366 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 702, "felt:has_geometry": true, "felt:h3_index": 644748030845869186, "STATEFP": 6.0, "PLACEFP": 16623.0, "PLACENS": 2804112.0, "GEOID": 616623.0, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1017555.0, "AWATER": 0.0, "INTPTLAT": 35.3455883, "INTPTLON": -118.9858564 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9858564, 35.3455883 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6.0, "PLACEFP": 16630.0, "PLACENS": 2407668.0, "GEOID": 616630.0, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530.0, "AWATER": 0.0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3156307, 40.390291 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 704, "felt:has_geometry": true, "felt:h3_index": 644722169544468808, "STATEFP": 6.0, "PLACEFP": 16644.0, "PLACENS": 2582984.0, "GEOID": 616644.0, "NAME": "Coulterville", "NAMELSAD": "Coulterville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1007403.0, "AWATER": 1813.0, "INTPTLAT": 37.7125732, "INTPTLON": -120.1960615 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1960615, 37.7125732 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 705, "felt:has_geometry": true, "felt:h3_index": 644722154141826058, "STATEFP": 6.0, "PLACEFP": 16651.0, "PLACENS": 2407672.0, "GEOID": 616651.0, "NAME": "Country Club", "NAMELSAD": "Country Club CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4964750.0, "AWATER": 438737.0, "INTPTLAT": 37.9680363, "INTPTLON": -121.3404823 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3404823, 37.9680363 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 706, "felt:has_geometry": true, "felt:h3_index": 644721752646225988, "STATEFP": 6.0, "PLACEFP": 16714.0, "PLACENS": 2582985.0, "GEOID": 616714.0, "NAME": "Courtland", "NAMELSAD": "Courtland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4662083.0, "AWATER": 0.0, "INTPTLAT": 38.3329109, "INTPTLON": -121.5570263 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5570263, 38.3329109 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 707, "felt:has_geometry": true, "felt:h3_index": 644718869174552388, "STATEFP": 6.0, "PLACEFP": 16728.0, "PLACENS": 2407675.0, "GEOID": 616728.0, "NAME": "Covelo", "NAMELSAD": "Covelo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18377116.0, "AWATER": 111658.0, "INTPTLAT": 39.8001872, "INTPTLON": -123.2526012 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.2526012, 39.8001872 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 708, "felt:has_geometry": true, "felt:h3_index": 644722149397808885, "STATEFP": 6.0, "PLACEFP": 16762.0, "PLACENS": 2628723.0, "GEOID": 616762.0, "NAME": "Cowan", "NAMELSAD": "Cowan CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 365090.0, "AWATER": 0.0, "INTPTLAT": 37.5601052, "INTPTLON": -120.9887874 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9887874, 37.5601052 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 709, "felt:has_geometry": true, "felt:h3_index": 644719839149759169, "STATEFP": 6.0, "PLACEFP": 17050.0, "PLACENS": 2407679.0, "GEOID": 617050.0, "NAME": "Crescent Mills", "NAMELSAD": "Crescent Mills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10985561.0, "AWATER": 0.0, "INTPTLAT": 40.1007411, "INTPTLON": -120.921706 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.921706, 40.1007411 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 710, "felt:has_geometry": true, "felt:h3_index": 644722197321859747, "STATEFP": 6.0, "PLACEFP": 17078.0, "PLACENS": 2582986.0, "GEOID": 617078.0, "NAME": "Cressey", "NAMELSAD": "Cressey CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4554487.0, "AWATER": 0.0, "INTPTLAT": 37.4210299, "INTPTLON": -120.6556898 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6556898, 37.4210299 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 711, "felt:has_geometry": true, "felt:h3_index": 644747319712212869, "STATEFP": 6.0, "PLACEFP": 17106.0, "PLACENS": 2407680.0, "GEOID": 617106.0, "NAME": "Crest", "NAMELSAD": "Crest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16913607.0, "AWATER": 0.0, "INTPTLAT": 32.8000203, "INTPTLON": -116.8670776 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8670776, 32.8000203 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 712, "felt:has_geometry": true, "felt:h3_index": 644747053195790667, "STATEFP": 6.0, "PLACEFP": 17162.0, "PLACENS": 2407681.0, "GEOID": 617162.0, "NAME": "Crestline", "NAMELSAD": "Crestline CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36012359.0, "AWATER": 308820.0, "INTPTLAT": 34.2540767, "INTPTLON": -117.2867092 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2867092, 34.2540767 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 713, "felt:has_geometry": true, "felt:h3_index": 644747937433283797, "STATEFP": 6.0, "PLACEFP": 17232.0, "PLACENS": 2628724.0, "GEOID": 617232.0, "NAME": "Creston", "NAMELSAD": "Creston CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1460395.0, "AWATER": 12359.0, "INTPTLAT": 35.5170972, "INTPTLON": -120.518136 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.518136, 35.5170972 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 714, "felt:has_geometry": true, "felt:h3_index": 644719862426371148, "STATEFP": 6.0, "PLACEFP": 17267.0, "PLACENS": 2407682.0, "GEOID": 617267.0, "NAME": "C-Road", "NAMELSAD": "C-Road CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6891297.0, "AWATER": 0.0, "INTPTLAT": 39.7627283, "INTPTLON": -120.5770513 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5770513, 39.7627283 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 715, "felt:has_geometry": true, "felt:h3_index": 644721737004501828, "STATEFP": 6.0, "PLACEFP": 17274.0, "PLACENS": 2407683.0, "GEOID": 617274.0, "NAME": "Crockett", "NAMELSAD": "Crockett CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2751227.0, "AWATER": 0.0, "INTPTLAT": 38.0519195, "INTPTLON": -122.2201268 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2201268, 38.0519195 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 716, "felt:has_geometry": true, "felt:h3_index": 644719831736263315, "STATEFP": 6.0, "PLACEFP": 17288.0, "PLACENS": 2407684.0, "GEOID": 617288.0, "NAME": "Cromberg", "NAMELSAD": "Cromberg CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23385108.0, "AWATER": 0.0, "INTPTLAT": 39.8683829, "INTPTLON": -120.6904463 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6904463, 39.8683829 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 717, "felt:has_geometry": true, "felt:h3_index": 644745685214521227, "STATEFP": 6.0, "PLACEFP": 17372.0, "PLACENS": 2582987.0, "GEOID": 617372.0, "NAME": "Crowley Lake", "NAMELSAD": "Crowley Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7475668.0, "AWATER": 6392.0, "INTPTLAT": 37.5687424, "INTPTLON": -118.7464214 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7464214, 37.5687424 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 718, "felt:has_geometry": true, "felt:h3_index": 644722179814613913, "STATEFP": 6.0, "PLACEFP": 17428.0, "PLACENS": 2582988.0, "GEOID": 617428.0, "NAME": "Crows Landing", "NAMELSAD": "Crows Landing CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4282672.0, "AWATER": 0.0, "INTPTLAT": 37.3944426, "INTPTLON": -121.0751665 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0751665, 37.3944426 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 719, "felt:has_geometry": true, "felt:h3_index": 644747757734872203, "STATEFP": 6.0, "PLACEFP": 17708.0, "PLACENS": 2408636.0, "GEOID": 617708.0, "NAME": "Cutler", "NAMELSAD": "Cutler CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3168966.0, "AWATER": 0.0, "INTPTLAT": 36.5246643, "INTPTLON": -119.2888288 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2888288, 36.5246643 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 720, "felt:has_geometry": true, "felt:h3_index": 644718618362166534, "STATEFP": 6.0, "PLACEFP": 17722.0, "PLACENS": 2408637.0, "GEOID": 617722.0, "NAME": "Cutten", "NAMELSAD": "Cutten CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3325001.0, "AWATER": 0.0, "INTPTLAT": 40.7656839, "INTPTLON": -124.1444615 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1444615, 40.7656839 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 721, "felt:has_geometry": true, "felt:h3_index": 644747850852946089, "STATEFP": 6.0, "PLACEFP": 17727.0, "PLACENS": 2582989.0, "GEOID": 617727.0, "NAME": "Cuyama", "NAMELSAD": "Cuyama CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1174244.0, "AWATER": 11429.0, "INTPTLAT": 34.9310567, "INTPTLON": -119.6148797 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6148797, 34.9310567 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 722, "felt:has_geometry": true, "felt:h3_index": 644719884019783468, "STATEFP": 6.0, "PLACEFP": 17876.0, "PLACENS": 2804439.0, "GEOID": 617876.0, "NAME": "Dales", "NAMELSAD": "Dales CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1671161.0, "AWATER": 21566.0, "INTPTLAT": 40.3179889, "INTPTLON": -122.0538444 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0538444, 40.3179889 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6.0, "PLACEFP": 17995.0, "PLACENS": 2582990.0, "GEOID": 617995.0, "NAME": "Daphnedale Park", "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441.0, "AWATER": 4621.0, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.548069, 41.5068637 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 724, "felt:has_geometry": true, "felt:h3_index": 644745211606247814, "STATEFP": 6.0, "PLACEFP": 18030.0, "PLACENS": 2408642.0, "GEOID": 618030.0, "NAME": "Darwin", "NAMELSAD": "Darwin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3484705.0, "AWATER": 0.0, "INTPTLAT": 36.2688034, "INTPTLON": -117.5890042 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5890042, 36.2688034 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 725, "felt:has_geometry": true, "felt:h3_index": 644722013311284645, "STATEFP": 6.0, "PLACEFP": 18086.0, "PLACENS": 2582991.0, "GEOID": 618086.0, "NAME": "Davenport", "NAMELSAD": "Davenport CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7367925.0, "AWATER": 0.0, "INTPTLAT": 37.0177787, "INTPTLON": -122.1878849 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1878849, 37.0177787 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 726, "felt:has_geometry": true, "felt:h3_index": 644722062487377244, "STATEFP": 6.0, "PLACEFP": 18153.0, "PLACENS": 2408643.0, "GEOID": 618153.0, "NAME": "Day Valley", "NAMELSAD": "Day Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47922347.0, "AWATER": 0.0, "INTPTLAT": 37.0254391, "INTPTLON": -121.8559314 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8559314, 37.0254391 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 727, "felt:has_geometry": true, "felt:h3_index": 644721744168381442, "STATEFP": 6.0, "PLACEFP": 18324.0, "PLACENS": 2408647.0, "GEOID": 618324.0, "NAME": "Deer Park", "NAMELSAD": "Deer Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14547393.0, "AWATER": 9415.0, "INTPTLAT": 38.5351762, "INTPTLON": -122.470152 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.470152, 38.5351762 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 728, "felt:has_geometry": true, "felt:h3_index": 644747394804722374, "STATEFP": 6.0, "PLACEFP": 18352.0, "PLACENS": 2408648.0, "GEOID": 618352.0, "NAME": "Del Aire", "NAMELSAD": "Del Aire CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2611524.0, "AWATER": 0.0, "INTPTLAT": 33.9167378, "INTPTLON": -118.3692899 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3692899, 33.9167378 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 729, "felt:has_geometry": true, "felt:h3_index": 644747597828172160, "STATEFP": 6.0, "PLACEFP": 18450.0, "PLACENS": 2585407.0, "GEOID": 618450.0, "NAME": "Delft Colony", "NAMELSAD": "Delft Colony CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 344432.0, "AWATER": 0.0, "INTPTLAT": 36.5138094, "INTPTLON": -119.446522 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.446522, 36.5138094 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 730, "felt:has_geometry": true, "felt:h3_index": 644722198266885518, "STATEFP": 6.0, "PLACEFP": 18464.0, "PLACENS": 2408654.0, "GEOID": 618464.0, "NAME": "Delhi", "NAMELSAD": "Delhi CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9092104.0, "AWATER": 0.0, "INTPTLAT": 37.4305992, "INTPTLON": -120.7758992 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7758992, 37.4305992 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 731, "felt:has_geometry": true, "felt:h3_index": 644719830913652626, "STATEFP": 6.0, "PLACEFP": 18485.0, "PLACENS": 2408655.0, "GEOID": 618485.0, "NAME": "Delleker", "NAMELSAD": "Delleker CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7164105.0, "AWATER": 4955.0, "INTPTLAT": 39.813251, "INTPTLON": -120.4896708 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4896708, 39.813251 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 732, "felt:has_geometry": true, "felt:h3_index": 644737842093117469, "STATEFP": 6.0, "PLACEFP": 18590.0, "PLACENS": 2408650.0, "GEOID": 618590.0, "NAME": "Del Monte Forest", "NAMELSAD": "Del Monte Forest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20787965.0, "AWATER": 6766175.0, "INTPTLAT": 36.5838337, "INTPTLON": -121.9467143 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9467143, 36.5838337 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 733, "felt:has_geometry": true, "felt:h3_index": 644747600957454509, "STATEFP": 6.0, "PLACEFP": 18674.0, "PLACENS": 2408651.0, "GEOID": 618674.0, "NAME": "Del Rey", "NAMELSAD": "Del Rey CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3456848.0, "AWATER": 0.0, "INTPTLAT": 36.6564641, "INTPTLON": -119.5981349 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5981349, 36.6564641 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 734, "felt:has_geometry": true, "felt:h3_index": 644722145209887770, "STATEFP": 6.0, "PLACEFP": 18695.0, "PLACENS": 2408652.0, "GEOID": 618695.0, "NAME": "Del Rio", "NAMELSAD": "Del Rio CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5173472.0, "AWATER": 136437.0, "INTPTLAT": 37.745907, "INTPTLON": -121.0092928 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0092928, 37.745907 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 735, "felt:has_geometry": true, "felt:h3_index": 644722197644914963, "STATEFP": 6.0, "PLACEFP": 18856.0, "PLACENS": 2408657.0, "GEOID": 618856.0, "NAME": "Denair", "NAMELSAD": "Denair CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4253064.0, "AWATER": 0.0, "INTPTLAT": 37.5253977, "INTPTLON": -120.7974329 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7974329, 37.5253977 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 736, "felt:has_geometry": true, "felt:h3_index": 644747849762672988, "STATEFP": 6.0, "PLACEFP": 18926.0, "PLACENS": 2408660.0, "GEOID": 618926.0, "NAME": "Derby Acres", "NAMELSAD": "Derby Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9274814.0, "AWATER": 0.0, "INTPTLAT": 35.2440253, "INTPTLON": -119.603833 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.603833, 35.2440253 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 737, "felt:has_geometry": true, "felt:h3_index": 644747320189325364, "STATEFP": 6.0, "PLACEFP": 18940.0, "PLACENS": 2582992.0, "GEOID": 618940.0, "NAME": "Descanso", "NAMELSAD": "Descanso CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49613062.0, "AWATER": 0.0, "INTPTLAT": 32.8695654, "INTPTLON": -116.6278783 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.6278783, 32.8695654 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 738, "felt:has_geometry": true, "felt:h3_index": 644748511879802058, "STATEFP": 6.0, "PLACEFP": 18982.0, "PLACENS": 2582993.0, "GEOID": 618982.0, "NAME": "Desert Center", "NAMELSAD": "Desert Center CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799210.0, "AWATER": 0.0, "INTPTLAT": 33.7377986, "INTPTLON": -115.3666216 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.3666216, 33.7377986 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 739, "felt:has_geometry": true, "felt:h3_index": 644747445796426793, "STATEFP": 6.0, "PLACEFP": 18986.0, "PLACENS": 2582994.0, "GEOID": 618986.0, "NAME": "Desert Edge", "NAMELSAD": "Desert Edge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5872955.0, "AWATER": 0.0, "INTPTLAT": 33.9222888, "INTPTLON": -116.4400922 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4400922, 33.9222888 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 740, "felt:has_geometry": true, "felt:h3_index": 644747445260133184, "STATEFP": 6.0, "PLACEFP": 19022.0, "PLACENS": 2629131.0, "GEOID": 619022.0, "NAME": "Desert Palms", "NAMELSAD": "Desert Palms CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6927150.0, "AWATER": 2271.0, "INTPTLAT": 33.7791438, "INTPTLON": -116.2982193 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2982193, 33.7791438 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 741, "felt:has_geometry": true, "felt:h3_index": 644747433847119077, "STATEFP": 6.0, "PLACEFP": 19024.0, "PLACENS": 2408665.0, "GEOID": 619024.0, "NAME": "Desert Shores", "NAMELSAD": "Desert Shores CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1809312.0, "AWATER": 294345.0, "INTPTLAT": 33.4038032, "INTPTLON": -116.0392059 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.0392059, 33.4038032 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 742, "felt:has_geometry": true, "felt:h3_index": 644747112917918427, "STATEFP": 6.0, "PLACEFP": 19052.0, "PLACENS": 2408666.0, "GEOID": 619052.0, "NAME": "Desert View Highlands", "NAMELSAD": "Desert View Highlands CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1142187.0, "AWATER": 0.0, "INTPTLAT": 34.5902628, "INTPTLON": -118.1535367 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1535367, 34.5902628 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 743, "felt:has_geometry": true, "felt:h3_index": 644721789885605172, "STATEFP": 6.0, "PLACEFP": 19150.0, "PLACENS": 2408668.0, "GEOID": 619150.0, "NAME": "Diablo", "NAMELSAD": "Diablo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3531932.0, "AWATER": 0.0, "INTPTLAT": 37.8407738, "INTPTLON": -121.956477 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.956477, 37.8407738 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 744, "felt:has_geometry": true, "felt:h3_index": 644722180488469587, "STATEFP": 6.0, "PLACEFP": 19155.0, "PLACENS": 2582995.0, "GEOID": 619155.0, "NAME": "Diablo Grande", "NAMELSAD": "Diablo Grande CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11132191.0, "AWATER": 24652.0, "INTPTLAT": 37.3990466, "INTPTLON": -121.263511 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.263511, 37.3990466 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 745, "felt:has_geometry": true, "felt:h3_index": 644721877220861584, "STATEFP": 6.0, "PLACEFP": 19220.0, "PLACENS": 2408669.0, "GEOID": 619220.0, "NAME": "Diamond Springs", "NAMELSAD": "Diamond Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43097229.0, "AWATER": 187916.0, "INTPTLAT": 38.6920143, "INTPTLON": -120.8386844 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8386844, 38.6920143 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 746, "felt:has_geometry": true, "felt:h3_index": 644748019522180110, "STATEFP": 6.0, "PLACEFP": 19248.0, "PLACENS": 2804113.0, "GEOID": 619248.0, "NAME": "Di Giorgio", "NAMELSAD": "Di Giorgio CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 221326.0, "AWATER": 0.0, "INTPTLAT": 35.2491183, "INTPTLON": -118.8441536 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8441536, 35.2491183 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 747, "felt:has_geometry": true, "felt:h3_index": 644721857553584128, "STATEFP": 6.0, "PLACEFP": 19262.0, "PLACENS": 2408671.0, "GEOID": 619262.0, "NAME": "Dillon Beach", "NAMELSAD": "Dillon Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7727875.0, "AWATER": 0.0, "INTPTLAT": 38.2434883, "INTPTLON": -122.955955 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.955955, 38.2434883 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 748, "felt:has_geometry": true, "felt:h3_index": 644722159723681665, "STATEFP": 6.0, "PLACEFP": 19339.0, "PLACENS": 2408672.0, "GEOID": 619339.0, "NAME": "Discovery Bay", "NAMELSAD": "Discovery Bay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14482205.0, "AWATER": 3514422.0, "INTPTLAT": 37.9081313, "INTPTLON": -121.5971956 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5971956, 37.9081313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 749, "felt:has_geometry": true, "felt:h3_index": 644745688251990388, "STATEFP": 6.0, "PLACEFP": 19406.0, "PLACENS": 2408675.0, "GEOID": 619406.0, "NAME": "Dixon Lane-MeadowCreek", "NAMELSAD": "Dixon Lane-MeadowCreek CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8701384.0, "AWATER": 0.0, "INTPTLAT": 37.3863883, "INTPTLON": -118.4152731 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4152731, 37.3863883 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 750, "felt:has_geometry": true, "felt:h3_index": 644719847200111876, "STATEFP": 6.0, "PLACEFP": 19416.0, "PLACENS": 2582996.0, "GEOID": 619416.0, "NAME": "Dobbins", "NAMELSAD": "Dobbins CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20051346.0, "AWATER": 187248.0, "INTPTLAT": 39.3565902, "INTPTLON": -121.2103783 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2103783, 39.3565902 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 751, "felt:has_geometry": true, "felt:h3_index": 644721909428589746, "STATEFP": 6.0, "PLACEFP": 19440.0, "PLACENS": 2582997.0, "GEOID": 619440.0, "NAME": "Dogtown", "NAMELSAD": "Dogtown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33584172.0, "AWATER": 57248.0, "INTPTLAT": 38.2086668, "INTPTLON": -121.1548094 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1548094, 38.2086668 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 752, "felt:has_geometry": true, "felt:h3_index": 644745476801963758, "STATEFP": 6.0, "PLACEFP": 19455.0, "PLACENS": 2408680.0, "GEOID": 619455.0, "NAME": "Dollar Point", "NAMELSAD": "Dollar Point CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4234923.0, "AWATER": 544222.0, "INTPTLAT": 39.1896257, "INTPTLON": -120.1094264 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1094264, 39.1896257 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 753, "felt:has_geometry": true, "felt:h3_index": 644745759144041310, "STATEFP": 6.0, "PLACEFP": 19570.0, "PLACENS": 2408683.0, "GEOID": 619570.0, "NAME": "Dorrington", "NAMELSAD": "Dorrington CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10600543.0, "AWATER": 12551.0, "INTPTLAT": 38.304479, "INTPTLON": -120.2663205 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2663205, 38.304479 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 754, "felt:has_geometry": true, "felt:h3_index": 644747668483560090, "STATEFP": 6.0, "PLACEFP": 19654.0, "PLACENS": 2582998.0, "GEOID": 619654.0, "NAME": "Dos Palos Y", "NAMELSAD": "Dos Palos Y CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4054329.0, "AWATER": 0.0, "INTPTLAT": 37.0468402, "INTPTLON": -120.6394732 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6394732, 37.0468402 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 755, "felt:has_geometry": true, "felt:h3_index": 644719887485913369, "STATEFP": 6.0, "PLACEFP": 19724.0, "PLACENS": 2582999.0, "GEOID": 619724.0, "NAME": "Douglas City", "NAMELSAD": "Douglas City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799839.0, "AWATER": 32384.0, "INTPTLAT": 40.6449532, "INTPTLON": -122.9274263 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9274263, 40.6449532 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 756, "felt:has_geometry": true, "felt:h3_index": 644719865958048474, "STATEFP": 6.0, "PLACEFP": 19794.0, "PLACENS": 2583000.0, "GEOID": 619794.0, "NAME": "Downieville", "NAMELSAD": "Downieville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8237935.0, "AWATER": 14330.0, "INTPTLAT": 39.5786434, "INTPTLON": -120.8164052 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8164052, 39.5786434 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 757, "felt:has_geometry": true, "felt:h3_index": 644719986573508608, "STATEFP": 6.0, "PLACEFP": 19878.0, "PLACENS": 2583001.0, "GEOID": 619878.0, "NAME": "Doyle", "NAMELSAD": "Doyle CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15817150.0, "AWATER": 1998.0, "INTPTLAT": 40.027223, "INTPTLON": -120.1153701 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1153701, 40.027223 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 758, "felt:has_geometry": true, "felt:h3_index": 644721927748215626, "STATEFP": 6.0, "PLACEFP": 19976.0, "PLACENS": 2583002.0, "GEOID": 619976.0, "NAME": "Drytown", "NAMELSAD": "Drytown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8432611.0, "AWATER": 7631.0, "INTPTLAT": 38.4414885, "INTPTLON": -120.8605043 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8605043, 38.4414885 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 759, "felt:has_geometry": true, "felt:h3_index": 644747997624067506, "STATEFP": 6.0, "PLACEFP": 20032.0, "PLACENS": 2408692.0, "GEOID": 620032.0, "NAME": "Ducor", "NAMELSAD": "Ducor CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1442359.0, "AWATER": 0.0, "INTPTLAT": 35.892701, "INTPTLON": -119.0470096 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0470096, 35.892701 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 760, "felt:has_geometry": true, "felt:h3_index": 644721994845959590, "STATEFP": 6.0, "PLACEFP": 20228.0, "PLACENS": 2583003.0, "GEOID": 620228.0, "NAME": "Dunnigan", "NAMELSAD": "Dunnigan CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13551020.0, "AWATER": 0.0, "INTPTLAT": 38.8926428, "INTPTLON": -121.9741835 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9741835, 38.8926428 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 761, "felt:has_geometry": true, "felt:h3_index": 644719857471115969, "STATEFP": 6.0, "PLACEFP": 20270.0, "PLACENS": 2408696.0, "GEOID": 620270.0, "NAME": "Durham", "NAMELSAD": "Durham CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 211567384.0, "AWATER": 393109.0, "INTPTLAT": 39.6293576, "INTPTLON": -121.7907705 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7907705, 39.6293576 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 762, "felt:has_geometry": true, "felt:h3_index": 644747864549918555, "STATEFP": 6.0, "PLACEFP": 20284.0, "PLACENS": 2408697.0, "GEOID": 620284.0, "NAME": "Dustin Acres", "NAMELSAD": "Dustin Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9521683.0, "AWATER": 0.0, "INTPTLAT": 35.2159286, "INTPTLON": -119.3749872 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3749872, 35.2159286 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 763, "felt:has_geometry": true, "felt:h3_index": 644721896008771724, "STATEFP": 6.0, "PLACEFP": 20298.0, "PLACENS": 2628726.0, "GEOID": 620298.0, "NAME": "Dutch Flat", "NAMELSAD": "Dutch Flat CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1534848.0, "AWATER": 0.0, "INTPTLAT": 39.2080078, "INTPTLON": -120.834476 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.834476, 39.2080078 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6.0, "PLACEFP": 20424.0, "PLACENS": 2628727.0, "GEOID": 620424.0, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306.0, "AWATER": 0.0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1146071, 41.3189931 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 765, "felt:has_geometry": true, "felt:h3_index": 644747625667123280, "STATEFP": 6.0, "PLACEFP": 20438.0, "PLACENS": 2408701.0, "GEOID": 620438.0, "NAME": "Earlimart", "NAMELSAD": "Earlimart CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7519391.0, "AWATER": 0.0, "INTPTLAT": 35.8913541, "INTPTLON": -119.2720916 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2720916, 35.8913541 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 766, "felt:has_geometry": true, "felt:h3_index": 644748030838332233, "STATEFP": 6.0, "PLACEFP": 20515.0, "PLACENS": 2804114.0, "GEOID": 620515.0, "NAME": "East Bakersfield", "NAMELSAD": "East Bakersfield CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2038622.0, "AWATER": 0.0, "INTPTLAT": 35.3831848, "INTPTLON": -118.9743682 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9743682, 35.3831848 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 767, "felt:has_geometry": true, "felt:h3_index": 644747884789663564, "STATEFP": 6.0, "PLACEFP": 20574.0, "PLACENS": 2813349.0, "GEOID": 620574.0, "NAME": "Eastern Goleta Valley", "NAMELSAD": "Eastern Goleta Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42981068.0, "AWATER": 755520.0, "INTPTLAT": 34.4439133, "INTPTLON": -119.7854766 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7854766, 34.4439133 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 768, "felt:has_geometry": true, "felt:h3_index": 644722040360969481, "STATEFP": 6.0, "PLACEFP": 20598.0, "PLACENS": 2408705.0, "GEOID": 620598.0, "NAME": "East Foothills", "NAMELSAD": "East Foothills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5508601.0, "AWATER": 0.0, "INTPTLAT": 37.3826072, "INTPTLON": -121.8137493 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8137493, 37.3826072 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 769, "felt:has_geometry": true, "felt:h3_index": 644747076834795843, "STATEFP": 6.0, "PLACEFP": 20697.0, "PLACENS": 2408708.0, "GEOID": 620697.0, "NAME": "East Hemet", "NAMELSAD": "East Hemet CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13464992.0, "AWATER": 0.0, "INTPTLAT": 33.7301141, "INTPTLON": -116.9410012 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9410012, 33.7301141 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 770, "felt:has_geometry": true, "felt:h3_index": 644747146735274539, "STATEFP": 6.0, "PLACEFP": 20802.0, "PLACENS": 2408711.0, "GEOID": 620802.0, "NAME": "East Los Angeles", "NAMELSAD": "East Los Angeles CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19303560.0, "AWATER": 11013.0, "INTPTLAT": 34.0315059, "INTPTLON": -118.1685666 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1685666, 34.0315059 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 771, "felt:has_geometry": true, "felt:h3_index": 644721916787448432, "STATEFP": 6.0, "PLACEFP": 20900.0, "PLACENS": 2583004.0, "GEOID": 620900.0, "NAME": "East Nicolaus", "NAMELSAD": "East Nicolaus CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11867921.0, "AWATER": 0.0, "INTPTLAT": 38.9100443, "INTPTLON": -121.5443193 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5443193, 38.9100443 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 772, "felt:has_geometry": true, "felt:h3_index": 644748031133014646, "STATEFP": 6.0, "PLACEFP": 20903.0, "PLACENS": 2804115.0, "GEOID": 620903.0, "NAME": "East Niles", "NAMELSAD": "East Niles CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14134961.0, "AWATER": 0.0, "INTPTLAT": 35.3682728, "INTPTLON": -118.9224616 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9224616, 35.3682728 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 773, "felt:has_geometry": true, "felt:h3_index": 644722147748173379, "STATEFP": 6.0, "PLACEFP": 20907.0, "PLACENS": 2408714.0, "GEOID": 620907.0, "NAME": "East Oakdale", "NAMELSAD": "East Oakdale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13966924.0, "AWATER": 386258.0, "INTPTLAT": 37.7838665, "INTPTLON": -120.7986313 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7986313, 37.7838665 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 774, "felt:has_geometry": true, "felt:h3_index": 644747598277946656, "STATEFP": 6.0, "PLACEFP": 20928.0, "PLACENS": 2408041.0, "GEOID": 620928.0, "NAME": "Easton", "NAMELSAD": "Easton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7799485.0, "AWATER": 0.0, "INTPTLAT": 36.6523908, "INTPTLON": -119.790786 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.790786, 36.6523908 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 775, "felt:has_geometry": true, "felt:h3_index": 644747757646210161, "STATEFP": 6.0, "PLACEFP": 20942.0, "PLACENS": 2408715.0, "GEOID": 620942.0, "NAME": "East Orosi", "NAMELSAD": "East Orosi CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 642248.0, "AWATER": 0.0, "INTPTLAT": 36.5480688, "INTPTLON": -119.2598526 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2598526, 36.5480688 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 776, "felt:has_geometry": true, "felt:h3_index": 644747142614124832, "STATEFP": 6.0, "PLACEFP": 20984.0, "PLACENS": 2408716.0, "GEOID": 620984.0, "NAME": "East Pasadena", "NAMELSAD": "East Pasadena CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3411833.0, "AWATER": 13187.0, "INTPTLAT": 34.1367984, "INTPTLON": -118.0775355 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0775355, 34.1367984 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 777, "felt:has_geometry": true, "felt:h3_index": 644747993605562733, "STATEFP": 6.0, "PLACEFP": 21012.0, "PLACENS": 2408032.0, "GEOID": 621012.0, "NAME": "East Porterville", "NAMELSAD": "East Porterville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5496322.0, "AWATER": 0.0, "INTPTLAT": 36.0581549, "INTPTLON": -118.9748923 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9748923, 36.0581549 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 778, "felt:has_geometry": true, "felt:h3_index": 644719811307321225, "STATEFP": 6.0, "PLACEFP": 21026.0, "PLACENS": 2408033.0, "GEOID": 621026.0, "NAME": "East Quincy", "NAMELSAD": "East Quincy CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31368457.0, "AWATER": 0.0, "INTPTLAT": 39.9164303, "INTPTLON": -120.9189403 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9189403, 39.9164303 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 779, "felt:has_geometry": true, "felt:h3_index": 644747394894878306, "STATEFP": 6.0, "PLACEFP": 21034.0, "PLACENS": 2408704.0, "GEOID": 621034.0, "NAME": "East Rancho Dominguez", "NAMELSAD": "East Rancho Dominguez CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2127127.0, "AWATER": 0.0, "INTPTLAT": 33.8948406, "INTPTLON": -118.1955862 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1955862, 33.8948406 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 780, "felt:has_geometry": true, "felt:h3_index": 644721770635534699, "STATEFP": 6.0, "PLACEFP": 21061.0, "PLACENS": 2408035.0, "GEOID": 621061.0, "NAME": "East Richmond Heights", "NAMELSAD": "East Richmond Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1501846.0, "AWATER": 0.0, "INTPTLAT": 37.9450844, "INTPTLON": -122.3139102 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3139102, 37.9450844 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 781, "felt:has_geometry": true, "felt:h3_index": 644747146467787788, "STATEFP": 6.0, "PLACEFP": 21096.0, "PLACENS": 2408037.0, "GEOID": 621096.0, "NAME": "East San Gabriel", "NAMELSAD": "East San Gabriel CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5641695.0, "AWATER": 35252.0, "INTPTLAT": 34.1161886, "INTPTLON": -118.0798859 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0798859, 34.1161886 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 782, "felt:has_geometry": true, "felt:h3_index": 644719839740906217, "STATEFP": 6.0, "PLACEFP": 21138.0, "PLACENS": 2408038.0, "GEOID": 621138.0, "NAME": "East Shore", "NAMELSAD": "East Shore CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3063617.0, "AWATER": 0.0, "INTPTLAT": 40.2452687, "INTPTLON": -121.0767779 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0767779, 40.2452687 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 783, "felt:has_geometry": true, "felt:h3_index": 644722164500125035, "STATEFP": 6.0, "PLACEFP": 21188.0, "PLACENS": 2408039.0, "GEOID": 621188.0, "NAME": "East Sonora", "NAMELSAD": "East Sonora CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334625.0, "AWATER": 13419.0, "INTPTLAT": 37.9742408, "INTPTLON": -120.3380353 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3380353, 37.9742408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 784, "felt:has_geometry": true, "felt:h3_index": 644747589158480278, "STATEFP": 6.0, "PLACEFP": 21210.0, "PLACENS": 2585408.0, "GEOID": 621210.0, "NAME": "East Tulare Villa", "NAMELSAD": "East Tulare Villa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 731424.0, "AWATER": 0.0, "INTPTLAT": 36.2037626, "INTPTLON": -119.2803352 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2803352, 36.2037626 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 785, "felt:has_geometry": true, "felt:h3_index": 644747066264019059, "STATEFP": 6.0, "PLACEFP": 21292.0, "PLACENS": 2408710.0, "GEOID": 621292.0, "NAME": "East Whittier", "NAMELSAD": "East Whittier CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2823028.0, "AWATER": 0.0, "INTPTLAT": 33.9243762, "INTPTLON": -117.9887317 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9887317, 33.9243762 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 786, "felt:has_geometry": true, "felt:h3_index": 644719602563303620, "STATEFP": 6.0, "PLACEFP": 21530.0, "PLACENS": 2408045.0, "GEOID": 621530.0, "NAME": "Edgewood", "NAMELSAD": "Edgewood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2656702.0, "AWATER": 12263.0, "INTPTLAT": 41.4607727, "INTPTLON": -122.4256868 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4256868, 41.4607727 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 787, "felt:has_geometry": true, "felt:h3_index": 644748019120552274, "STATEFP": 6.0, "PLACEFP": 21544.0, "PLACENS": 2804117.0, "GEOID": 621544.0, "NAME": "Edison", "NAMELSAD": "Edison CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2621330.0, "AWATER": 0.0, "INTPTLAT": 35.347313, "INTPTLON": -118.8698256 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8698256, 35.347313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 788, "felt:has_geometry": true, "felt:h3_index": 644748019513837110, "STATEFP": 6.0, "PLACEFP": 21558.0, "PLACENS": 2629761.0, "GEOID": 621558.0, "NAME": "Edmundson Acres", "NAMELSAD": "Edmundson Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 172230.0, "AWATER": 0.0, "INTPTLAT": 35.2272959, "INTPTLON": -118.823252 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.823252, 35.2272959 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 789, "felt:has_geometry": true, "felt:h3_index": 644747967039661315, "STATEFP": 6.0, "PLACEFP": 21565.0, "PLACENS": 2583005.0, "GEOID": 621565.0, "NAME": "Edna", "NAMELSAD": "Edna CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3158448.0, "AWATER": 0.0, "INTPTLAT": 35.2107858, "INTPTLON": -120.6059679 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6059679, 35.2107858 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 790, "felt:has_geometry": true, "felt:h3_index": 644747276044088179, "STATEFP": 6.0, "PLACEFP": 21600.0, "PLACENS": 2408048.0, "GEOID": 621600.0, "NAME": "Edwards AFB", "NAMELSAD": "Edwards AFB CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44377479.0, "AWATER": 1729.0, "INTPTLAT": 34.9024079, "INTPTLON": -117.9218689 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9218689, 34.9024079 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 791, "felt:has_geometry": true, "felt:h3_index": 644747865892179356, "STATEFP": 6.0, "PLACEFP": 21691.0, "PLACENS": 2804119.0, "GEOID": 621691.0, "NAME": "El Adobe", "NAMELSAD": "El Adobe CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2594445.0, "AWATER": 0.0, "INTPTLAT": 35.2450825, "INTPTLON": -118.9588417 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9588417, 35.2450825 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 792, "felt:has_geometry": true, "felt:h3_index": 645287528565971236, "STATEFP": 6.0, "PLACEFP": 21788.0, "PLACENS": 2805234.0, "GEOID": 621788.0, "NAME": "El Centro Naval Air Facility", "NAMELSAD": "El Centro Naval Air Facility CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10855446.0, "AWATER": 0.0, "INTPTLAT": 32.8252316, "INTPTLON": -115.6680724 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.6680724, 32.8252316 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 793, "felt:has_geometry": true, "felt:h3_index": 644747071172589648, "STATEFP": 6.0, "PLACEFP": 21810.0, "PLACENS": 2408053.0, "GEOID": 621810.0, "NAME": "El Cerrito", "NAMELSAD": "El Cerrito CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6738599.0, "AWATER": 558502.0, "INTPTLAT": 33.8381856, "INTPTLON": -117.522205 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.522205, 33.8381856 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 794, "felt:has_geometry": true, "felt:h3_index": 644721875136367770, "STATEFP": 6.0, "PLACEFP": 21880.0, "PLACENS": 2408055.0, "GEOID": 621880.0, "NAME": "El Dorado Hills", "NAMELSAD": "El Dorado Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 125511003.0, "AWATER": 6228621.0, "INTPTLAT": 38.6760816, "INTPTLON": -121.0476996 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0476996, 38.6760816 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 795, "felt:has_geometry": true, "felt:h3_index": 644721745930655430, "STATEFP": 6.0, "PLACEFP": 21894.0, "PLACENS": 2408072.0, "GEOID": 621894.0, "NAME": "Eldridge", "NAMELSAD": "Eldridge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1688641.0, "AWATER": 0.0, "INTPTLAT": 38.3338866, "INTPTLON": -122.5065184 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5065184, 38.3338866 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 796, "felt:has_geometry": true, "felt:h3_index": 644747327091146763, "STATEFP": 6.0, "PLACEFP": 21916.0, "PLACENS": 2813412.0, "GEOID": 621916.0, "NAME": "Elfin Forest", "NAMELSAD": "Elfin Forest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5243843.0, "AWATER": 0.0, "INTPTLAT": 33.0812315, "INTPTLON": -117.1774428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1774428, 33.0812315 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 797, "felt:has_geometry": true, "felt:h3_index": 644721878823036244, "STATEFP": 6.0, "PLACEFP": 4576.0, "PLACENS": 2407813.0, "GEOID": 604576.0, "NAME": "Beale AFB", "NAMELSAD": "Beale AFB CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26139571.0, "AWATER": 25614.0, "INTPTLAT": 39.1080613, "INTPTLON": -121.3512148 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3512148, 39.1080613 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 798, "felt:has_geometry": true, "felt:h3_index": 644719843459216096, "STATEFP": 6.0, "PLACEFP": 12612.0, "PLACENS": 2408008.0, "GEOID": 612612.0, "NAME": "Challenge-Brownsville", "NAMELSAD": "Challenge-Brownsville CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25135642.0, "AWATER": 0.0, "INTPTLAT": 39.4646167, "INTPTLON": -121.26325 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.26325, 39.4646167 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 799, "felt:has_geometry": true, "felt:h3_index": 644747598763255132, "STATEFP": 6.0, "PLACEFP": 7750.0, "PLACENS": 2407895.0, "GEOID": 607750.0, "NAME": "Bowles", "NAMELSAD": "Bowles CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 985992.0, "AWATER": 0.0, "INTPTLAT": 36.6088734, "INTPTLON": -119.7525639 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7525639, 36.6088734 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 800, "felt:has_geometry": true, "felt:h3_index": 644747581565594317, "STATEFP": 6.0, "PLACEFP": 10816.0, "PLACENS": 2407954.0, "GEOID": 610816.0, "NAME": "Cantua Creek", "NAMELSAD": "Cantua Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832915.0, "AWATER": 0.0, "INTPTLAT": 36.5000453, "INTPTLON": -120.3163615 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3163615, 36.5000453 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 801, "felt:has_geometry": true, "felt:h3_index": 644747581985458390, "STATEFP": 6.0, "PLACEFP": 11614.0, "PLACENS": 2407976.0, "GEOID": 611614.0, "NAME": "Caruthers", "NAMELSAD": "Caruthers CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5238364.0, "AWATER": 0.0, "INTPTLAT": 36.5399071, "INTPTLON": -119.8450271 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8450271, 36.5399071 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 802, "felt:has_geometry": true, "felt:h3_index": 644747327105748266, "STATEFP": 6.0, "PLACEFP": 18422.0, "PLACENS": 2813414.0, "GEOID": 618422.0, "NAME": "Del Dios", "NAMELSAD": "Del Dios CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1061683.0, "AWATER": 0.0, "INTPTLAT": 33.0756817, "INTPTLON": -117.1190364 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1190364, 33.0756817 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 803, "felt:has_geometry": true, "felt:h3_index": 644722020206066472, "STATEFP": 6.0, "PLACEFP": 21936.0, "PLACENS": 2408056.0, "GEOID": 621936.0, "NAME": "El Granada", "NAMELSAD": "El Granada CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12718809.0, "AWATER": 0.0, "INTPTLAT": 37.5141657, "INTPTLON": -122.4648032 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4648032, 37.5141657 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 804, "felt:has_geometry": true, "felt:h3_index": 644747093738219625, "STATEFP": 6.0, "PLACEFP": 21964.0, "PLACENS": 2583006.0, "GEOID": 621964.0, "NAME": "Elizabeth Lake", "NAMELSAD": "Elizabeth Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16066199.0, "AWATER": 768664.0, "INTPTLAT": 34.6564882, "INTPTLON": -118.379847 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.379847, 34.6564882 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 805, "felt:has_geometry": true, "felt:h3_index": 644721950334265260, "STATEFP": 6.0, "PLACEFP": 22006.0, "PLACENS": 2628728.0, "GEOID": 622006.0, "NAME": "Elk Creek", "NAMELSAD": "Elk Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3820501.0, "AWATER": 81504.0, "INTPTLAT": 39.5986779, "INTPTLON": -122.5323198 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5323198, 39.5986779 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 806, "felt:has_geometry": true, "felt:h3_index": 644722059465759453, "STATEFP": 6.0, "PLACEFP": 22034.0, "PLACENS": 2408075.0, "GEOID": 622034.0, "NAME": "Elkhorn", "NAMELSAD": "Elkhorn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12440882.0, "AWATER": 58180.0, "INTPTLAT": 36.8106726, "INTPTLON": -121.7186988 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7186988, 36.8106726 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 807, "felt:has_geometry": true, "felt:h3_index": 644721753555503523, "STATEFP": 6.0, "PLACEFP": 22104.0, "PLACENS": 2804443.0, "GEOID": 622104.0, "NAME": "El Macero", "NAMELSAD": "El Macero CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1520806.0, "AWATER": 0.0, "INTPTLAT": 38.544019, "INTPTLON": -121.6851681 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6851681, 38.544019 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 808, "felt:has_geometry": true, "felt:h3_index": 644721751716803995, "STATEFP": 6.0, "PLACEFP": 22146.0, "PLACENS": 2408078.0, "GEOID": 622146.0, "NAME": "Elmira", "NAMELSAD": "Elmira CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1374924.0, "AWATER": 0.0, "INTPTLAT": 38.3523287, "INTPTLON": -121.9077188 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9077188, 38.3523287 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 809, "felt:has_geometry": true, "felt:h3_index": 644747597358436958, "STATEFP": 6.0, "PLACEFP": 22235.0, "PLACENS": 2805242.0, "GEOID": 622235.0, "NAME": "El Monte Mobile Village", "NAMELSAD": "El Monte Mobile Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18565.0, "AWATER": 0.0, "INTPTLAT": 36.547075, "INTPTLON": -119.4250492 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4250492, 36.547075 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 810, "felt:has_geometry": true, "felt:h3_index": 644747668223271726, "STATEFP": 6.0, "PLACEFP": 22286.0, "PLACENS": 2583007.0, "GEOID": 622286.0, "NAME": "El Nido", "NAMELSAD": "El Nido CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8525668.0, "AWATER": 0.0, "INTPTLAT": 37.1323764, "INTPTLON": -120.4985513 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4985513, 37.1323764 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 811, "felt:has_geometry": true, "felt:h3_index": 644747804769739932, "STATEFP": 6.0, "PLACEFP": 22328.0, "PLACENS": 2583008.0, "GEOID": 622328.0, "NAME": "El Portal", "NAMELSAD": "El Portal CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4827205.0, "AWATER": 118590.0, "INTPTLAT": 37.6732408, "INTPTLON": -119.7877157 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7877157, 37.6732408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 812, "felt:has_geometry": true, "felt:h3_index": 644747595000689689, "STATEFP": 6.0, "PLACEFP": 22360.0, "PLACENS": 2585422.0, "GEOID": 622360.0, "NAME": "El Rancho", "NAMELSAD": "El Rancho CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55904.0, "AWATER": 0.0, "INTPTLAT": 36.2206835, "INTPTLON": -119.0683571 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0683571, 36.2206835 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 813, "felt:has_geometry": true, "felt:h3_index": 644747139121448274, "STATEFP": 6.0, "PLACEFP": 22370.0, "PLACENS": 2408061.0, "GEOID": 622370.0, "NAME": "El Rio", "NAMELSAD": "El Rio CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5263067.0, "AWATER": 0.0, "INTPTLAT": 34.245279, "INTPTLON": -119.1568658 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1568658, 34.245279 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 814, "felt:has_geometry": true, "felt:h3_index": 644721770557545161, "STATEFP": 6.0, "PLACEFP": 22454.0, "PLACENS": 2408062.0, "GEOID": 622454.0, "NAME": "El Sobrante", "NAMELSAD": "El Sobrante CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8019027.0, "AWATER": 0.0, "INTPTLAT": 37.9736239, "INTPTLON": -122.303141 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.303141, 37.9736239 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 815, "felt:has_geometry": true, "felt:h3_index": 644747027541467181, "STATEFP": 6.0, "PLACEFP": 22457.0, "PLACENS": 2583009.0, "GEOID": 622457.0, "NAME": "El Sobrante", "NAMELSAD": "El Sobrante CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18733299.0, "AWATER": 0.0, "INTPTLAT": 33.8724646, "INTPTLON": -117.4625173 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.4625173, 33.8724646 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 816, "felt:has_geometry": true, "felt:h3_index": 644721746443967017, "STATEFP": 6.0, "PLACEFP": 22510.0, "PLACENS": 2408064.0, "GEOID": 622510.0, "NAME": "El Verano", "NAMELSAD": "El Verano CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2964283.0, "AWATER": 0.0, "INTPTLAT": 38.2974647, "INTPTLON": -122.4915444 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4915444, 38.2974647 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 817, "felt:has_geometry": true, "felt:h3_index": 644721913361409796, "STATEFP": 6.0, "PLACEFP": 22524.0, "PLACENS": 2583010.0, "GEOID": 622524.0, "NAME": "Elverta", "NAMELSAD": "Elverta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22900221.0, "AWATER": 0.0, "INTPTLAT": 38.7184638, "INTPTLON": -121.4454754 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4454754, 38.7184638 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 818, "felt:has_geometry": true, "felt:h3_index": 644722018653230162, "STATEFP": 6.0, "PLACEFP": 22587.0, "PLACENS": 2408080.0, "GEOID": 622587.0, "NAME": "Emerald Lake Hills", "NAMELSAD": "Emerald Lake Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3061995.0, "AWATER": 17265.0, "INTPTLAT": 37.4656604, "INTPTLON": -122.2653505 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2653505, 37.4656604 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 819, "felt:has_geometry": true, "felt:h3_index": 644722149738849507, "STATEFP": 6.0, "PLACEFP": 22622.0, "PLACENS": 2408081.0, "GEOID": 622622.0, "NAME": "Empire", "NAMELSAD": "Empire CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3026223.0, "AWATER": 0.0, "INTPTLAT": 37.6430569, "INTPTLON": -120.9070385 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9070385, 37.6430569 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 820, "felt:has_geometry": true, "felt:h3_index": 644721762583755584, "STATEFP": 6.0, "PLACEFP": 22846.0, "PLACENS": 2408089.0, "GEOID": 622846.0, "NAME": "Esparto", "NAMELSAD": "Esparto CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11916729.0, "AWATER": 0.0, "INTPTLAT": 38.6934104, "INTPTLON": -122.0240465 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0240465, 38.6934104 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 821, "felt:has_geometry": true, "felt:h3_index": 644747319026607748, "STATEFP": 6.0, "PLACEFP": 23000.0, "PLACENS": 2628813.0, "GEOID": 623000.0, "NAME": "Eucalyptus Hills", "NAMELSAD": "Eucalyptus Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12324306.0, "AWATER": 38920.0, "INTPTLAT": 32.8851767, "INTPTLON": -116.9449826 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9449826, 32.8851767 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 822, "felt:has_geometry": true, "felt:h3_index": 644747299910195546, "STATEFP": 6.0, "PLACEFP": 23150.0, "PLACENS": 2408101.0, "GEOID": 623150.0, "NAME": "Fairbanks Ranch", "NAMELSAD": "Fairbanks Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13195969.0, "AWATER": 12376.0, "INTPTLAT": 32.9915955, "INTPTLON": -117.186611 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.186611, 32.9915955 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 823, "felt:has_geometry": true, "felt:h3_index": 644748031631495910, "STATEFP": 6.0, "PLACEFP": 23158.0, "PLACENS": 2804405.0, "GEOID": 623158.0, "NAME": "Fairfax", "NAMELSAD": "Fairfax CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2466696.0, "AWATER": 0.0, "INTPTLAT": 35.3468854, "INTPTLON": -118.9338065 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9338065, 35.3468854 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 824, "felt:has_geometry": true, "felt:h3_index": 644718618447979912, "STATEFP": 6.0, "PLACEFP": 23196.0, "PLACENS": 2628729.0, "GEOID": 623196.0, "NAME": "Fairhaven", "NAMELSAD": "Fairhaven CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682712.0, "AWATER": 0.0, "INTPTLAT": 40.7882931, "INTPTLON": -124.2014211 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.2014211, 40.7882931 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 825, "felt:has_geometry": true, "felt:h3_index": 644747821194675803, "STATEFP": 6.0, "PLACEFP": 23210.0, "PLACENS": 2583011.0, "GEOID": 623210.0, "NAME": "Fairmead", "NAMELSAD": "Fairmead CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20018088.0, "AWATER": 0.0, "INTPTLAT": 37.0774661, "INTPTLON": -120.1936593 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1936593, 37.0774661 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 826, "felt:has_geometry": true, "felt:h3_index": 644721919891978133, "STATEFP": 6.0, "PLACEFP": 23294.0, "PLACENS": 2408100.0, "GEOID": 623294.0, "NAME": "Fair Oaks", "NAMELSAD": "Fair Oaks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28169829.0, "AWATER": 930992.0, "INTPTLAT": 38.6501544, "INTPTLON": -121.2509702 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2509702, 38.6501544 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 827, "felt:has_geometry": true, "felt:h3_index": 644722036760926538, "STATEFP": 6.0, "PLACEFP": 23350.0, "PLACENS": 2408104.0, "GEOID": 623350.0, "NAME": "Fairview", "NAMELSAD": "Fairview CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7703078.0, "AWATER": 61592.0, "INTPTLAT": 37.6776667, "INTPTLON": -122.0444339 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0444339, 37.6776667 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 828, "felt:has_geometry": true, "felt:h3_index": 644747323583501577, "STATEFP": 6.0, "PLACEFP": 23462.0, "PLACENS": 2408113.0, "GEOID": 623462.0, "NAME": "Fallbrook", "NAMELSAD": "Fallbrook CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45429891.0, "AWATER": 47337.0, "INTPTLAT": 33.3742351, "INTPTLON": -117.2203748 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2203748, 33.3742351 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 829, "felt:has_geometry": true, "felt:h3_index": 644719579180700011, "STATEFP": 6.0, "PLACEFP": 23532.0, "PLACENS": 2408112.0, "GEOID": 623532.0, "NAME": "Fall River Mills", "NAMELSAD": "Fall River Mills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6859381.0, "AWATER": 269074.0, "INTPTLAT": 41.0072414, "INTPTLON": -121.4411337 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4411337, 41.0072414 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 830, "felt:has_geometry": true, "felt:h3_index": 644722148368832842, "STATEFP": 6.0, "PLACEFP": 23630.0, "PLACENS": 2408117.0, "GEOID": 623630.0, "NAME": "Farmington", "NAMELSAD": "Farmington CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6583893.0, "AWATER": 0.0, "INTPTLAT": 37.9298676, "INTPTLON": -121.0043672 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0043672, 37.9298676 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 831, "felt:has_geometry": true, "felt:h3_index": 644747848426205812, "STATEFP": 6.0, "PLACEFP": 23812.0, "PLACENS": 2408207.0, "GEOID": 623812.0, "NAME": "Fellows", "NAMELSAD": "Fellows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1801266.0, "AWATER": 0.0, "INTPTLAT": 35.1779287, "INTPTLON": -119.5472109 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5472109, 35.1779287 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 832, "felt:has_geometry": true, "felt:h3_index": 644722008448779408, "STATEFP": 6.0, "PLACEFP": 23826.0, "PLACENS": 2408208.0, "GEOID": 623826.0, "NAME": "Felton", "NAMELSAD": "Felton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12017049.0, "AWATER": 0.0, "INTPTLAT": 37.039222, "INTPTLON": -122.0807644 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0807644, 37.039222 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 833, "felt:has_geometry": true, "felt:h3_index": 644721745933636516, "STATEFP": 6.0, "PLACEFP": 23973.0, "PLACENS": 2408209.0, "GEOID": 623973.0, "NAME": "Fetters Hot Springs-Agua Caliente", "NAMELSAD": "Fetters Hot Springs-Agua Caliente CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3783771.0, "AWATER": 0.0, "INTPTLAT": 38.3275042, "INTPTLON": -122.4871374 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4871374, 38.3275042 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 834, "felt:has_geometry": true, "felt:h3_index": 644721927488423662, "STATEFP": 6.0, "PLACEFP": 23980.0, "PLACENS": 2583012.0, "GEOID": 623980.0, "NAME": "Fiddletown", "NAMELSAD": "Fiddletown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11797057.0, "AWATER": 0.0, "INTPTLAT": 38.506864, "INTPTLON": -120.760149 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.760149, 38.506864 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 835, "felt:has_geometry": true, "felt:h3_index": 644718585930130026, "STATEFP": 6.0, "PLACEFP": 24008.0, "PLACENS": 2611430.0, "GEOID": 624008.0, "NAME": "Fieldbrook", "NAMELSAD": "Fieldbrook CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27111305.0, "AWATER": 9982.0, "INTPTLAT": 40.9729581, "INTPTLON": -124.0285865 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0285865, 40.9729581 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 836, "felt:has_geometry": true, "felt:h3_index": 644718615895212352, "STATEFP": 6.0, "PLACEFP": 24022.0, "PLACENS": 2628730.0, "GEOID": 624022.0, "NAME": "Fields Landing", "NAMELSAD": "Fields Landing CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 716672.0, "AWATER": 7676.0, "INTPTLAT": 40.7242363, "INTPTLON": -124.2186025 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.2186025, 40.7242363 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 837, "felt:has_geometry": true, "felt:h3_index": 644747808119313114, "STATEFP": 6.0, "PLACEFP": 24218.0, "PLACENS": 2583013.0, "GEOID": 624218.0, "NAME": "Fish Camp", "NAMELSAD": "Fish Camp CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1036205.0, "AWATER": 5626.0, "INTPTLAT": 37.4799003, "INTPTLON": -119.6409112 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6409112, 37.4799003 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 838, "felt:has_geometry": true, "felt:h3_index": 644747394525651986, "STATEFP": 6.0, "PLACEFP": 24477.0, "PLACENS": 2408218.0, "GEOID": 624477.0, "NAME": "Florence-Graham", "NAMELSAD": "Florence-Graham CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9089172.0, "AWATER": 0.0, "INTPTLAT": 33.9681594, "INTPTLON": -118.2446671 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2446671, 33.9681594 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 839, "felt:has_geometry": true, "felt:h3_index": 644721906278224418, "STATEFP": 6.0, "PLACEFP": 24498.0, "PLACENS": 2408219.0, "GEOID": 624498.0, "NAME": "Florin", "NAMELSAD": "Florin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22500504.0, "AWATER": 0.0, "INTPTLAT": 38.4831505, "INTPTLON": -121.4043263 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4043263, 38.4831505 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 840, "felt:has_geometry": true, "felt:h3_index": 644745446426234952, "STATEFP": 6.0, "PLACEFP": 24526.0, "PLACENS": 2628731.0, "GEOID": 624526.0, "NAME": "Floriston", "NAMELSAD": "Floriston CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2459249.0, "AWATER": 0.0, "INTPTLAT": 39.3929299, "INTPTLON": -120.0151127 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0151127, 39.3929299 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 841, "felt:has_geometry": true, "felt:h3_index": 644719912447174310, "STATEFP": 6.0, "PLACEFP": 24568.0, "PLACENS": 2628732.0, "GEOID": 624568.0, "NAME": "Flournoy", "NAMELSAD": "Flournoy CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15165230.0, "AWATER": 0.0, "INTPTLAT": 39.928339, "INTPTLON": -122.445793 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.445793, 39.928339 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 842, "felt:has_geometry": true, "felt:h3_index": 644721920021804033, "STATEFP": 6.0, "PLACEFP": 24722.0, "PLACENS": 2408224.0, "GEOID": 624722.0, "NAME": "Foothill Farms", "NAMELSAD": "Foothill Farms CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10879066.0, "AWATER": 0.0, "INTPTLAT": 38.6867316, "INTPTLON": -121.3474778 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3474778, 38.6867316 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 843, "felt:has_geometry": true, "felt:h3_index": 644719843107942596, "STATEFP": 6.0, "PLACEFP": 24750.0, "PLACENS": 2612480.0, "GEOID": 624750.0, "NAME": "Forbestown", "NAMELSAD": "Forbestown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16250437.0, "AWATER": 15370.0, "INTPTLAT": 39.5275837, "INTPTLON": -121.2662224 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2662224, 39.5275837 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 844, "felt:has_geometry": true, "felt:h3_index": 644747848642569509, "STATEFP": 6.0, "PLACEFP": 24764.0, "PLACENS": 2408226.0, "GEOID": 624764.0, "NAME": "Ford City", "NAMELSAD": "Ford City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3974713.0, "AWATER": 0.0, "INTPTLAT": 35.1647352, "INTPTLON": -119.4584001 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4584001, 35.1647352 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 845, "felt:has_geometry": true, "felt:h3_index": 644747804294008897, "STATEFP": 6.0, "PLACEFP": 24792.0, "PLACENS": 2830231.0, "GEOID": 624792.0, "NAME": "Foresta", "NAMELSAD": "Foresta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 958026.0, "AWATER": 0.0, "INTPTLAT": 37.6987793, "INTPTLON": -119.7482741 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7482741, 37.6987793 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 846, "felt:has_geometry": true, "felt:h3_index": 644721900836195411, "STATEFP": 6.0, "PLACEFP": 24834.0, "PLACENS": 2408229.0, "GEOID": 624834.0, "NAME": "Foresthill", "NAMELSAD": "Foresthill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28969105.0, "AWATER": 0.0, "INTPTLAT": 39.0052862, "INTPTLON": -120.8313547 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8313547, 39.0052862 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 847, "felt:has_geometry": true, "felt:h3_index": 644745764405361038, "STATEFP": 6.0, "PLACEFP": 24897.0, "PLACENS": 2408228.0, "GEOID": 624897.0, "NAME": "Forest Meadows", "NAMELSAD": "Forest Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9749680.0, "AWATER": 0.0, "INTPTLAT": 38.1717302, "INTPTLON": -120.3989746 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3989746, 38.1717302 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 848, "felt:has_geometry": true, "felt:h3_index": 644719852873437462, "STATEFP": 6.0, "PLACEFP": 24918.0, "PLACENS": 2612481.0, "GEOID": 624918.0, "NAME": "Forest Ranch", "NAMELSAD": "Forest Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36089639.0, "AWATER": 0.0, "INTPTLAT": 39.8952041, "INTPTLON": -121.6704507 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6704507, 39.8952041 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 849, "felt:has_geometry": true, "felt:h3_index": 644721855577540746, "STATEFP": 6.0, "PLACEFP": 24960.0, "PLACENS": 2408230.0, "GEOID": 624960.0, "NAME": "Forestville", "NAMELSAD": "Forestville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13615411.0, "AWATER": 0.0, "INTPTLAT": 38.4824914, "INTPTLON": -122.8898837 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8898837, 38.4824914 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 850, "felt:has_geometry": true, "felt:h3_index": 644719686301103334, "STATEFP": 6.0, "PLACEFP": 25030.0, "PLACENS": 2583014.0, "GEOID": 625030.0, "NAME": "Fort Bidwell", "NAMELSAD": "Fort Bidwell CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8299175.0, "AWATER": 43567.0, "INTPTLAT": 41.8633015, "INTPTLON": -120.1593945 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1593945, 41.8633015 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 851, "felt:has_geometry": true, "felt:h3_index": 644720404510817413, "STATEFP": 6.0, "PLACEFP": 25086.0, "PLACENS": 2611432.0, "GEOID": 625086.0, "NAME": "Fort Dick", "NAMELSAD": "Fort Dick CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8331464.0, "AWATER": 662.0, "INTPTLAT": 41.8695264, "INTPTLON": -124.1672064 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1672064, 41.8695264 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 852, "felt:has_geometry": true, "felt:h3_index": 644747926684172352, "STATEFP": 6.0, "PLACEFP": 25093.0, "PLACENS": 2805235.0, "GEOID": 625093.0, "NAME": "Fort Hunter Liggett", "NAMELSAD": "Fort Hunter Liggett CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7198561.0, "AWATER": 79767.0, "INTPTLAT": 35.992329, "INTPTLON": -121.2348698 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2348698, 35.992329 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 853, "felt:has_geometry": true, "felt:h3_index": 644747245305307165, "STATEFP": 6.0, "PLACEFP": 25114.0, "PLACENS": 2628733.0, "GEOID": 625114.0, "NAME": "Fort Irwin", "NAMELSAD": "Fort Irwin CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18040432.0, "AWATER": 0.0, "INTPTLAT": 35.2477015, "INTPTLON": -116.6834115 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.6834115, 35.2477015 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 854, "felt:has_geometry": true, "felt:h3_index": 644747814434449683, "STATEFP": 6.0, "PLACEFP": 25300.0, "PLACENS": 2583015.0, "GEOID": 625300.0, "NAME": "Fort Washington", "NAMELSAD": "Fort Washington CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 321161.0, "AWATER": 0.0, "INTPTLAT": 36.8792978, "INTPTLON": -119.761256 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.761256, 36.8792978 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 855, "felt:has_geometry": true, "felt:h3_index": 644722201351160107, "STATEFP": 6.0, "PLACEFP": 25488.0, "PLACENS": 2583016.0, "GEOID": 625488.0, "NAME": "Franklin", "NAMELSAD": "Franklin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5245317.0, "AWATER": 0.0, "INTPTLAT": 37.3275289, "INTPTLON": -120.5320892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5320892, 37.3275289 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 856, "felt:has_geometry": true, "felt:h3_index": 644721752829855008, "STATEFP": 6.0, "PLACEFP": 25506.0, "PLACENS": 2583017.0, "GEOID": 625506.0, "NAME": "Franklin", "NAMELSAD": "Franklin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5454315.0, "AWATER": 0.0, "INTPTLAT": 38.3675214, "INTPTLON": -121.461629 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.461629, 38.3675214 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 857, "felt:has_geometry": true, "felt:h3_index": 644747100484128148, "STATEFP": 6.0, "PLACEFP": 25534.0, "PLACENS": 2408257.0, "GEOID": 625534.0, "NAME": "Frazier Park", "NAMELSAD": "Frazier Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13509638.0, "AWATER": 4209.0, "INTPTLAT": 34.8141933, "INTPTLON": -118.9549611 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9549611, 34.8141933 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 858, "felt:has_geometry": true, "felt:h3_index": 644722062407152346, "STATEFP": 6.0, "PLACEFP": 25576.0, "PLACENS": 2408259.0, "GEOID": 625576.0, "NAME": "Freedom", "NAMELSAD": "Freedom CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2935623.0, "AWATER": 0.0, "INTPTLAT": 36.9402544, "INTPTLON": -121.795246 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.795246, 36.9402544 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 859, "felt:has_geometry": true, "felt:h3_index": 644721752423147283, "STATEFP": 6.0, "PLACEFP": 25590.0, "PLACENS": 2583018.0, "GEOID": 625590.0, "NAME": "Freeport", "NAMELSAD": "Freeport CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 131496.0, "AWATER": 0.0, "INTPTLAT": 38.4629355, "INTPTLON": -121.5021071 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5021071, 38.4629355 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 860, "felt:has_geometry": true, "felt:h3_index": 644722158255329873, "STATEFP": 6.0, "PLACEFP": 26028.0, "PLACENS": 2408261.0, "GEOID": 626028.0, "NAME": "French Camp", "NAMELSAD": "French Camp CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8013766.0, "AWATER": 0.0, "INTPTLAT": 37.8660235, "INTPTLON": -121.2741543 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2741543, 37.8660235 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 861, "felt:has_geometry": true, "felt:h3_index": 644719888692847857, "STATEFP": 6.0, "PLACEFP": 26056.0, "PLACENS": 2408262.0, "GEOID": 626056.0, "NAME": "French Gulch", "NAMELSAD": "French Gulch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31940354.0, "AWATER": 94840.0, "INTPTLAT": 40.7187929, "INTPTLON": -122.6293566 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6293566, 40.7187929 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 862, "felt:has_geometry": true, "felt:h3_index": 644747078611887798, "STATEFP": 6.0, "PLACEFP": 26067.0, "PLACENS": 2583019.0, "GEOID": 626067.0, "NAME": "French Valley", "NAMELSAD": "French Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28156302.0, "AWATER": 15910.0, "INTPTLAT": 33.5994608, "INTPTLON": -117.1064951 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1064951, 33.5994608 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 863, "felt:has_geometry": true, "felt:h3_index": 644747814374030657, "STATEFP": 6.0, "PLACEFP": 27014.0, "PLACENS": 2408265.0, "GEOID": 627014.0, "NAME": "Friant", "NAMELSAD": "Friant CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239537.0, "AWATER": 130737.0, "INTPTLAT": 36.9840123, "INTPTLON": -119.7080595 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7080595, 36.9840123 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 864, "felt:has_geometry": true, "felt:h3_index": 644722038440985942, "STATEFP": 6.0, "PLACEFP": 27080.0, "PLACENS": 2408267.0, "GEOID": 627080.0, "NAME": "Fruitdale", "NAMELSAD": "Fruitdale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 691222.0, "AWATER": 0.0, "INTPTLAT": 37.3117106, "INTPTLON": -121.9357651 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9357651, 37.3117106 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 865, "felt:has_geometry": true, "felt:h3_index": 644721918215611739, "STATEFP": 6.0, "PLACEFP": 27130.0, "PLACENS": 2583020.0, "GEOID": 627130.0, "NAME": "Fruitridge Pocket", "NAMELSAD": "Fruitridge Pocket CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1532205.0, "AWATER": 0.0, "INTPTLAT": 38.5326129, "INTPTLON": -121.4558068 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4558068, 38.5326129 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 866, "felt:has_geometry": true, "felt:h3_index": 644748031691234020, "STATEFP": 6.0, "PLACEFP": 27190.0, "PLACENS": 2629762.0, "GEOID": 627190.0, "NAME": "Fuller Acres", "NAMELSAD": "Fuller Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1953739.0, "AWATER": 0.0, "INTPTLAT": 35.3022538, "INTPTLON": -118.9142955 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9142955, 35.3022538 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 867, "felt:has_geometry": true, "felt:h3_index": 644721742913564084, "STATEFP": 6.0, "PLACEFP": 28014.0, "PLACENS": 2583021.0, "GEOID": 628014.0, "NAME": "Fulton", "NAMELSAD": "Fulton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5047023.0, "AWATER": 0.0, "INTPTLAT": 38.4937089, "INTPTLON": -122.773417 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.773417, 38.4937089 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 868, "felt:has_geometry": true, "felt:h3_index": 644745184571321434, "STATEFP": 6.0, "PLACEFP": 28021.0, "PLACENS": 2408270.0, "GEOID": 628021.0, "NAME": "Furnace Creek", "NAMELSAD": "Furnace Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 81487361.0, "AWATER": 0.0, "INTPTLAT": 36.4276693, "INTPTLON": -116.8746901 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8746901, 36.4276693 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 869, "felt:has_geometry": true, "felt:h3_index": 644718857436889222, "STATEFP": 6.0, "PLACEFP": 28154.0, "PLACENS": 2611433.0, "GEOID": 628154.0, "NAME": "Garberville", "NAMELSAD": "Garberville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6940712.0, "AWATER": 148102.0, "INTPTLAT": 40.1003058, "INTPTLON": -123.7943149 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7943149, 40.1003058 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 870, "felt:has_geometry": true, "felt:h3_index": 644722160764737934, "STATEFP": 6.0, "PLACEFP": 28182.0, "PLACENS": 2408275.0, "GEOID": 628182.0, "NAME": "Garden Acres", "NAMELSAD": "Garden Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693775.0, "AWATER": 0.0, "INTPTLAT": 37.9636972, "INTPTLON": -121.2296097 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2296097, 37.9636972 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 871, "felt:has_geometry": true, "felt:h3_index": 644747922093441386, "STATEFP": 6.0, "PLACEFP": 28210.0, "PLACENS": 2583022.0, "GEOID": 628210.0, "NAME": "Garden Farms", "NAMELSAD": "Garden Farms CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2831739.0, "AWATER": 0.0, "INTPTLAT": 35.4157817, "INTPTLON": -120.6140342 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6140342, 35.4157817 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 872, "felt:has_geometry": true, "felt:h3_index": 644747894815397417, "STATEFP": 6.0, "PLACEFP": 29070.0, "PLACENS": 2583023.0, "GEOID": 629070.0, "NAME": "Garey", "NAMELSAD": "Garey CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3275825.0, "AWATER": 9827.0, "INTPTLAT": 34.8858212, "INTPTLON": -120.3137504 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3137504, 34.8858212 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 873, "felt:has_geometry": true, "felt:h3_index": 644747446318371098, "STATEFP": 6.0, "PLACEFP": 29112.0, "PLACENS": 2629132.0, "GEOID": 629112.0, "NAME": "Garnet", "NAMELSAD": "Garnet CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20397318.0, "AWATER": 0.0, "INTPTLAT": 33.9178924, "INTPTLON": -116.479609 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.479609, 33.9178924 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 874, "felt:has_geometry": true, "felt:h3_index": 644720403911032021, "STATEFP": 6.0, "PLACEFP": 29154.0, "PLACENS": 2611434.0, "GEOID": 629154.0, "NAME": "Gasquet", "NAMELSAD": "Gasquet CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12318649.0, "AWATER": 171875.0, "INTPTLAT": 41.8360753, "INTPTLON": -123.9760308 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.9760308, 41.8360753 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 875, "felt:has_geometry": true, "felt:h3_index": 644719603752455388, "STATEFP": 6.0, "PLACEFP": 29252.0, "PLACENS": 2408286.0, "GEOID": 629252.0, "NAME": "Gazelle", "NAMELSAD": "Gazelle CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1739436.0, "AWATER": 1757.0, "INTPTLAT": 41.5118701, "INTPTLON": -122.5219457 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5219457, 41.5118701 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 876, "felt:has_geometry": true, "felt:h3_index": 644721872278668419, "STATEFP": 6.0, "PLACEFP": 29350.0, "PLACENS": 2408289.0, "GEOID": 629350.0, "NAME": "Georgetown", "NAMELSAD": "Georgetown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39182259.0, "AWATER": 10741.0, "INTPTLAT": 38.9113533, "INTPTLON": -120.834624 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.834624, 38.9113533 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 877, "felt:has_geometry": true, "felt:h3_index": 644719930486710829, "STATEFP": 6.0, "PLACEFP": 29392.0, "PLACENS": 2628801.0, "GEOID": 629392.0, "NAME": "Gerber", "NAMELSAD": "Gerber CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2401403.0, "AWATER": 0.0, "INTPTLAT": 40.0614174, "INTPTLON": -122.1482008 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1482008, 40.0614174 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 878, "felt:has_geometry": true, "felt:h3_index": 644721819421902640, "STATEFP": 6.0, "PLACEFP": 29420.0, "PLACENS": 2583024.0, "GEOID": 629420.0, "NAME": "Geyserville", "NAMELSAD": "Geyserville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11690104.0, "AWATER": 0.0, "INTPTLAT": 38.7173139, "INTPTLON": -122.9034234 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9034234, 38.7173139 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 879, "felt:has_geometry": true, "felt:h3_index": 644747984836650157, "STATEFP": 6.0, "PLACEFP": 30126.0, "PLACENS": 2804407.0, "GEOID": 630126.0, "NAME": "Glennville", "NAMELSAD": "Glennville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4889260.0, "AWATER": 0.0, "INTPTLAT": 35.7241937, "INTPTLON": -118.7152172 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7152172, 35.7241937 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 880, "felt:has_geometry": true, "felt:h3_index": 644748025051825883, "STATEFP": 6.0, "PLACEFP": 30282.0, "PLACENS": 2408306.0, "GEOID": 630282.0, "NAME": "Golden Hills", "NAMELSAD": "Golden Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28267176.0, "AWATER": 44673.0, "INTPTLAT": 35.1364219, "INTPTLON": -118.4975917 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4975917, 35.1364219 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 881, "felt:has_geometry": true, "felt:h3_index": 644719862726368477, "STATEFP": 6.0, "PLACEFP": 30339.0, "PLACENS": 2583025.0, "GEOID": 630339.0, "NAME": "Gold Mountain", "NAMELSAD": "Gold Mountain CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15767571.0, "AWATER": 0.0, "INTPTLAT": 39.7613149, "INTPTLON": -120.5190536 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5190536, 39.7613149 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 882, "felt:has_geometry": true, "felt:h3_index": 644721907862682536, "STATEFP": 6.0, "PLACEFP": 30345.0, "PLACENS": 2408305.0, "GEOID": 630345.0, "NAME": "Gold River", "NAMELSAD": "Gold River CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6884489.0, "AWATER": 213093.0, "INTPTLAT": 38.6268536, "INTPTLON": -121.2491637 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2491637, 38.6268536 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 883, "felt:has_geometry": true, "felt:h3_index": 644747026351438856, "STATEFP": 6.0, "PLACEFP": 30410.0, "PLACENS": 2583026.0, "GEOID": 630410.0, "NAME": "Good Hope", "NAMELSAD": "Good Hope CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29073661.0, "AWATER": 0.0, "INTPTLAT": 33.7706269, "INTPTLON": -117.2771987 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2771987, 33.7706269 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 884, "felt:has_geometry": true, "felt:h3_index": 644748031182788440, "STATEFP": 6.0, "PLACEFP": 30412.0, "PLACENS": 2804408.0, "GEOID": 630412.0, "NAME": "Goodmanville", "NAMELSAD": "Goodmanville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1753841.0, "AWATER": 0.0, "INTPTLAT": 35.4289943, "INTPTLON": -118.9437185 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9437185, 35.4289943 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 885, "felt:has_geometry": true, "felt:h3_index": 644719865476942560, "STATEFP": 6.0, "PLACEFP": 30420.0, "PLACENS": 2583027.0, "GEOID": 630420.0, "NAME": "Goodyears Bar", "NAMELSAD": "Goodyears Bar CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5309072.0, "AWATER": 43381.0, "INTPTLAT": 39.552354, "INTPTLON": -120.8931017 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8931017, 39.552354 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 886, "felt:has_geometry": true, "felt:h3_index": 644747589693055857, "STATEFP": 6.0, "PLACEFP": 30476.0, "PLACENS": 2408310.0, "GEOID": 630476.0, "NAME": "Goshen", "NAMELSAD": "Goshen CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7292688.0, "AWATER": 0.0, "INTPTLAT": 36.3492658, "INTPTLON": -119.4206215 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4206215, 36.3492658 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 887, "felt:has_geometry": true, "felt:h3_index": 644719864174749876, "STATEFP": 6.0, "PLACEFP": 30560.0, "PLACENS": 2408311.0, "GEOID": 630560.0, "NAME": "Graeagle", "NAMELSAD": "Graeagle CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28666635.0, "AWATER": 147558.0, "INTPTLAT": 39.7524774, "INTPTLON": -120.6454492 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6454492, 39.7524774 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 888, "felt:has_geometry": true, "felt:h3_index": 644747574617122230, "STATEFP": 6.0, "PLACEFP": 30686.0, "PLACENS": 2628734.0, "GEOID": 630686.0, "NAME": "Grangeville", "NAMELSAD": "Grangeville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1657009.0, "AWATER": 0.0, "INTPTLAT": 36.3438978, "INTPTLON": -119.707467 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.707467, 36.3438978 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 889, "felt:has_geometry": true, "felt:h3_index": 644721875553377348, "STATEFP": 6.0, "PLACEFP": 30693.0, "PLACENS": 2408318.0, "GEOID": 630693.0, "NAME": "Granite Bay", "NAMELSAD": "Granite Bay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55810220.0, "AWATER": 111696.0, "INTPTLAT": 38.7604413, "INTPTLON": -121.1681961 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1681961, 38.7604413 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 890, "felt:has_geometry": true, "felt:h3_index": 644747318960499820, "STATEFP": 6.0, "PLACEFP": 30703.0, "PLACENS": 2408320.0, "GEOID": 630703.0, "NAME": "Granite Hills", "NAMELSAD": "Granite Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7233804.0, "AWATER": 0.0, "INTPTLAT": 32.8032801, "INTPTLON": -116.9056101 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9056101, 32.8032801 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 891, "felt:has_geometry": true, "felt:h3_index": 644719865152622803, "STATEFP": 6.0, "PLACEFP": 30714.0, "PLACENS": 2628735.0, "GEOID": 630714.0, "NAME": "Graniteville", "NAMELSAD": "Graniteville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3853000.0, "AWATER": 0.0, "INTPTLAT": 39.4443656, "INTPTLON": -120.7360303 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7360303, 39.4443656 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 892, "felt:has_geometry": true, "felt:h3_index": 644722151006321236, "STATEFP": 6.0, "PLACEFP": 30882.0, "PLACENS": 2408324.0, "GEOID": 630882.0, "NAME": "Grayson", "NAMELSAD": "Grayson CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 477325.0, "AWATER": 0.0, "INTPTLAT": 37.564577, "INTPTLON": -121.1800503 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1800503, 37.564577 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 893, "felt:has_geometry": true, "felt:h3_index": 644747789362004803, "STATEFP": 6.0, "PLACEFP": 30900.0, "PLACENS": 2583028.0, "GEOID": 630900.0, "NAME": "Greeley Hill", "NAMELSAD": "Greeley Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61850758.0, "AWATER": 119779.0, "INTPTLAT": 37.7570432, "INTPTLON": -120.1307588 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1307588, 37.7570432 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 894, "felt:has_geometry": true, "felt:h3_index": 644748032743610773, "STATEFP": 6.0, "PLACEFP": 30938.0, "PLACENS": 2628814.0, "GEOID": 630938.0, "NAME": "Greenacres", "NAMELSAD": "Greenacres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931784.0, "AWATER": 0.0, "INTPTLAT": 35.3831587, "INTPTLON": -119.1183805 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1183805, 35.3831587 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 895, "felt:has_geometry": true, "felt:h3_index": 644747074075142700, "STATEFP": 6.0, "PLACEFP": 30944.0, "PLACENS": 2630600.0, "GEOID": 630944.0, "NAME": "Green Acres", "NAMELSAD": "Green Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3633842.0, "AWATER": 0.0, "INTPTLAT": 33.7349718, "INTPTLON": -117.0782441 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0782441, 33.7349718 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 896, "felt:has_geometry": true, "felt:h3_index": 644747865589081875, "STATEFP": 6.0, "PLACEFP": 30987.0, "PLACENS": 2628815.0, "GEOID": 630987.0, "NAME": "Greenfield", "NAMELSAD": "Greenfield CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3433778.0, "AWATER": 0.0, "INTPTLAT": 35.269489, "INTPTLON": -119.0094914 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0094914, 35.269489 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 897, "felt:has_geometry": true, "felt:h3_index": 644719831867155720, "STATEFP": 6.0, "PLACEFP": 31029.0, "PLACENS": 2408332.0, "GEOID": 631029.0, "NAME": "Greenhorn", "NAMELSAD": "Greenhorn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17381404.0, "AWATER": 0.0, "INTPTLAT": 39.9029678, "INTPTLON": -120.7589827 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7589827, 39.9029678 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 898, "felt:has_geometry": true, "felt:h3_index": 644747094204509040, "STATEFP": 6.0, "PLACEFP": 31092.0, "PLACENS": 2583029.0, "GEOID": 631092.0, "NAME": "Green Valley", "NAMELSAD": "Green Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33175008.0, "AWATER": 497.0, "INTPTLAT": 34.6174149, "INTPTLON": -118.4050226 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4050226, 34.6174149 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 899, "felt:has_geometry": true, "felt:h3_index": 644721733138311369, "STATEFP": 6.0, "PLACEFP": 31099.0, "PLACENS": 2408330.0, "GEOID": 631099.0, "NAME": "Green Valley", "NAMELSAD": "Green Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21678078.0, "AWATER": 3847.0, "INTPTLAT": 38.2638424, "INTPTLON": -122.162496 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.162496, 38.2638424 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 900, "felt:has_geometry": true, "felt:h3_index": 644719617245522853, "STATEFP": 6.0, "PLACEFP": 31134.0, "PLACENS": 2408333.0, "GEOID": 631134.0, "NAME": "Greenview", "NAMELSAD": "Greenview CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3354179.0, "AWATER": 218772.0, "INTPTLAT": 41.5449224, "INTPTLON": -122.9209638 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9209638, 41.5449224 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 901, "felt:has_geometry": true, "felt:h3_index": 644719839388509106, "STATEFP": 6.0, "PLACEFP": 31162.0, "PLACENS": 2408334.0, "GEOID": 631162.0, "NAME": "Greenville", "NAMELSAD": "Greenville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20701558.0, "AWATER": 0.0, "INTPTLAT": 40.1336027, "INTPTLON": -120.9453326 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9453326, 40.1336027 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 902, "felt:has_geometry": true, "felt:h3_index": 644719617777944278, "STATEFP": 6.0, "PLACEFP": 31246.0, "PLACENS": 2408337.0, "GEOID": 631246.0, "NAME": "Grenada", "NAMELSAD": "Grenada CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1335962.0, "AWATER": 3010.0, "INTPTLAT": 41.6401003, "INTPTLON": -122.5266271 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5266271, 41.6401003 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 903, "felt:has_geometry": true, "felt:h3_index": 644721994257543755, "STATEFP": 6.0, "PLACEFP": 31288.0, "PLACENS": 2583030.0, "GEOID": 631288.0, "NAME": "Grimes", "NAMELSAD": "Grimes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5856072.0, "AWATER": 0.0, "INTPTLAT": 39.0741539, "INTPTLON": -121.8987753 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8987753, 39.0741539 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 904, "felt:has_geometry": true, "felt:h3_index": 644721924029761590, "STATEFP": 6.0, "PLACEFP": 31302.0, "PLACENS": 2628736.0, "GEOID": 631302.0, "NAME": "Grizzly Flats", "NAMELSAD": "Grizzly Flats CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17168505.0, "AWATER": 0.0, "INTPTLAT": 38.6356964, "INTPTLON": -120.535435 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.535435, 38.6356964 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 905, "felt:has_geometry": true, "felt:h3_index": 644722169033053790, "STATEFP": 6.0, "PLACEFP": 31372.0, "PLACENS": 2628856.0, "GEOID": 631372.0, "NAME": "Groveland", "NAMELSAD": "Groveland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24795516.0, "AWATER": 15061.0, "INTPTLAT": 37.831966, "INTPTLON": -120.2415805 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2415805, 37.831966 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 906, "felt:has_geometry": true, "felt:h3_index": 644721979690108459, "STATEFP": 6.0, "PLACEFP": 31540.0, "PLACENS": 2628737.0, "GEOID": 631540.0, "NAME": "Guinda", "NAMELSAD": "Guinda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7578139.0, "AWATER": 0.0, "INTPTLAT": 38.8273739, "INTPTLON": -122.1983586 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1983586, 38.8273739 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 907, "felt:has_geometry": true, "felt:h3_index": 644747065616255184, "STATEFP": 6.0, "PLACEFP": 31596.0, "PLACENS": 2408344.0, "GEOID": 631596.0, "NAME": "Hacienda Heights", "NAMELSAD": "Hacienda Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28884806.0, "AWATER": 14534.0, "INTPTLAT": 33.9958532, "INTPTLON": -117.9730226 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9730226, 33.9958532 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 908, "felt:has_geometry": true, "felt:h3_index": 644719839858592777, "STATEFP": 6.0, "PLACEFP": 31883.0, "PLACENS": 2408347.0, "GEOID": 631883.0, "NAME": "Hamilton Branch", "NAMELSAD": "Hamilton Branch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2811184.0, "AWATER": 0.0, "INTPTLAT": 40.27725, "INTPTLON": -121.0960923 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0960923, 40.27725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 909, "felt:has_geometry": true, "felt:h3_index": 644721967447511971, "STATEFP": 6.0, "PLACEFP": 31890.0, "PLACENS": 2408348.0, "GEOID": 631890.0, "NAME": "Hamilton City", "NAMELSAD": "Hamilton City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1060201.0, "AWATER": 0.0, "INTPTLAT": 39.742678, "INTPTLON": -122.0109458 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0109458, 39.742678 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 910, "felt:has_geometry": true, "felt:h3_index": 644720381597798566, "STATEFP": 6.0, "PLACEFP": 32030.0, "PLACENS": 2611423.0, "GEOID": 632030.0, "NAME": "Happy Camp", "NAMELSAD": "Happy Camp CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31357295.0, "AWATER": 618829.0, "INTPTLAT": 41.8158932, "INTPTLON": -123.3927961 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.3927961, 41.8158932 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 911, "felt:has_geometry": true, "felt:h3_index": 644719881235613325, "STATEFP": 6.0, "PLACEFP": 32036.0, "PLACENS": 2813350.0, "GEOID": 632036.0, "NAME": "Happy Valley", "NAMELSAD": "Happy Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43746583.0, "AWATER": 260613.0, "INTPTLAT": 40.4661408, "INTPTLON": -122.4179692 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4179692, 40.4661408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 912, "felt:has_geometry": true, "felt:h3_index": 644747319251122776, "STATEFP": 6.0, "PLACEFP": 32044.0, "PLACENS": 2408350.0, "GEOID": 632044.0, "NAME": "Harbison Canyon", "NAMELSAD": "Harbison Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26085235.0, "AWATER": 0.0, "INTPTLAT": 32.8272739, "INTPTLON": -116.8380698 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8380698, 32.8272739 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 913, "felt:has_geometry": true, "felt:h3_index": 644747602896963982, "STATEFP": 6.0, "PLACEFP": 32156.0, "PLACENS": 2628738.0, "GEOID": 632156.0, "NAME": "Hardwick", "NAMELSAD": "Hardwick CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 359343.0, "AWATER": 0.0, "INTPTLAT": 36.4025959, "INTPTLON": -119.7207704 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7207704, 36.4025959 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 914, "felt:has_geometry": true, "felt:h3_index": 644747326632756579, "STATEFP": 6.0, "PLACEFP": 32212.0, "PLACENS": 2813413.0, "GEOID": 632212.0, "NAME": "Harmony Grove", "NAMELSAD": "Harmony Grove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7980769.0, "AWATER": 0.0, "INTPTLAT": 33.1007172, "INTPTLON": -117.1379923 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1379923, 33.1007172 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 915, "felt:has_geometry": true, "felt:h3_index": 644747751962263715, "STATEFP": 6.0, "PLACEFP": 32324.0, "PLACENS": 2585423.0, "GEOID": 632324.0, "NAME": "Hartland", "NAMELSAD": "Hartland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 599099.0, "AWATER": 0.0, "INTPTLAT": 36.6538667, "INTPTLON": -118.9588124 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9588124, 36.6538667 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 916, "felt:has_geometry": true, "felt:h3_index": 644721751107046290, "STATEFP": 6.0, "PLACEFP": 32340.0, "PLACENS": 2583031.0, "GEOID": 632340.0, "NAME": "Hartley", "NAMELSAD": "Hartley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16763354.0, "AWATER": 65391.0, "INTPTLAT": 38.4203928, "INTPTLON": -121.9508422 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9508422, 38.4203928 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 917, "felt:has_geometry": true, "felt:h3_index": 644747095730856149, "STATEFP": 6.0, "PLACEFP": 32385.0, "PLACENS": 2583032.0, "GEOID": 632385.0, "NAME": "Hasley Canyon", "NAMELSAD": "Hasley Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14865474.0, "AWATER": 3128.0, "INTPTLAT": 34.4815987, "INTPTLON": -118.6666891 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6666891, 34.4815987 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 918, "felt:has_geometry": true, "felt:h3_index": 644719583149349674, "STATEFP": 6.0, "PLACEFP": 32408.0, "PLACENS": 2583033.0, "GEOID": 632408.0, "NAME": "Hat Creek", "NAMELSAD": "Hat Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 129532652.0, "AWATER": 442608.0, "INTPTLAT": 40.7898058, "INTPTLON": -121.4745149 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4745149, 40.7898058 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 919, "felt:has_geometry": true, "felt:h3_index": 645287686372214601, "STATEFP": 6.0, "PLACEFP": 33084.0, "PLACENS": 2408367.0, "GEOID": 633084.0, "NAME": "Heber", "NAMELSAD": "Heber CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3718242.0, "AWATER": 0.0, "INTPTLAT": 32.7324941, "INTPTLON": -115.5293983 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.5293983, 32.7324941 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 920, "felt:has_geometry": true, "felt:h3_index": 644721909016340648, "STATEFP": 6.0, "PLACEFP": 33294.0, "PLACENS": 2583034.0, "GEOID": 633294.0, "NAME": "Herald", "NAMELSAD": "Herald CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20406216.0, "AWATER": 57778.0, "INTPTLAT": 38.2884031, "INTPTLON": -121.2310658 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2310658, 38.2884031 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 921, "felt:has_geometry": true, "felt:h3_index": 644719982293045926, "STATEFP": 6.0, "PLACEFP": 33336.0, "PLACENS": 2583035.0, "GEOID": 633336.0, "NAME": "Herlong", "NAMELSAD": "Herlong CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4320220.0, "AWATER": 0.0, "INTPTLAT": 40.1417221, "INTPTLON": -120.1396567 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1396567, 40.1417221 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 922, "felt:has_geometry": true, "felt:h3_index": 644722152346298915, "STATEFP": 6.0, "PLACEFP": 33504.0, "PLACENS": 2408380.0, "GEOID": 633504.0, "NAME": "Hickman", "NAMELSAD": "Hickman CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 907866.0, "AWATER": 0.0, "INTPTLAT": 37.6193163, "INTPTLON": -120.7512187 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7512187, 37.6193163 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 923, "felt:has_geometry": true, "felt:h3_index": 644747322880239104, "STATEFP": 6.0, "PLACEFP": 33532.0, "PLACENS": 2408381.0, "GEOID": 633532.0, "NAME": "Hidden Meadows", "NAMELSAD": "Hidden Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17061107.0, "AWATER": 0.0, "INTPTLAT": 33.2236343, "INTPTLON": -117.1198258 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1198258, 33.2236343 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 924, "felt:has_geometry": true, "felt:h3_index": 644721978611729115, "STATEFP": 6.0, "PLACEFP": 33549.0, "PLACENS": 2408382.0, "GEOID": 633549.0, "NAME": "Hidden Valley Lake", "NAMELSAD": "Hidden Valley Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25433860.0, "AWATER": 374389.0, "INTPTLAT": 38.8014979, "INTPTLON": -122.5514216 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5514216, 38.8014979 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 925, "felt:has_geometry": true, "felt:h3_index": 644747021604116150, "STATEFP": 6.0, "PLACEFP": 33574.0, "PLACENS": 2408383.0, "GEOID": 633574.0, "NAME": "Highgrove", "NAMELSAD": "Highgrove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8332742.0, "AWATER": 0.0, "INTPTLAT": 34.0105771, "INTPTLON": -117.3098172 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3098172, 34.0105771 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 926, "felt:has_geometry": true, "felt:h3_index": 644722018547743633, "STATEFP": 6.0, "PLACEFP": 33632.0, "PLACENS": 2805051.0, "GEOID": 633632.0, "NAME": "Highlands", "NAMELSAD": "Highlands CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3367662.0, "AWATER": 0.0, "INTPTLAT": 37.520022, "INTPTLON": -122.3458995 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3458995, 37.520022 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 927, "felt:has_geometry": true, "felt:h3_index": 644748030809134761, "STATEFP": 6.0, "PLACEFP": 33689.0, "PLACENS": 2804409.0, "GEOID": 633689.0, "NAME": "Hillcrest", "NAMELSAD": "Hillcrest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3569985.0, "AWATER": 0.0, "INTPTLAT": 35.3789699, "INTPTLON": -118.9578535 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9578535, 35.3789699 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 928, "felt:has_geometry": true, "felt:h3_index": 644722202070526466, "STATEFP": 6.0, "PLACEFP": 33861.0, "PLACENS": 2408391.0, "GEOID": 633861.0, "NAME": "Hilmar-Irwin", "NAMELSAD": "Hilmar-Irwin CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10171003.0, "AWATER": 0.0, "INTPTLAT": 37.4045429, "INTPTLON": -120.8504261 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8504261, 37.4045429 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 929, "felt:has_geometry": true, "felt:h3_index": 644720404104548882, "STATEFP": 6.0, "PLACEFP": 33935.0, "PLACENS": 2611435.0, "GEOID": 633935.0, "NAME": "Hiouchi", "NAMELSAD": "Hiouchi CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1501797.0, "AWATER": 0.0, "INTPTLAT": 41.7936644, "INTPTLON": -124.0661133 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0661133, 41.7936644 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 930, "felt:has_geometry": true, "felt:h3_index": 644747574792003737, "STATEFP": 6.0, "PLACEFP": 34281.0, "PLACENS": 2408397.0, "GEOID": 634281.0, "NAME": "Home Garden", "NAMELSAD": "Home Garden CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1144547.0, "AWATER": 0.0, "INTPTLAT": 36.3028319, "INTPTLON": -119.637073 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.637073, 36.3028319 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 931, "felt:has_geometry": true, "felt:h3_index": 644747027516415008, "STATEFP": 6.0, "PLACEFP": 34302.0, "PLACENS": 2408398.0, "GEOID": 634302.0, "NAME": "Home Gardens", "NAMELSAD": "Home Gardens CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3964557.0, "AWATER": 0.0, "INTPTLAT": 33.878328, "INTPTLON": -117.5115353 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5115353, 33.878328 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 932, "felt:has_geometry": true, "felt:h3_index": 644747074286051486, "STATEFP": 6.0, "PLACEFP": 34316.0, "PLACENS": 2408399.0, "GEOID": 634316.0, "NAME": "Homeland", "NAMELSAD": "Homeland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11060967.0, "AWATER": 0.0, "INTPTLAT": 33.7458815, "INTPTLON": -117.1132414 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1132414, 33.7458815 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 933, "felt:has_geometry": true, "felt:h3_index": 644747194572775696, "STATEFP": 6.0, "PLACEFP": 34392.0, "PLACENS": 2629366.0, "GEOID": 634392.0, "NAME": "Homestead Valley", "NAMELSAD": "Homestead Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87686964.0, "AWATER": 0.0, "INTPTLAT": 34.2730035, "INTPTLON": -116.4145486 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4145486, 34.2730035 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 934, "felt:has_geometry": true, "felt:h3_index": 644745200841135824, "STATEFP": 6.0, "PLACEFP": 34405.0, "PLACENS": 2583036.0, "GEOID": 634405.0, "NAME": "Homewood Canyon", "NAMELSAD": "Homewood Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26546375.0, "AWATER": 0.0, "INTPTLAT": 35.8900404, "INTPTLON": -117.3864139 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3864139, 35.8900404 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 935, "felt:has_geometry": true, "felt:h3_index": 644721962514455689, "STATEFP": 6.0, "PLACEFP": 34428.0, "PLACENS": 2612482.0, "GEOID": 634428.0, "NAME": "Honcut", "NAMELSAD": "Honcut CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10970686.0, "AWATER": 0.0, "INTPTLAT": 39.3325914, "INTPTLON": -121.5387589 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5387589, 39.3325914 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 936, "felt:has_geometry": true, "felt:h3_index": 644721752093549827, "STATEFP": 6.0, "PLACEFP": 34484.0, "PLACENS": 2583037.0, "GEOID": 634484.0, "NAME": "Hood", "NAMELSAD": "Hood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 816263.0, "AWATER": 0.0, "INTPTLAT": 38.3692915, "INTPTLON": -121.515488 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.515488, 38.3692915 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 937, "felt:has_geometry": true, "felt:h3_index": 644718603466353835, "STATEFP": 6.0, "PLACEFP": 34540.0, "PLACENS": 2585654.0, "GEOID": 634540.0, "NAME": "Hoopa", "NAMELSAD": "Hoopa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52865786.0, "AWATER": 2013972.0, "INTPTLAT": 41.0796391, "INTPTLON": -123.6976603 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.6976603, 41.0796391 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 938, "felt:has_geometry": true, "felt:h3_index": 644721833631241384, "STATEFP": 6.0, "PLACEFP": 34652.0, "PLACENS": 2628739.0, "GEOID": 634652.0, "NAME": "Hopland", "NAMELSAD": "Hopland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9128964.0, "AWATER": 124597.0, "INTPTLAT": 38.9688302, "INTPTLON": -123.1168992 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.1168992, 38.9688302 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 939, "felt:has_geometry": true, "felt:h3_index": 644720535259223248, "STATEFP": 6.0, "PLACEFP": 34694.0, "PLACENS": 2408401.0, "GEOID": 634694.0, "NAME": "Hornbrook", "NAMELSAD": "Hornbrook CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3017332.0, "AWATER": 29395.0, "INTPTLAT": 41.9045054, "INTPTLON": -122.5583187 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5583187, 41.9045054 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 940, "felt:has_geometry": true, "felt:h3_index": 644747791803659437, "STATEFP": 6.0, "PLACEFP": 34708.0, "PLACENS": 2628740.0, "GEOID": 634708.0, "NAME": "Hornitos", "NAMELSAD": "Hornitos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2989557.0, "AWATER": 0.0, "INTPTLAT": 37.5025245, "INTPTLON": -120.238859 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.238859, 37.5025245 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 941, "felt:has_geometry": true, "felt:h3_index": 644718615998629462, "STATEFP": 6.0, "PLACEFP": 34928.0, "PLACENS": 2408406.0, "GEOID": 634928.0, "NAME": "Humboldt Hill", "NAMELSAD": "Humboldt Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10762229.0, "AWATER": 37912.0, "INTPTLAT": 40.722316, "INTPTLON": -124.1973808 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1973808, 40.722316 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6.0, "PLACEFP": 36098.0, "PLACENS": 2583038.0, "GEOID": 636098.0, "NAME": "Hyampom", "NAMELSAD": "Hyampom CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399.0, "AWATER": 0.0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.4688298, 40.6261788 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 943, "felt:has_geometry": true, "felt:h3_index": 644718619252568853, "STATEFP": 6.0, "PLACEFP": 36126.0, "PLACENS": 2408413.0, "GEOID": 636126.0, "NAME": "Hydesville", "NAMELSAD": "Hydesville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19424163.0, "AWATER": 0.0, "INTPTLAT": 40.5578746, "INTPTLON": -124.0822499 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0822499, 40.5578746 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 944, "felt:has_geometry": true, "felt:h3_index": 644747588607780620, "STATEFP": 6.0, "PLACEFP": 36135.0, "PLACENS": 2805906.0, "GEOID": 636135.0, "NAME": "Hypericum", "NAMELSAD": "Hypericum CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80755.0, "AWATER": 0.0, "INTPTLAT": 36.2561675, "INTPTLON": -119.2169328 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2169328, 36.2561675 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 945, "felt:has_geometry": true, "felt:h3_index": 644747999107826817, "STATEFP": 6.0, "PLACEFP": 36168.0, "PLACENS": 2585425.0, "GEOID": 636168.0, "NAME": "Idlewild", "NAMELSAD": "Idlewild CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1189519.0, "AWATER": 0.0, "INTPTLAT": 35.809588, "INTPTLON": -118.6704627 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6704627, 35.809588 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 946, "felt:has_geometry": true, "felt:h3_index": 644747075151599266, "STATEFP": 6.0, "PLACEFP": 36203.0, "PLACENS": 2408414.0, "GEOID": 636203.0, "NAME": "Idyllwild-Pine Cove", "NAMELSAD": "Idyllwild-Pine Cove CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35541508.0, "AWATER": 26090.0, "INTPTLAT": 33.7442086, "INTPTLON": -116.7306896 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.7306896, 33.7442086 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 947, "felt:has_geometry": true, "felt:h3_index": 644719892923169587, "STATEFP": 6.0, "PLACEFP": 36252.0, "PLACENS": 2813333.0, "GEOID": 636252.0, "NAME": "Igo", "NAMELSAD": "Igo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2632527.0, "AWATER": 1954.0, "INTPTLAT": 40.4977403, "INTPTLON": -122.5496208 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5496208, 40.4977403 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 948, "felt:has_geometry": true, "felt:h3_index": 644747731397256489, "STATEFP": 6.0, "PLACEFP": 36350.0, "PLACENS": 2408418.0, "GEOID": 636350.0, "NAME": "Independence", "NAMELSAD": "Independence CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12590232.0, "AWATER": 7190.0, "INTPTLAT": 36.8303101, "INTPTLON": -118.207855 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.207855, 36.8303101 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 949, "felt:has_geometry": true, "felt:h3_index": 644719812106337004, "STATEFP": 6.0, "PLACEFP": 36364.0, "PLACENS": 2408419.0, "GEOID": 636364.0, "NAME": "Indian Falls", "NAMELSAD": "Indian Falls CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4770041.0, "AWATER": 0.0, "INTPTLAT": 40.0587497, "INTPTLON": -120.9803138 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9803138, 40.0587497 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 950, "felt:has_geometry": true, "felt:h3_index": 644718618129342877, "STATEFP": 6.0, "PLACEFP": 36420.0, "PLACENS": 2628741.0, "GEOID": 636420.0, "NAME": "Indianola", "NAMELSAD": "Indianola CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3651825.0, "AWATER": 483.0, "INTPTLAT": 40.8099643, "INTPTLON": -124.0784473 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0784473, 40.8099643 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 951, "felt:has_geometry": true, "felt:h3_index": 644747444529407400, "STATEFP": 6.0, "PLACEFP": 36452.0, "PLACENS": 2583039.0, "GEOID": 636452.0, "NAME": "Indio Hills", "NAMELSAD": "Indio Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56620987.0, "AWATER": 0.0, "INTPTLAT": 33.8410604, "INTPTLON": -116.2484731 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2484731, 33.8410604 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 952, "felt:has_geometry": true, "felt:h3_index": 644722063188698315, "STATEFP": 6.0, "PLACEFP": 36613.0, "PLACENS": 2408427.0, "GEOID": 636613.0, "NAME": "Interlaken", "NAMELSAD": "Interlaken CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25391065.0, "AWATER": 1021066.0, "INTPTLAT": 36.9506026, "INTPTLON": -121.7375192 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7375192, 36.9506026 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 953, "felt:has_geometry": true, "felt:h3_index": 644721777604297910, "STATEFP": 6.0, "PLACEFP": 36616.0, "PLACENS": 2408428.0, "GEOID": 636616.0, "NAME": "Inverness", "NAMELSAD": "Inverness CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16575794.0, "AWATER": 1130139.0, "INTPTLAT": 38.0827964, "INTPTLON": -122.8549425 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8549425, 38.0827964 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 954, "felt:has_geometry": true, "felt:h3_index": 644748007861981726, "STATEFP": 6.0, "PLACEFP": 36658.0, "PLACENS": 2408430.0, "GEOID": 636658.0, "NAME": "Inyokern", "NAMELSAD": "Inyokern CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28301165.0, "AWATER": 2685.0, "INTPTLAT": 35.6543866, "INTPTLON": -117.8194759 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8194759, 35.6543866 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 955, "felt:has_geometry": true, "felt:h3_index": 644719862680070312, "STATEFP": 6.0, "PLACEFP": 36735.0, "PLACENS": 2408431.0, "GEOID": 636735.0, "NAME": "Iron Horse", "NAMELSAD": "Iron Horse CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20055716.0, "AWATER": 0.0, "INTPTLAT": 39.7804812, "INTPTLON": -120.4822908 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4822908, 39.7804812 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 956, "felt:has_geometry": true, "felt:h3_index": 644747885529875494, "STATEFP": 6.0, "PLACEFP": 36868.0, "PLACENS": 2408433.0, "GEOID": 636868.0, "NAME": "Isla Vista", "NAMELSAD": "Isla Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1427676.0, "AWATER": 113833.0, "INTPTLAT": 34.412179, "INTPTLON": -119.8606574 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8606574, 34.412179 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 957, "felt:has_geometry": true, "felt:h3_index": 644747591710840683, "STATEFP": 6.0, "PLACEFP": 36910.0, "PLACENS": 2408434.0, "GEOID": 636910.0, "NAME": "Ivanhoe", "NAMELSAD": "Ivanhoe CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3392302.0, "AWATER": 0.0, "INTPTLAT": 36.3834389, "INTPTLON": -119.220088 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.220088, 36.3834389 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 958, "felt:has_geometry": true, "felt:h3_index": 645287511715930501, "STATEFP": 6.0, "PLACEFP": 37022.0, "PLACENS": 2583040.0, "GEOID": 637022.0, "NAME": "Jacumba", "NAMELSAD": "Jacumba CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15848184.0, "AWATER": 18532.0, "INTPTLAT": 32.6364781, "INTPTLON": -116.190706 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.190706, 32.6364781 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 959, "felt:has_geometry": true, "felt:h3_index": 644722166217217779, "STATEFP": 6.0, "PLACEFP": 37106.0, "PLACENS": 2408437.0, "GEOID": 637106.0, "NAME": "Jamestown", "NAMELSAD": "Jamestown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7776484.0, "AWATER": 5375.0, "INTPTLAT": 37.9582289, "INTPTLON": -120.4070713 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4070713, 37.9582289 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 960, "felt:has_geometry": true, "felt:h3_index": 644747351573707558, "STATEFP": 6.0, "PLACEFP": 37120.0, "PLACENS": 2408438.0, "GEOID": 637120.0, "NAME": "Jamul", "NAMELSAD": "Jamul CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43597950.0, "AWATER": 0.0, "INTPTLAT": 32.71841, "INTPTLON": -116.870862 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.870862, 32.71841 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 961, "felt:has_geometry": true, "felt:h3_index": 644719995172245941, "STATEFP": 6.0, "PLACEFP": 37134.0, "PLACENS": 2611437.0, "GEOID": 637134.0, "NAME": "Janesville", "NAMELSAD": "Janesville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87578550.0, "AWATER": 50416.0, "INTPTLAT": 40.3011047, "INTPTLON": -120.4903177 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4903177, 40.3011047 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 962, "felt:has_geometry": true, "felt:h3_index": 644721856733564974, "STATEFP": 6.0, "PLACEFP": 37274.0, "PLACENS": 2583041.0, "GEOID": 637274.0, "NAME": "Jenner", "NAMELSAD": "Jenner CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5463963.0, "AWATER": 745264.0, "INTPTLAT": 38.459034, "INTPTLON": -123.1274672 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.1274672, 38.459034 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 963, "felt:has_geometry": true, "felt:h3_index": 644747236764377309, "STATEFP": 6.0, "PLACEFP": 37400.0, "PLACENS": 2408446.0, "GEOID": 637400.0, "NAME": "Johannesburg", "NAMELSAD": "Johannesburg CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6354495.0, "AWATER": 0.0, "INTPTLAT": 35.3718756, "INTPTLON": -117.6418025 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6418025, 35.3718756 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 964, "felt:has_geometry": true, "felt:h3_index": 644719577030895305, "STATEFP": 6.0, "PLACEFP": 37442.0, "PLACENS": 2813351.0, "GEOID": 637442.0, "NAME": "Johnson Park", "NAMELSAD": "Johnson Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2337519.0, "AWATER": 0.0, "INTPTLAT": 40.9211789, "INTPTLON": -121.6295305 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6295305, 40.9211789 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 965, "felt:has_geometry": true, "felt:h3_index": 644719994481830603, "STATEFP": 6.0, "PLACEFP": 37484.0, "PLACENS": 2583042.0, "GEOID": 637484.0, "NAME": "Johnstonville", "NAMELSAD": "Johnstonville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22246440.0, "AWATER": 108930.0, "INTPTLAT": 40.3801984, "INTPTLON": -120.5861336 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5861336, 40.3801984 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 966, "felt:has_geometry": true, "felt:h3_index": 644719863315242262, "STATEFP": 6.0, "PLACEFP": 37512.0, "PLACENS": 2408450.0, "GEOID": 637512.0, "NAME": "Johnsville", "NAMELSAD": "Johnsville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35638914.0, "AWATER": 134828.0, "INTPTLAT": 39.7697097, "INTPTLON": -120.6997827 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6997827, 39.7697097 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6.0, "PLACEFP": 37533.0, "PLACENS": 2813352.0, "GEOID": 637533.0, "NAME": "Jones Valley", "NAMELSAD": "Jones Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447.0, "AWATER": 14027.0, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2420038, 40.7013152 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 968, "felt:has_geometry": true, "felt:h3_index": 644747194024372355, "STATEFP": 6.0, "PLACEFP": 37554.0, "PLACENS": 2408454.0, "GEOID": 637554.0, "NAME": "Joshua Tree", "NAMELSAD": "Joshua Tree CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 93463461.0, "AWATER": 0.0, "INTPTLAT": 34.1236329, "INTPTLON": -116.3128622 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3128622, 34.1236329 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 969, "felt:has_geometry": true, "felt:h3_index": 644747629431316765, "STATEFP": 6.0, "PLACEFP": 37568.0, "PLACENS": 2805908.0, "GEOID": 637568.0, "NAME": "Jovista", "NAMELSAD": "Jovista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260300.0, "AWATER": 0.0, "INTPTLAT": 35.7940141, "INTPTLON": -119.18957 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.18957, 35.7940141 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 970, "felt:has_geometry": true, "felt:h3_index": 644747481633020677, "STATEFP": 6.0, "PLACEFP": 37582.0, "PLACENS": 2408455.0, "GEOID": 637582.0, "NAME": "Julian", "NAMELSAD": "Julian CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20424527.0, "AWATER": 0.0, "INTPTLAT": 33.0735017, "INTPTLON": -116.588883 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.588883, 33.0735017 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6.0, "PLACEFP": 37596.0, "PLACENS": 2583043.0, "GEOID": 637596.0, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396.0, "AWATER": 87697.0, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0846436, 40.736022 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 972, "felt:has_geometry": true, "felt:h3_index": 644745690741369476, "STATEFP": 6.0, "PLACEFP": 37624.0, "PLACENS": 2583044.0, "GEOID": 637624.0, "NAME": "June Lake", "NAMELSAD": "June Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26694795.0, "AWATER": 2048342.0, "INTPTLAT": 37.7617827, "INTPTLON": -119.1147288 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1147288, 37.7617827 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 973, "felt:has_geometry": true, "felt:h3_index": 644719811419101937, "STATEFP": 6.0, "PLACEFP": 37904.0, "PLACENS": 2408465.0, "GEOID": 637904.0, "NAME": "Keddie", "NAMELSAD": "Keddie CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1702275.0, "AWATER": 0.0, "INTPTLAT": 40.0059438, "INTPTLON": -120.9524163 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9524163, 40.0059438 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 974, "felt:has_geometry": true, "felt:h3_index": 644745180210314029, "STATEFP": 6.0, "PLACEFP": 37918.0, "PLACENS": 2408466.0, "GEOID": 637918.0, "NAME": "Keeler", "NAMELSAD": "Keeler CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987188.0, "AWATER": 0.0, "INTPTLAT": 36.4867184, "INTPTLON": -117.87333 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.87333, 36.4867184 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 975, "felt:has_geometry": true, "felt:h3_index": 644748017925478132, "STATEFP": 6.0, "PLACEFP": 37946.0, "PLACENS": 2408467.0, "GEOID": 637946.0, "NAME": "Keene", "NAMELSAD": "Keene CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24459682.0, "AWATER": 13903.0, "INTPTLAT": 35.2317801, "INTPTLON": -118.6130668 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6130668, 35.2317801 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 976, "felt:has_geometry": true, "felt:h3_index": 644719844730946280, "STATEFP": 6.0, "PLACEFP": 38024.0, "PLACENS": 2612483.0, "GEOID": 638024.0, "NAME": "Kelly Ridge", "NAMELSAD": "Kelly Ridge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5054047.0, "AWATER": 0.0, "INTPTLAT": 39.5288032, "INTPTLON": -121.4662586 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4662586, 39.5288032 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 977, "felt:has_geometry": true, "felt:h3_index": 644721986836369778, "STATEFP": 6.0, "PLACEFP": 38044.0, "PLACENS": 2408468.0, "GEOID": 638044.0, "NAME": "Kelseyville", "NAMELSAD": "Kelseyville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7471626.0, "AWATER": 15272.0, "INTPTLAT": 38.9701843, "INTPTLON": -122.8313842 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8313842, 38.9701843 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 978, "felt:has_geometry": true, "felt:h3_index": 644722160798555046, "STATEFP": 6.0, "PLACEFP": 38065.0, "PLACENS": 2408471.0, "GEOID": 638065.0, "NAME": "Kennedy", "NAMELSAD": "Kennedy CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3139084.0, "AWATER": 0.0, "INTPTLAT": 37.9290417, "INTPTLON": -121.2457834 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2457834, 37.9290417 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 979, "felt:has_geometry": true, "felt:h3_index": 644748016219490121, "STATEFP": 6.0, "PLACEFP": 38076.0, "PLACENS": 2585427.0, "GEOID": 638076.0, "NAME": "Kennedy Meadows", "NAMELSAD": "Kennedy Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15080914.0, "AWATER": 0.0, "INTPTLAT": 36.0076393, "INTPTLON": -118.1099468 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1099468, 36.0076393 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 980, "felt:has_geometry": true, "felt:h3_index": 644721771180547337, "STATEFP": 6.0, "PLACEFP": 38086.0, "PLACENS": 2408472.0, "GEOID": 638086.0, "NAME": "Kensington", "NAMELSAD": "Kensington CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2495981.0, "AWATER": 23043.0, "INTPTLAT": 37.9051443, "INTPTLON": -122.2842262 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2842262, 37.9051443 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 981, "felt:has_geometry": true, "felt:h3_index": 644721782688979360, "STATEFP": 6.0, "PLACEFP": 38114.0, "PLACENS": 2408473.0, "GEOID": 638114.0, "NAME": "Kentfield", "NAMELSAD": "Kentfield CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7839024.0, "AWATER": 49346.0, "INTPTLAT": 37.9358726, "INTPTLON": -122.5589993 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5589993, 37.9358726 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 982, "felt:has_geometry": true, "felt:h3_index": 644721742179512531, "STATEFP": 6.0, "PLACEFP": 38156.0, "PLACENS": 2583045.0, "GEOID": 638156.0, "NAME": "Kenwood", "NAMELSAD": "Kenwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13381900.0, "AWATER": 0.0, "INTPTLAT": 38.4154075, "INTPTLON": -122.5387535 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5387535, 38.4154075 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6.0, "PLACEFP": 38177.0, "PLACENS": 2813399.0, "GEOID": 638177.0, "NAME": "Kep'el", "NAMELSAD": "Kep'el CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634.0, "AWATER": 0.0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.8190065, 41.2841423 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 984, "felt:has_geometry": true, "felt:h3_index": 644747987560177964, "STATEFP": 6.0, "PLACEFP": 38310.0, "PLACENS": 2408474.0, "GEOID": 638310.0, "NAME": "Kernville", "NAMELSAD": "Kernville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32727820.0, "AWATER": 797180.0, "INTPTLAT": 35.7550172, "INTPTLON": -118.4309073 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4309073, 35.7550172 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 985, "felt:has_geometry": true, "felt:h3_index": 644719892813896067, "STATEFP": 6.0, "PLACEFP": 38352.0, "PLACENS": 2583046.0, "GEOID": 638352.0, "NAME": "Keswick", "NAMELSAD": "Keswick CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8778129.0, "AWATER": 325908.0, "INTPTLAT": 40.6129587, "INTPTLON": -122.4607792 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4607792, 40.6129587 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 986, "felt:has_geometry": true, "felt:h3_index": 644747577347466051, "STATEFP": 6.0, "PLACEFP": 38394.0, "PLACENS": 2408476.0, "GEOID": 638394.0, "NAME": "Kettleman City", "NAMELSAD": "Kettleman City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 546646.0, "AWATER": 0.0, "INTPTLAT": 36.0089852, "INTPTLON": -119.9628518 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.9628518, 36.0089852 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 987, "felt:has_geometry": true, "felt:h3_index": 644722150161598373, "STATEFP": 6.0, "PLACEFP": 38422.0, "PLACENS": 2408477.0, "GEOID": 638422.0, "NAME": "Keyes", "NAMELSAD": "Keyes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4060586.0, "AWATER": 0.0, "INTPTLAT": 37.557308, "INTPTLON": -120.9113747 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9113747, 37.557308 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 988, "felt:has_geometry": true, "felt:h3_index": 644745478633104960, "STATEFP": 6.0, "PLACEFP": 38548.0, "PLACENS": 2408481.0, "GEOID": 638548.0, "NAME": "Kings Beach", "NAMELSAD": "Kings Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7403909.0, "AWATER": 301151.0, "INTPTLAT": 39.2475277, "INTPTLON": -120.0199033 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0199033, 39.2475277 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 989, "felt:has_geometry": true, "felt:h3_index": 644745489669531938, "STATEFP": 6.0, "PLACEFP": 38604.0, "PLACENS": 2628744.0, "GEOID": 638604.0, "NAME": "Kingvale", "NAMELSAD": "Kingvale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2490334.0, "AWATER": 22032.0, "INTPTLAT": 39.3209972, "INTPTLON": -120.4383095 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4383095, 39.3209972 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 990, "felt:has_geometry": true, "felt:h3_index": 644745724699489955, "STATEFP": 6.0, "PLACEFP": 38646.0, "PLACENS": 2408489.0, "GEOID": 638646.0, "NAME": "Kirkwood", "NAMELSAD": "Kirkwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11290203.0, "AWATER": 2525431.0, "INTPTLAT": 38.689265, "INTPTLON": -120.0549795 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0549795, 38.689265 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 991, "felt:has_geometry": true, "felt:h3_index": 644720408322448306, "STATEFP": 6.0, "PLACEFP": 38702.0, "PLACENS": 2408492.0, "GEOID": 638702.0, "NAME": "Klamath", "NAMELSAD": "Klamath CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44592620.0, "AWATER": 0.0, "INTPTLAT": 41.5728585, "INTPTLON": -124.0556058 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0556058, 41.5728585 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 992, "felt:has_geometry": true, "felt:h3_index": 644721787210385566, "STATEFP": 6.0, "PLACEFP": 38772.0, "PLACENS": 2408496.0, "GEOID": 638772.0, "NAME": "Knightsen", "NAMELSAD": "Knightsen CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21645449.0, "AWATER": 232033.0, "INTPTLAT": 37.9624258, "INTPTLON": -121.6485795 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6485795, 37.9624258 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 993, "felt:has_geometry": true, "felt:h3_index": 644722167744399584, "STATEFP": 6.0, "PLACEFP": 38786.0, "PLACENS": 2805904.0, "GEOID": 638786.0, "NAME": "Knights Ferry", "NAMELSAD": "Knights Ferry CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 414507.0, "AWATER": 26505.0, "INTPTLAT": 37.8211519, "INTPTLON": -120.6690888 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6690888, 37.8211519 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 994, "felt:has_geometry": true, "felt:h3_index": 644721914214835804, "STATEFP": 6.0, "PLACEFP": 38800.0, "PLACENS": 2583047.0, "GEOID": 638800.0, "NAME": "Knights Landing", "NAMELSAD": "Knights Landing CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399445.0, "AWATER": 0.0, "INTPTLAT": 38.7979719, "INTPTLON": -121.7174475 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7174475, 38.7979719 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 995, "felt:has_geometry": true, "felt:h3_index": 644747143617877316, "STATEFP": 6.0, "PLACEFP": 39045.0, "PLACENS": 2408503.0, "GEOID": 639045.0, "NAME": "La Crescenta-Montrose", "NAMELSAD": "La Crescenta-Montrose CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8878978.0, "AWATER": 28793.0, "INTPTLAT": 34.233016, "INTPTLON": -118.2357737 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2357737, 34.233016 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 996, "felt:has_geometry": true, "felt:h3_index": 644748030827861812, "STATEFP": 6.0, "PLACEFP": 39052.0, "PLACENS": 2804420.0, "GEOID": 639052.0, "NAME": "La Cresta", "NAMELSAD": "La Cresta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2710186.0, "AWATER": 0.0, "INTPTLAT": 35.3972011, "INTPTLON": -118.9893122 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9893122, 35.3972011 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 997, "felt:has_geometry": true, "felt:h3_index": 644722039425784414, "STATEFP": 6.0, "PLACEFP": 39094.0, "PLACENS": 2628745.0, "GEOID": 639094.0, "NAME": "Ladera", "NAMELSAD": "Ladera CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1113098.0, "AWATER": 0.0, "INTPTLAT": 37.3998746, "INTPTLON": -122.1989712 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1989712, 37.3998746 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 998, "felt:has_geometry": true, "felt:h3_index": 644747131324165390, "STATEFP": 6.0, "PLACEFP": 39108.0, "PLACENS": 2408521.0, "GEOID": 639108.0, "NAME": "Ladera Heights", "NAMELSAD": "Ladera Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7679969.0, "AWATER": 276.0, "INTPTLAT": 33.9967756, "INTPTLON": -118.370028 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.370028, 33.9967756 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 999, "felt:has_geometry": true, "felt:h3_index": 644747061373484104, "STATEFP": 6.0, "PLACEFP": 39114.0, "PLACENS": 2583048.0, "GEOID": 639114.0, "NAME": "Ladera Ranch", "NAMELSAD": "Ladera Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12807936.0, "AWATER": 0.0, "INTPTLAT": 33.5491462, "INTPTLON": -117.6417408 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6417408, 33.5491462 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1000, "felt:has_geometry": true, "felt:h3_index": 644722166574720330, "STATEFP": 6.0, "PLACEFP": 39164.0, "PLACENS": 2805905.0, "GEOID": 639164.0, "NAME": "La Grange", "NAMELSAD": "La Grange CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 241845.0, "AWATER": 0.0, "INTPTLAT": 37.6634557, "INTPTLON": -120.4631472 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4631472, 37.6634557 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1001, "felt:has_geometry": true, "felt:h3_index": 644721776541379446, "STATEFP": 6.0, "PLACEFP": 39283.0, "PLACENS": 2408528.0, "GEOID": 639283.0, "NAME": "Lagunitas-Forest Knolls", "NAMELSAD": "Lagunitas-Forest Knolls CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10998147.0, "AWATER": 0.0, "INTPTLAT": 38.0180262, "INTPTLON": -122.6913028 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6913028, 38.0180262 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1002, "felt:has_geometry": true, "felt:h3_index": 644722022967424064, "STATEFP": 6.0, "PLACEFP": 39318.0, "PLACENS": 2628746.0, "GEOID": 639318.0, "NAME": "La Honda", "NAMELSAD": "La Honda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11022981.0, "AWATER": 20735.0, "INTPTLAT": 37.317705, "INTPTLON": -122.2584296 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2584296, 37.317705 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1003, "felt:has_geometry": true, "felt:h3_index": 644719839847540496, "STATEFP": 6.0, "PLACEFP": 39411.0, "PLACENS": 2408529.0, "GEOID": 639411.0, "NAME": "Lake Almanor Country Club", "NAMELSAD": "Lake Almanor Country Club CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7104822.0, "AWATER": 0.0, "INTPTLAT": 40.2577714, "INTPTLON": -121.1469582 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1469582, 40.2577714 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1004, "felt:has_geometry": true, "felt:h3_index": 644719839872170521, "STATEFP": 6.0, "PLACEFP": 39420.0, "PLACENS": 2408530.0, "GEOID": 639420.0, "NAME": "Lake Almanor Peninsula", "NAMELSAD": "Lake Almanor Peninsula CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7863269.0, "AWATER": 0.0, "INTPTLAT": 40.2812102, "INTPTLON": -121.1344538 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1344538, 40.2812102 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1005, "felt:has_geometry": true, "felt:h3_index": 644719820097006417, "STATEFP": 6.0, "PLACEFP": 39425.0, "PLACENS": 2408531.0, "GEOID": 639425.0, "NAME": "Lake Almanor West", "NAMELSAD": "Lake Almanor West CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5920415.0, "AWATER": 0.0, "INTPTLAT": 40.2335734, "INTPTLON": -121.2020754 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2020754, 40.2335734 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1006, "felt:has_geometry": true, "felt:h3_index": 644747053443966362, "STATEFP": 6.0, "PLACEFP": 39444.0, "PLACENS": 2408532.0, "GEOID": 639444.0, "NAME": "Lake Arrowhead", "NAMELSAD": "Lake Arrowhead CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45786324.0, "AWATER": 3169654.0, "INTPTLAT": 34.2540272, "INTPTLON": -117.1780911 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1780911, 34.2540272 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1007, "felt:has_geometry": true, "felt:h3_index": 644719883894269667, "STATEFP": 6.0, "PLACEFP": 39460.0, "PLACENS": 2628747.0, "GEOID": 639460.0, "NAME": "Lake California", "NAMELSAD": "Lake California CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16346691.0, "AWATER": 862108.0, "INTPTLAT": 40.3583551, "INTPTLON": -122.2088428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2088428, 40.3583551 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1008, "felt:has_geometry": true, "felt:h3_index": 644719716665661684, "STATEFP": 6.0, "PLACEFP": 39472.0, "PLACENS": 2583049.0, "GEOID": 639472.0, "NAME": "Lake City", "NAMELSAD": "Lake City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15065516.0, "AWATER": 6524.0, "INTPTLAT": 41.6453171, "INTPTLON": -120.222097 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.222097, 41.6453171 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1009, "felt:has_geometry": true, "felt:h3_index": 644719830364330124, "STATEFP": 6.0, "PLACEFP": 39483.0, "PLACENS": 2408536.0, "GEOID": 639483.0, "NAME": "Lake Davis", "NAMELSAD": "Lake Davis CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14080604.0, "AWATER": 11652.0, "INTPTLAT": 39.8524283, "INTPTLON": -120.4584099 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4584099, 39.8524283 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1010, "felt:has_geometry": true, "felt:h3_index": 644722167330780213, "STATEFP": 6.0, "PLACEFP": 39484.0, "PLACENS": 2627934.0, "GEOID": 639484.0, "NAME": "Lake Don Pedro", "NAMELSAD": "Lake Don Pedro CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47708999.0, "AWATER": 3331031.0, "INTPTLAT": 37.6414202, "INTPTLON": -120.3643599 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3643599, 37.6414202 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1011, "felt:has_geometry": true, "felt:h3_index": 644719643816705163, "STATEFP": 6.0, "PLACEFP": 39514.0, "PLACENS": 2408556.0, "GEOID": 639514.0, "NAME": "Lakehead", "NAMELSAD": "Lakehead CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12160323.0, "AWATER": 1511480.0, "INTPTLAT": 40.9034358, "INTPTLON": -122.3996577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3996577, 40.9034358 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1012, "felt:has_geometry": true, "felt:h3_index": 644747093450220424, "STATEFP": 6.0, "PLACEFP": 39556.0, "PLACENS": 2583050.0, "GEOID": 639556.0, "NAME": "Lake Hughes", "NAMELSAD": "Lake Hughes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27506574.0, "AWATER": 154600.0, "INTPTLAT": 34.6824154, "INTPTLON": -118.4519379 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4519379, 34.6824154 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1013, "felt:has_geometry": true, "felt:h3_index": 644747983533164040, "STATEFP": 6.0, "PLACEFP": 39570.0, "PLACENS": 2408538.0, "GEOID": 639570.0, "NAME": "Lake Isabella", "NAMELSAD": "Lake Isabella CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56239883.0, "AWATER": 1098346.0, "INTPTLAT": 35.6370977, "INTPTLON": -118.4826097 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4826097, 35.6370977 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1014, "felt:has_geometry": true, "felt:h3_index": 644747059912990947, "STATEFP": 6.0, "PLACEFP": 39598.0, "PLACENS": 2408560.0, "GEOID": 639598.0, "NAME": "Lakeland Village", "NAMELSAD": "Lakeland Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22716621.0, "AWATER": 662460.0, "INTPTLAT": 33.6489563, "INTPTLON": -117.366823 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.366823, 33.6489563 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1015, "felt:has_geometry": true, "felt:h3_index": 644747110137651232, "STATEFP": 6.0, "PLACEFP": 39612.0, "PLACENS": 2408541.0, "GEOID": 639612.0, "NAME": "Lake Los Angeles", "NAMELSAD": "Lake Los Angeles CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25229336.0, "AWATER": 125676.0, "INTPTLAT": 34.609839, "INTPTLON": -117.8303369 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8303369, 34.609839 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1016, "felt:has_geometry": true, "felt:h3_index": 644747027705934632, "STATEFP": 6.0, "PLACEFP": 39645.0, "PLACENS": 2583051.0, "GEOID": 639645.0, "NAME": "Lake Mathews", "NAMELSAD": "Lake Mathews CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41251878.0, "AWATER": 0.0, "INTPTLAT": 33.8249659, "INTPTLON": -117.3683428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3683428, 33.8249659 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1017, "felt:has_geometry": true, "felt:h3_index": 644747918461971753, "STATEFP": 6.0, "PLACEFP": 39670.0, "PLACENS": 2408546.0, "GEOID": 639670.0, "NAME": "Lake Nacimiento", "NAMELSAD": "Lake Nacimiento CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27172014.0, "AWATER": 60669.0, "INTPTLAT": 35.730962, "INTPTLON": -120.8695164 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8695164, 35.730962 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1018, "felt:has_geometry": true, "felt:h3_index": 644721873548962928, "STATEFP": 6.0, "PLACEFP": 39690.0, "PLACENS": 2408547.0, "GEOID": 639690.0, "NAME": "Lake of the Pines", "NAMELSAD": "Lake of the Pines CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6544587.0, "AWATER": 908432.0, "INTPTLAT": 39.0387456, "INTPTLON": -121.061341 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.061341, 39.0387456 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1019, "felt:has_geometry": true, "felt:h3_index": 644747100381466922, "STATEFP": 6.0, "PLACEFP": 39696.0, "PLACENS": 2408548.0, "GEOID": 639696.0, "NAME": "Lake of the Woods", "NAMELSAD": "Lake of the Woods CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9166577.0, "AWATER": 1509.0, "INTPTLAT": 34.8271377, "INTPTLON": -118.997304 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.997304, 34.8271377 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1020, "felt:has_geometry": true, "felt:h3_index": 644747077596899179, "STATEFP": 6.0, "PLACEFP": 39715.0, "PLACENS": 2583052.0, "GEOID": 639715.0, "NAME": "Lake Riverside", "NAMELSAD": "Lake Riverside CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18888592.0, "AWATER": 216496.0, "INTPTLAT": 33.518735, "INTPTLON": -116.8121026 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8121026, 33.518735 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1021, "felt:has_geometry": true, "felt:h3_index": 644747328301214488, "STATEFP": 6.0, "PLACEFP": 39724.0, "PLACENS": 2408550.0, "GEOID": 639724.0, "NAME": "Lake San Marcos", "NAMELSAD": "Lake San Marcos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4420806.0, "AWATER": 266467.0, "INTPTLAT": 33.1223616, "INTPTLON": -117.2085756 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2085756, 33.1223616 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1022, "felt:has_geometry": true, "felt:h3_index": 644719606499957170, "STATEFP": 6.0, "PLACEFP": 39728.0, "PLACENS": 2805902.0, "GEOID": 639728.0, "NAME": "Lake Shastina", "NAMELSAD": "Lake Shastina CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10393370.0, "AWATER": 2563420.0, "INTPTLAT": 41.5231272, "INTPTLON": -122.3763662 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3763662, 41.5231272 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1023, "felt:has_geometry": true, "felt:h3_index": 644747126377620781, "STATEFP": 6.0, "PLACEFP": 39735.0, "PLACENS": 2585428.0, "GEOID": 639735.0, "NAME": "Lake Sherwood", "NAMELSAD": "Lake Sherwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8125833.0, "AWATER": 547804.0, "INTPTLAT": 34.131803, "INTPTLON": -118.884714 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.884714, 34.131803 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1024, "felt:has_geometry": true, "felt:h3_index": 644747867401926581, "STATEFP": 6.0, "PLACEFP": 39759.0, "PLACENS": 2804421.0, "GEOID": 639759.0, "NAME": "Lakeside", "NAMELSAD": "Lakeside CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4674201.0, "AWATER": 0.0, "INTPTLAT": 35.2346673, "INTPTLON": -119.0828583 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0828583, 35.2346673 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1025, "felt:has_geometry": true, "felt:h3_index": 644747318946116194, "STATEFP": 6.0, "PLACEFP": 39766.0, "PLACENS": 2408562.0, "GEOID": 639766.0, "NAME": "Lakeside", "NAMELSAD": "Lakeside CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17944759.0, "AWATER": 894360.0, "INTPTLAT": 32.856617, "INTPTLON": -116.9042369 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9042369, 32.856617 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1026, "felt:has_geometry": true, "felt:h3_index": 644747028529011912, "STATEFP": 6.0, "PLACEFP": 39836.0, "PLACENS": 2408564.0, "GEOID": 639836.0, "NAME": "Lakeview", "NAMELSAD": "Lakeview CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8442803.0, "AWATER": 0.0, "INTPTLAT": 33.8284655, "INTPTLON": -117.1233341 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1233341, 33.8284655 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1027, "felt:has_geometry": true, "felt:h3_index": 644721880924281937, "STATEFP": 6.0, "PLACEFP": 39885.0, "PLACENS": 2408555.0, "GEOID": 639885.0, "NAME": "Lake Wildwood", "NAMELSAD": "Lake Wildwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7920376.0, "AWATER": 1172452.0, "INTPTLAT": 39.2332397, "INTPTLON": -121.1977302 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1977302, 39.2332397 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1028, "felt:has_geometry": true, "felt:h3_index": 644748019729748112, "STATEFP": 6.0, "PLACEFP": 40088.0, "PLACENS": 2408568.0, "GEOID": 640088.0, "NAME": "Lamont", "NAMELSAD": "Lamont CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12423016.0, "AWATER": 66020.0, "INTPTLAT": 35.2651422, "INTPTLON": -118.9160415 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9160415, 35.2651422 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1029, "felt:has_geometry": true, "felt:h3_index": 644747580186125331, "STATEFP": 6.0, "PLACEFP": 40116.0, "PLACENS": 2408570.0, "GEOID": 640116.0, "NAME": "Lanare", "NAMELSAD": "Lanare CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5232743.0, "AWATER": 0.0, "INTPTLAT": 36.4377234, "INTPTLON": -119.9321988 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.9321988, 36.4377234 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1030, "felt:has_geometry": true, "felt:h3_index": 644719845493462406, "STATEFP": 6.0, "PLACEFP": 40312.0, "PLACENS": 2408509.0, "GEOID": 640312.0, "NAME": "La Porte", "NAMELSAD": "La Porte CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11543765.0, "AWATER": 0.0, "INTPTLAT": 39.6725081, "INTPTLON": -120.9852443 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9852443, 39.6725081 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1031, "felt:has_geometry": true, "felt:h3_index": 644747303627811586, "STATEFP": 6.0, "PLACEFP": 40326.0, "PLACENS": 2408510.0, "GEOID": 640326.0, "NAME": "La Presa", "NAMELSAD": "La Presa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14238420.0, "AWATER": 1349731.0, "INTPTLAT": 32.7123147, "INTPTLON": -117.0037099 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0037099, 32.7123147 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1032, "felt:has_geometry": true, "felt:h3_index": 644721920169012546, "STATEFP": 6.0, "PLACEFP": 40410.0, "PLACENS": 2408515.0, "GEOID": 640410.0, "NAME": "La Riviera", "NAMELSAD": "La Riviera CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4920394.0, "AWATER": 368987.0, "INTPTLAT": 38.5685383, "INTPTLON": -121.3549624 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3549624, 38.5685383 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1033, "felt:has_geometry": true, "felt:h3_index": 644721742949549809, "STATEFP": 6.0, "PLACEFP": 40426.0, "PLACENS": 2408575.0, "GEOID": 640426.0, "NAME": "Larkfield-Wikiup", "NAMELSAD": "Larkfield-Wikiup CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13747228.0, "AWATER": 0.0, "INTPTLAT": 38.5129719, "INTPTLON": -122.7536006 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7536006, 38.5129719 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1034, "felt:has_geometry": true, "felt:h3_index": 644722063071969315, "STATEFP": 6.0, "PLACEFP": 40508.0, "PLACENS": 2583053.0, "GEOID": 640508.0, "NAME": "La Selva Beach", "NAMELSAD": "La Selva Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13718609.0, "AWATER": 0.0, "INTPTLAT": 36.9273747, "INTPTLON": -121.8444038 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8444038, 36.9273747 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1035, "felt:has_geometry": true, "felt:h3_index": 644747057458590926, "STATEFP": 6.0, "PLACEFP": 40526.0, "PLACENS": 2408577.0, "GEOID": 640526.0, "NAME": "Las Flores", "NAMELSAD": "Las Flores CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6522767.0, "AWATER": 0.0, "INTPTLAT": 33.5838362, "INTPTLON": -117.6237413 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6237413, 33.5838362 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1036, "felt:has_geometry": true, "felt:h3_index": 644719930425005838, "STATEFP": 6.0, "PLACEFP": 40536.0, "PLACENS": 2628748.0, "GEOID": 640536.0, "NAME": "Las Flores", "NAMELSAD": "Las Flores CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 926091.0, "AWATER": 0.0, "INTPTLAT": 40.072141, "INTPTLON": -122.1573122 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1573122, 40.072141 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1037, "felt:has_geometry": true, "felt:h3_index": 644722059554376348, "STATEFP": 6.0, "PLACEFP": 40592.0, "PLACENS": 2408578.0, "GEOID": 640592.0, "NAME": "Las Lomas", "NAMELSAD": "Las Lomas CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2685684.0, "AWATER": 0.0, "INTPTLAT": 36.8688131, "INTPTLON": -121.7316111 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7316111, 36.8688131 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1038, "felt:has_geometry": true, "felt:h3_index": 644747602419724299, "STATEFP": 6.0, "PLACEFP": 40746.0, "PLACENS": 2408585.0, "GEOID": 640746.0, "NAME": "Laton", "NAMELSAD": "Laton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6545990.0, "AWATER": 0.0, "INTPTLAT": 36.4314103, "INTPTLON": -119.6975968 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6975968, 36.4314103 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1039, "felt:has_geometry": true, "felt:h3_index": 644747813586403651, "STATEFP": 6.0, "PLACEFP": 40872.0, "PLACENS": 2628749.0, "GEOID": 640872.0, "NAME": "La Vina", "NAMELSAD": "La Vina CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260865.0, "AWATER": 0.0, "INTPTLAT": 36.8798651, "INTPTLON": -120.1148024 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1148024, 36.8798651 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1040, "felt:has_geometry": true, "felt:h3_index": 644718847372672021, "STATEFP": 6.0, "PLACEFP": 40928.0, "PLACENS": 2408589.0, "GEOID": 640928.0, "NAME": "Laytonville", "NAMELSAD": "Laytonville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13908641.0, "AWATER": 163478.0, "INTPTLAT": 39.662256, "INTPTLON": -123.4950147 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.4950147, 39.662256 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1041, "felt:has_geometry": true, "felt:h3_index": 644747100688967177, "STATEFP": 6.0, "PLACEFP": 40956.0, "PLACENS": 2408595.0, "GEOID": 640956.0, "NAME": "Lebec", "NAMELSAD": "Lebec CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39689131.0, "AWATER": 760.0, "INTPTLAT": 34.8446143, "INTPTLON": -118.8992375 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8992375, 34.8446143 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1042, "felt:has_geometry": true, "felt:h3_index": 644745693464166596, "STATEFP": 6.0, "PLACEFP": 40998.0, "PLACENS": 2583054.0, "GEOID": 640998.0, "NAME": "Lee Vining", "NAMELSAD": "Lee Vining CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13483686.0, "AWATER": 6196.0, "INTPTLAT": 37.9548986, "INTPTLON": -119.1220135 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1220135, 37.9548986 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1043, "felt:has_geometry": true, "felt:h3_index": 644718862050317412, "STATEFP": 6.0, "PLACEFP": 41026.0, "PLACENS": 2628750.0, "GEOID": 641026.0, "NAME": "Leggett", "NAMELSAD": "Leggett CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7003204.0, "AWATER": 0.0, "INTPTLAT": 39.8635391, "INTPTLON": -123.7251757 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7251757, 39.8635391 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1044, "felt:has_geometry": true, "felt:h3_index": 644747824191334660, "STATEFP": 6.0, "PLACEFP": 41040.0, "PLACENS": 2408590.0, "GEOID": 641040.0, "NAME": "Le Grand", "NAMELSAD": "Le Grand CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2953204.0, "AWATER": 0.0, "INTPTLAT": 37.2288146, "INTPTLON": -120.2540024 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2540024, 37.2288146 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1045, "felt:has_geometry": true, "felt:h3_index": 644747590710743209, "STATEFP": 6.0, "PLACEFP": 41110.0, "PLACENS": 2408598.0, "GEOID": 641110.0, "NAME": "Lemon Cove", "NAMELSAD": "Lemon Cove CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3457953.0, "AWATER": 0.0, "INTPTLAT": 36.38088, "INTPTLON": -119.0284596 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0284596, 36.38088 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1046, "felt:has_geometry": true, "felt:h3_index": 644721918184446238, "STATEFP": 6.0, "PLACEFP": 41142.0, "PLACENS": 2583055.0, "GEOID": 641142.0, "NAME": "Lemon Hill", "NAMELSAD": "Lemon Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4247517.0, "AWATER": 0.0, "INTPTLAT": 38.5172317, "INTPTLON": -121.4572792 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4572792, 38.5172317 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1047, "felt:has_geometry": true, "felt:h3_index": 644747572466202214, "STATEFP": 6.0, "PLACEFP": 41166.0, "PLACENS": 2408599.0, "GEOID": 641166.0, "NAME": "Lemoore Station", "NAMELSAD": "Lemoore Station CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10965026.0, "AWATER": 0.0, "INTPTLAT": 36.2632777, "INTPTLON": -119.9048364 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.9048364, 36.2632777 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1048, "felt:has_geometry": true, "felt:h3_index": 644747394734962224, "STATEFP": 6.0, "PLACEFP": 41180.0, "PLACENS": 2408600.0, "GEOID": 641180.0, "NAME": "Lennox", "NAMELSAD": "Lennox CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2831941.0, "AWATER": 0.0, "INTPTLAT": 33.9380681, "INTPTLON": -118.3585399 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3585399, 33.9380681 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1049, "felt:has_geometry": true, "felt:h3_index": 644747280253347606, "STATEFP": 6.0, "PLACEFP": 41194.0, "PLACENS": 2408601.0, "GEOID": 641194.0, "NAME": "Lenwood", "NAMELSAD": "Lenwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5389420.0, "AWATER": 0.0, "INTPTLAT": 34.8860557, "INTPTLON": -117.1077727 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1077727, 34.8860557 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1050, "felt:has_geometry": true, "felt:h3_index": 644747092349047627, "STATEFP": 6.0, "PLACEFP": 41208.0, "PLACENS": 2583056.0, "GEOID": 641208.0, "NAME": "Leona Valley", "NAMELSAD": "Leona Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48155344.0, "AWATER": 70714.0, "INTPTLAT": 34.608144, "INTPTLON": -118.3013217 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3013217, 34.608144 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1051, "felt:has_geometry": true, "felt:h3_index": 644722010310627419, "STATEFP": 6.0, "PLACEFP": 41282.0, "PLACENS": 2408606.0, "GEOID": 641282.0, "NAME": "Lexington Hills", "NAMELSAD": "Lexington Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12220701.0, "AWATER": 88518.0, "INTPTLAT": 37.1590159, "INTPTLON": -121.9887929 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9887929, 37.1590159 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6.0, "PLACEFP": 41390.0, "PLACENS": 2583057.0, "GEOID": 641390.0, "NAME": "Likely", "NAMELSAD": "Likely CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973.0, "AWATER": 11716.0, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5012358, 41.2268272 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1053, "felt:has_geometry": true, "felt:h3_index": 644722153686720537, "STATEFP": 6.0, "PLACEFP": 41558.0, "PLACENS": 2408612.0, "GEOID": 641558.0, "NAME": "Lincoln Village", "NAMELSAD": "Lincoln Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1903792.0, "AWATER": 0.0, "INTPTLAT": 38.0054709, "INTPTLON": -121.3338427 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3338427, 38.0054709 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1054, "felt:has_geometry": true, "felt:h3_index": 644721880377435185, "STATEFP": 6.0, "PLACEFP": 41572.0, "PLACENS": 2408613.0, "GEOID": 641572.0, "NAME": "Linda", "NAMELSAD": "Linda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22236546.0, "AWATER": 0.0, "INTPTLAT": 39.1241415, "INTPTLON": -121.5421728 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5421728, 39.1241415 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1055, "felt:has_geometry": true, "felt:h3_index": 644747590765331821, "STATEFP": 6.0, "PLACEFP": 41656.0, "PLACENS": 2585429.0, "GEOID": 641656.0, "NAME": "Lindcove", "NAMELSAD": "Lindcove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 295046.0, "AWATER": 0.0, "INTPTLAT": 36.3580266, "INTPTLON": -119.0645837 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0645837, 36.3580266 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1056, "felt:has_geometry": true, "felt:h3_index": 644722160485404756, "STATEFP": 6.0, "PLACEFP": 41670.0, "PLACENS": 2408614.0, "GEOID": 641670.0, "NAME": "Linden", "NAMELSAD": "Linden CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19189037.0, "AWATER": 134701.0, "INTPTLAT": 38.0181401, "INTPTLON": -121.1015623 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1015623, 38.0181401 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1057, "felt:has_geometry": true, "felt:h3_index": 644747588578951500, "STATEFP": 6.0, "PLACEFP": 41740.0, "PLACENS": 2585430.0, "GEOID": 641740.0, "NAME": "Linnell Camp", "NAMELSAD": "Linnell Camp CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 303368.0, "AWATER": 0.0, "INTPTLAT": 36.3088874, "INTPTLON": -119.2225832 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2225832, 36.3088874 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6.0, "PLACEFP": 41782.0, "PLACENS": 2628751.0, "GEOID": 641782.0, "NAME": "Litchfield", "NAMELSAD": "Litchfield CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458.0, "AWATER": 0.0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3807054, 40.3877018 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1059, "felt:has_geometry": true, "felt:h3_index": 644719861379633585, "STATEFP": 6.0, "PLACEFP": 41789.0, "PLACENS": 2408619.0, "GEOID": 641789.0, "NAME": "Little Grass Valley", "NAMELSAD": "Little Grass Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25897822.0, "AWATER": 0.0, "INTPTLAT": 39.7252456, "INTPTLON": -120.9590728 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9590728, 39.7252456 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1060, "felt:has_geometry": true, "felt:h3_index": 644718886715590917, "STATEFP": 6.0, "PLACEFP": 41866.0, "PLACENS": 2628752.0, "GEOID": 641866.0, "NAME": "Little River", "NAMELSAD": "Little River CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4331558.0, "AWATER": 0.0, "INTPTLAT": 39.2702854, "INTPTLON": -123.7817494 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7817494, 39.2702854 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1061, "felt:has_geometry": true, "felt:h3_index": 644747107979897752, "STATEFP": 6.0, "PLACEFP": 41880.0, "PLACENS": 2408620.0, "GEOID": 641880.0, "NAME": "Littlerock", "NAMELSAD": "Littlerock CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4772931.0, "AWATER": 3763.0, "INTPTLAT": 34.525126, "INTPTLON": -117.9816314 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9816314, 34.525126 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1062, "felt:has_geometry": true, "felt:h3_index": 644719539417787625, "STATEFP": 6.0, "PLACEFP": 41908.0, "PLACENS": 2611439.0, "GEOID": 641908.0, "NAME": "Little Valley", "NAMELSAD": "Little Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1076095.0, "AWATER": 26795.0, "INTPTLAT": 40.8930488, "INTPTLON": -121.1780413 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1780413, 40.8930488 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1063, "felt:has_geometry": true, "felt:h3_index": 644722014608371811, "STATEFP": 6.0, "PLACEFP": 41922.0, "PLACENS": 2408622.0, "GEOID": 641922.0, "NAME": "Live Oak", "NAMELSAD": "Live Oak CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8398410.0, "AWATER": 0.0, "INTPTLAT": 36.9860239, "INTPTLON": -121.9804138 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9804138, 36.9860239 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1064, "felt:has_geometry": true, "felt:h3_index": 644722156240425236, "STATEFP": 6.0, "PLACEFP": 42104.0, "PLACENS": 2408625.0, "GEOID": 642104.0, "NAME": "Lockeford", "NAMELSAD": "Lockeford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21603060.0, "AWATER": 120019.0, "INTPTLAT": 38.1491282, "INTPTLON": -121.1543094 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1543094, 38.1491282 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1065, "felt:has_geometry": true, "felt:h3_index": 644721922483215114, "STATEFP": 6.0, "PLACEFP": 42142.0, "PLACENS": 2812656.0, "GEOID": 642142.0, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082298.0, "AWATER": 0.0, "INTPTLAT": 38.4866914, "INTPTLON": -120.6034249 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6034249, 38.4866914 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1066, "felt:has_geometry": true, "felt:h3_index": 644747925786418421, "STATEFP": 6.0, "PLACEFP": 42146.0, "PLACENS": 2583058.0, "GEOID": 642146.0, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28157116.0, "AWATER": 86923.0, "INTPTLAT": 35.9400827, "INTPTLON": -121.078282 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.078282, 35.9400827 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1067, "felt:has_geometry": true, "felt:h3_index": 644721940661747024, "STATEFP": 6.0, "PLACEFP": 42230.0, "PLACENS": 2583059.0, "GEOID": 642230.0, "NAME": "Lodoga", "NAMELSAD": "Lodoga CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8772455.0, "AWATER": 0.0, "INTPTLAT": 39.3042725, "INTPTLON": -122.5059438 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5059438, 39.3042725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1068, "felt:has_geometry": true, "felt:h3_index": 644718620356135345, "STATEFP": 6.0, "PLACEFP": 42328.0, "PLACENS": 2611440.0, "GEOID": 642328.0, "NAME": "Loleta", "NAMELSAD": "Loleta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5500846.0, "AWATER": 0.0, "INTPTLAT": 40.6408852, "INTPTLON": -124.2225561 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.2225561, 40.6408852 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1069, "felt:has_geometry": true, "felt:h3_index": 644722023500722541, "STATEFP": 6.0, "PLACEFP": 42384.0, "PLACENS": 2628753.0, "GEOID": 642384.0, "NAME": "Loma Mar", "NAMELSAD": "Loma Mar CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4487609.0, "AWATER": 0.0, "INTPTLAT": 37.2657842, "INTPTLON": -122.3006925 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3006925, 37.2657842 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1070, "felt:has_geometry": true, "felt:h3_index": 644721882114091755, "STATEFP": 6.0, "PLACEFP": 42412.0, "PLACENS": 2408121.0, "GEOID": 642412.0, "NAME": "Loma Rica", "NAMELSAD": "Loma Rica CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47881271.0, "AWATER": 0.0, "INTPTLAT": 39.3203182, "INTPTLON": -121.4038312 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4038312, 39.3203182 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1071, "felt:has_geometry": true, "felt:h3_index": 644722007842263266, "STATEFP": 6.0, "PLACEFP": 42510.0, "PLACENS": 2583060.0, "GEOID": 642510.0, "NAME": "Lompico", "NAMELSAD": "Lompico CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8749690.0, "AWATER": 315.0, "INTPTLAT": 37.1146189, "INTPTLON": -122.0527676 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0527676, 37.1146189 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1072, "felt:has_geometry": true, "felt:h3_index": 644747597903365891, "STATEFP": 6.0, "PLACEFP": 42566.0, "PLACENS": 2408122.0, "GEOID": 642566.0, "NAME": "London", "NAMELSAD": "London CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2115155.0, "AWATER": 0.0, "INTPTLAT": 36.4804797, "INTPTLON": -119.4449403 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4449403, 36.4804797 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1073, "felt:has_geometry": true, "felt:h3_index": 644747764256103088, "STATEFP": 6.0, "PLACEFP": 42580.0, "PLACENS": 2408123.0, "GEOID": 642580.0, "NAME": "Lone Pine", "NAMELSAD": "Lone Pine CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49299705.0, "AWATER": 468049.0, "INTPTLAT": 36.5744471, "INTPTLON": -118.0806101 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0806101, 36.5744471 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1074, "felt:has_geometry": true, "felt:h3_index": 644745765795357227, "STATEFP": 6.0, "PLACEFP": 42622.0, "PLACENS": 2583061.0, "GEOID": 642622.0, "NAME": "Long Barn", "NAMELSAD": "Long Barn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7478480.0, "AWATER": 3839.0, "INTPTLAT": 38.0932629, "INTPTLON": -120.1346861 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1346861, 38.0932629 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1075, "felt:has_geometry": true, "felt:h3_index": 644719565413754960, "STATEFP": 6.0, "PLACEFP": 43126.0, "PLACENS": 2583062.0, "GEOID": 643126.0, "NAME": "Lookout", "NAMELSAD": "Lookout CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14152115.0, "AWATER": 322967.0, "INTPTLAT": 41.210401, "INTPTLON": -121.1529597 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1529597, 41.210401 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1076, "felt:has_geometry": true, "felt:h3_index": 644737352855757984, "STATEFP": 6.0, "PLACEFP": 43252.0, "PLACENS": 2408131.0, "GEOID": 643252.0, "NAME": "Los Alamos", "NAMELSAD": "Los Alamos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2341055.0, "AWATER": 0.0, "INTPTLAT": 34.7418033, "INTPTLON": -120.2745961 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2745961, 34.7418033 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1077, "felt:has_geometry": true, "felt:h3_index": 644747970854218868, "STATEFP": 6.0, "PLACEFP": 44042.0, "PLACENS": 2583063.0, "GEOID": 644042.0, "NAME": "Los Berros", "NAMELSAD": "Los Berros CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6507454.0, "AWATER": 0.0, "INTPTLAT": 35.0809068, "INTPTLON": -120.5450358 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5450358, 35.0809068 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1078, "felt:has_geometry": true, "felt:h3_index": 644719934649223755, "STATEFP": 6.0, "PLACEFP": 44140.0, "PLACENS": 2408138.0, "GEOID": 644140.0, "NAME": "Los Molinos", "NAMELSAD": "Los Molinos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5637051.0, "AWATER": 80526.0, "INTPTLAT": 40.0270736, "INTPTLON": -122.0979711 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0979711, 40.0270736 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1079, "felt:has_geometry": true, "felt:h3_index": 644747920002423320, "STATEFP": 6.0, "PLACEFP": 44182.0, "PLACENS": 2407812.0, "GEOID": 644182.0, "NAME": "Los Osos", "NAMELSAD": "Los Osos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33057047.0, "AWATER": 52650.0, "INTPTLAT": 35.3070832, "INTPTLON": -120.8245216 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8245216, 35.3070832 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1080, "felt:has_geometry": true, "felt:h3_index": 644747968310007968, "STATEFP": 6.0, "PLACEFP": 44242.0, "PLACENS": 2583065.0, "GEOID": 644242.0, "NAME": "Los Ranchos", "NAMELSAD": "Los Ranchos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7482152.0, "AWATER": 8695.0, "INTPTLAT": 35.2126991, "INTPTLON": -120.6280302 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6280302, 35.2126991 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1081, "felt:has_geometry": true, "felt:h3_index": 644747612084539746, "STATEFP": 6.0, "PLACEFP": 44280.0, "PLACENS": 2408143.0, "GEOID": 644280.0, "NAME": "Lost Hills", "NAMELSAD": "Lost Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14378327.0, "AWATER": 30536.0, "INTPTLAT": 35.6327212, "INTPTLON": -119.6778893 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6778893, 35.6327212 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1082, "felt:has_geometry": true, "felt:h3_index": 644721974877209326, "STATEFP": 6.0, "PLACEFP": 44350.0, "PLACENS": 2408146.0, "GEOID": 644350.0, "NAME": "Lower Lake", "NAMELSAD": "Lower Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6906625.0, "AWATER": 64423.0, "INTPTLAT": 38.9130345, "INTPTLON": -122.6069867 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6069867, 38.9130345 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1083, "felt:has_geometry": true, "felt:h3_index": 644722039580486314, "STATEFP": 6.0, "PLACEFP": 44378.0, "PLACENS": 2408147.0, "GEOID": 644378.0, "NAME": "Loyola", "NAMELSAD": "Loyola CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3600984.0, "AWATER": 0.0, "INTPTLAT": 37.3503251, "INTPTLON": -122.0979729 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0979729, 37.3503251 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1084, "felt:has_geometry": true, "felt:h3_index": 644721782290946286, "STATEFP": 6.0, "PLACEFP": 44399.0, "PLACENS": 2408149.0, "GEOID": 644399.0, "NAME": "Lucas Valley-Marinwood", "NAMELSAD": "Lucas Valley-Marinwood CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14843405.0, "AWATER": 0.0, "INTPTLAT": 38.0405086, "INTPTLON": -122.5764817 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5764817, 38.0405086 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1085, "felt:has_geometry": true, "felt:h3_index": 644721986587892896, "STATEFP": 6.0, "PLACEFP": 44406.0, "PLACENS": 2408150.0, "GEOID": 644406.0, "NAME": "Lucerne", "NAMELSAD": "Lucerne CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13916576.0, "AWATER": 35489.0, "INTPTLAT": 39.0567698, "INTPTLON": -122.7702894 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7702894, 39.0567698 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1086, "felt:has_geometry": true, "felt:h3_index": 644747049448031517, "STATEFP": 6.0, "PLACEFP": 44420.0, "PLACENS": 2627937.0, "GEOID": 644420.0, "NAME": "Lucerne Valley", "NAMELSAD": "Lucerne Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 273570981.0, "AWATER": 0.0, "INTPTLAT": 34.4427191, "INTPTLON": -116.9020927 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9020927, 34.4427191 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1087, "felt:has_geometry": true, "felt:h3_index": 644747036710988390, "STATEFP": 6.0, "PLACEFP": 44644.0, "PLACENS": 2583066.0, "GEOID": 644644.0, "NAME": "Lytle Creek", "NAMELSAD": "Lytle Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15586138.0, "AWATER": 0.0, "INTPTLAT": 34.2499257, "INTPTLON": -117.5044314 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5044314, 34.2499257 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1088, "felt:has_geometry": true, "felt:h3_index": 644719862407333721, "STATEFP": 6.0, "PLACEFP": 44672.0, "PLACENS": 2612134.0, "GEOID": 644672.0, "NAME": "Mabie", "NAMELSAD": "Mabie CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9430660.0, "AWATER": 0.0, "INTPTLAT": 39.7770598, "INTPTLON": -120.5446993 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5446993, 39.7770598 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6.0, "PLACEFP": 44700.0, "PLACENS": 2408194.0, "GEOID": 644700.0, "NAME": "McArthur", "NAMELSAD": "McArthur CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485.0, "AWATER": 78202.0, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4052401, 41.0419947 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1090, "felt:has_geometry": true, "felt:h3_index": 644721919723248522, "STATEFP": 6.0, "PLACEFP": 44760.0, "PLACENS": 2583067.0, "GEOID": 644760.0, "NAME": "McClellan Park", "NAMELSAD": "McClellan Park CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10536176.0, "AWATER": 0.0, "INTPTLAT": 38.6628961, "INTPTLON": -121.4016562 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4016562, 38.6628961 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1091, "felt:has_geometry": true, "felt:h3_index": 644747999141301597, "STATEFP": 6.0, "PLACEFP": 44770.0, "PLACENS": 2585431.0, "GEOID": 644770.0, "NAME": "McClenney Tract", "NAMELSAD": "McClenney Tract CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1595077.0, "AWATER": 0.0, "INTPTLAT": 35.8219843, "INTPTLON": -118.6478386 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6478386, 35.8219843 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1092, "felt:has_geometry": true, "felt:h3_index": 644719655508391001, "STATEFP": 6.0, "PLACEFP": 44784.0, "PLACENS": 2408196.0, "GEOID": 644784.0, "NAME": "McCloud", "NAMELSAD": "McCloud CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6273613.0, "AWATER": 170633.0, "INTPTLAT": 41.2547389, "INTPTLON": -122.1362211 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1362211, 41.2547389 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1093, "felt:has_geometry": true, "felt:h3_index": 644719631186676889, "STATEFP": 6.0, "PLACEFP": 44812.0, "PLACENS": 2408156.0, "GEOID": 644812.0, "NAME": "Macdoel", "NAMELSAD": "Macdoel CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 432723.0, "AWATER": 0.0, "INTPTLAT": 41.8261734, "INTPTLON": -122.0058849 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0058849, 41.8261734 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1094, "felt:has_geometry": true, "felt:h3_index": 644745682823441733, "STATEFP": 6.0, "PLACEFP": 44830.0, "PLACENS": 2583068.0, "GEOID": 644830.0, "NAME": "McGee Creek", "NAMELSAD": "McGee Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10384180.0, "AWATER": 0.0, "INTPTLAT": 37.5726652, "INTPTLON": -118.7909998 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7909998, 37.5726652 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1095, "felt:has_geometry": true, "felt:h3_index": 644718585915844358, "STATEFP": 6.0, "PLACEFP": 44910.0, "PLACENS": 2408201.0, "GEOID": 644910.0, "NAME": "McKinleyville", "NAMELSAD": "McKinleyville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54083206.0, "AWATER": 657148.0, "INTPTLAT": 40.9515707, "INTPTLON": -124.077357 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.077357, 40.9515707 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1096, "felt:has_geometry": true, "felt:h3_index": 644747878039075036, "STATEFP": 6.0, "PLACEFP": 44924.0, "PLACENS": 2408203.0, "GEOID": 644924.0, "NAME": "McKittrick", "NAMELSAD": "McKittrick CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778294.0, "AWATER": 0.0, "INTPTLAT": 35.2980277, "INTPTLON": -119.6249215 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6249215, 35.2980277 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1097, "felt:has_geometry": true, "felt:h3_index": 644722201342329698, "STATEFP": 6.0, "PLACEFP": 45006.0, "PLACENS": 2583069.0, "GEOID": 645006.0, "NAME": "McSwain", "NAMELSAD": "McSwain CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15609041.0, "AWATER": 0.0, "INTPTLAT": 37.3145052, "INTPTLON": -120.5867585 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5867585, 37.3145052 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1098, "felt:has_geometry": true, "felt:h3_index": 644719557509073669, "STATEFP": 6.0, "PLACEFP": 45008.0, "PLACENS": 2804434.0, "GEOID": 645008.0, "NAME": "Madeline", "NAMELSAD": "Madeline CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 137117.0, "AWATER": 0.0, "INTPTLAT": 41.0514103, "INTPTLON": -120.4754336 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4754336, 41.0514103 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1099, "felt:has_geometry": true, "felt:h3_index": 644747827306739501, "STATEFP": 6.0, "PLACEFP": 45050.0, "PLACENS": 2408158.0, "GEOID": 645050.0, "NAME": "Madera Acres", "NAMELSAD": "Madera Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18560291.0, "AWATER": 0.0, "INTPTLAT": 37.0126384, "INTPTLON": -120.0797304 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0797304, 37.0126384 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1100, "felt:has_geometry": true, "felt:h3_index": 644747815604085862, "STATEFP": 6.0, "PLACEFP": 45054.0, "PLACENS": 2805050.0, "GEOID": 645054.0, "NAME": "Madera Ranchos", "NAMELSAD": "Madera Ranchos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6747243.0, "AWATER": 0.0, "INTPTLAT": 36.92791, "INTPTLON": -119.8772833 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8772833, 36.92791 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1101, "felt:has_geometry": true, "felt:h3_index": 644721761309348901, "STATEFP": 6.0, "PLACEFP": 45064.0, "PLACENS": 2583070.0, "GEOID": 645064.0, "NAME": "Madison", "NAMELSAD": "Madison CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4004365.0, "AWATER": 0.0, "INTPTLAT": 38.6749883, "INTPTLON": -121.9702536 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9702536, 38.6749883 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1102, "felt:has_geometry": true, "felt:h3_index": 644718609011754920, "STATEFP": 6.0, "PLACEFP": 45092.0, "PLACENS": 2583071.0, "GEOID": 645092.0, "NAME": "Mad River", "NAMELSAD": "Mad River CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 91131300.0, "AWATER": 0.0, "INTPTLAT": 40.4325319, "INTPTLON": -123.4920607 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.4920607, 40.4325319 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1103, "felt:has_geometry": true, "felt:h3_index": 644719851742904618, "STATEFP": 6.0, "PLACEFP": 45120.0, "PLACENS": 2408161.0, "GEOID": 645120.0, "NAME": "Magalia", "NAMELSAD": "Magalia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36313238.0, "AWATER": 10648.0, "INTPTLAT": 39.8187523, "INTPTLON": -121.6077477 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6077477, 39.8187523 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1104, "felt:has_geometry": true, "felt:h3_index": 644747818788599445, "STATEFP": 6.0, "PLACEFP": 45232.0, "PLACENS": 2408163.0, "GEOID": 645232.0, "NAME": "Malaga", "NAMELSAD": "Malaga CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 709465.0, "AWATER": 0.0, "INTPTLAT": 36.681602, "INTPTLON": -119.7317857 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7317857, 36.681602 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1105, "felt:has_geometry": true, "felt:h3_index": 644721812890509963, "STATEFP": 6.0, "PLACEFP": 45386.0, "PLACENS": 2628754.0, "GEOID": 645386.0, "NAME": "Manchester", "NAMELSAD": "Manchester CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6780881.0, "AWATER": 0.0, "INTPTLAT": 38.9743844, "INTPTLON": -123.6909611 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.6909611, 38.9743844 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1106, "felt:has_geometry": true, "felt:h3_index": 644718617907779420, "STATEFP": 6.0, "PLACEFP": 45414.0, "PLACENS": 2628755.0, "GEOID": 645414.0, "NAME": "Manila", "NAMELSAD": "Manila CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805140.0, "AWATER": 17823.0, "INTPTLAT": 40.8508972, "INTPTLON": -124.1631934 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1631934, 40.8508972 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1107, "felt:has_geometry": true, "felt:h3_index": 644719895002153130, "STATEFP": 6.0, "PLACEFP": 45512.0, "PLACENS": 2408168.0, "GEOID": 645512.0, "NAME": "Manton", "NAMELSAD": "Manton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45833424.0, "AWATER": 67403.0, "INTPTLAT": 40.4266788, "INTPTLON": -121.8504212 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8504212, 40.4266788 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1108, "felt:has_geometry": true, "felt:h3_index": 644747022065336939, "STATEFP": 6.0, "PLACEFP": 45680.0, "PLACENS": 2408176.0, "GEOID": 645680.0, "NAME": "March ARB", "NAMELSAD": "March ARB CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30946983.0, "AWATER": 36554.0, "INTPTLAT": 33.8891842, "INTPTLON": -117.2777289 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2777289, 33.8891842 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1109, "felt:has_geometry": true, "felt:h3_index": 644747131572210081, "STATEFP": 6.0, "PLACEFP": 45806.0, "PLACENS": 2408179.0, "GEOID": 645806.0, "NAME": "Marina del Rey", "NAMELSAD": "Marina del Rey CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221336.0, "AWATER": 1546421.0, "INTPTLAT": 33.9763728, "INTPTLON": -118.4508879 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4508879, 33.9763728 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1110, "felt:has_geometry": true, "felt:h3_index": 644721768187241552, "STATEFP": 6.0, "PLACEFP": 45820.0, "PLACENS": 2628816.0, "GEOID": 645820.0, "NAME": "Marin City", "NAMELSAD": "Marin City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1390167.0, "AWATER": 0.0, "INTPTLAT": 37.8711561, "INTPTLON": -122.5137358 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5137358, 37.8711561 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1111, "felt:has_geometry": true, "felt:h3_index": 644747792618013426, "STATEFP": 6.0, "PLACEFP": 45932.0, "PLACENS": 2408181.0, "GEOID": 645932.0, "NAME": "Mariposa", "NAMELSAD": "Mariposa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10455849.0, "AWATER": 8859.0, "INTPTLAT": 37.4912172, "INTPTLON": -119.973216 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.973216, 37.4912172 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1112, "felt:has_geometry": true, "felt:h3_index": 644745747127928020, "STATEFP": 6.0, "PLACEFP": 45988.0, "PLACENS": 2408184.0, "GEOID": 645988.0, "NAME": "Markleeville", "NAMELSAD": "Markleeville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16914713.0, "AWATER": 0.0, "INTPTLAT": 38.6840021, "INTPTLON": -119.8227384 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8227384, 38.6840021 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1113, "felt:has_geometry": true, "felt:h3_index": 644722174424896202, "STATEFP": 6.0, "PLACEFP": 46100.0, "PLACENS": 2583072.0, "GEOID": 646100.0, "NAME": "Martell", "NAMELSAD": "Martell CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5664200.0, "AWATER": 2501.0, "INTPTLAT": 38.3673271, "INTPTLON": -120.8072042 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8072042, 38.3673271 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1114, "felt:has_geometry": true, "felt:h3_index": 644747593825062285, "STATEFP": 6.0, "PLACEFP": 46223.0, "PLACENS": 2585433.0, "GEOID": 646223.0, "NAME": "Matheny", "NAMELSAD": "Matheny CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1109244.0, "AWATER": 0.0, "INTPTLAT": 36.1706457, "INTPTLON": -119.3516084 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3516084, 36.1706457 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1115, "felt:has_geometry": true, "felt:h3_index": 644721908476057731, "STATEFP": 6.0, "PLACEFP": 46226.0, "PLACENS": 2583073.0, "GEOID": 646226.0, "NAME": "Mather", "NAMELSAD": "Mather CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25964878.0, "AWATER": 64570.0, "INTPTLAT": 38.5483621, "INTPTLON": -121.2838405 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2838405, 38.5483621 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1116, "felt:has_geometry": true, "felt:h3_index": 644721939188048516, "STATEFP": 6.0, "PLACEFP": 46338.0, "PLACENS": 2583074.0, "GEOID": 646338.0, "NAME": "Maxwell", "NAMELSAD": "Maxwell CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569332.0, "AWATER": 0.0, "INTPTLAT": 39.2770782, "INTPTLON": -122.1946759 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1946759, 39.2770782 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1117, "felt:has_geometry": true, "felt:h3_index": 644747818879343533, "STATEFP": 6.0, "PLACEFP": 46400.0, "PLACENS": 2583075.0, "GEOID": 646400.0, "NAME": "Mayfair", "NAMELSAD": "Mayfair CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1342684.0, "AWATER": 0.0, "INTPTLAT": 36.7693457, "INTPTLON": -119.7612619 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7612619, 36.7693457 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1118, "felt:has_geometry": true, "felt:h3_index": 644747148889791584, "STATEFP": 6.0, "PLACEFP": 46436.0, "PLACENS": 2408192.0, "GEOID": 646436.0, "NAME": "Mayflower Village", "NAMELSAD": "Mayflower Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1776899.0, "AWATER": 0.0, "INTPTLAT": 34.115931, "INTPTLON": -118.0095813 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0095813, 34.115931 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1119, "felt:has_geometry": true, "felt:h3_index": 644747026387508085, "STATEFP": 6.0, "PLACEFP": 46520.0, "PLACENS": 2583076.0, "GEOID": 646520.0, "NAME": "Meadowbrook", "NAMELSAD": "Meadowbrook CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17490920.0, "AWATER": 64888.0, "INTPTLAT": 33.7257821, "INTPTLON": -117.2850862 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2850862, 33.7257821 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1120, "felt:has_geometry": true, "felt:h3_index": 644719808794191718, "STATEFP": 6.0, "PLACEFP": 46618.0, "PLACENS": 2408809.0, "GEOID": 646618.0, "NAME": "Meadow Valley", "NAMELSAD": "Meadow Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22066143.0, "AWATER": 0.0, "INTPTLAT": 39.9323117, "INTPTLON": -121.0830864 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0830864, 39.9323117 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1121, "felt:has_geometry": true, "felt:h3_index": 644721873599498001, "STATEFP": 6.0, "PLACEFP": 46632.0, "PLACENS": 2408810.0, "GEOID": 646632.0, "NAME": "Meadow Vista", "NAMELSAD": "Meadow Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13678314.0, "AWATER": 402245.0, "INTPTLAT": 39.0017176, "INTPTLON": -121.0375816 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0375816, 39.0017176 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1122, "felt:has_geometry": true, "felt:h3_index": 644747025959525805, "STATEFP": 6.0, "PLACEFP": 46646.0, "PLACENS": 2583077.0, "GEOID": 646646.0, "NAME": "Mead Valley", "NAMELSAD": "Mead Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49432252.0, "AWATER": 0.0, "INTPTLAT": 33.8333108, "INTPTLON": -117.2851999 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.2851999, 33.8333108 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1123, "felt:has_geometry": true, "felt:h3_index": 644747437084350486, "STATEFP": 6.0, "PLACEFP": 46660.0, "PLACENS": 2408811.0, "GEOID": 646660.0, "NAME": "Mecca", "NAMELSAD": "Mecca CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18042180.0, "AWATER": 0.0, "INTPTLAT": 33.5767084, "INTPTLON": -116.0645275 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.0645275, 33.5767084 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1124, "felt:has_geometry": true, "felt:h3_index": 644737291619592856, "STATEFP": 6.0, "PLACEFP": 46702.0, "PLACENS": 2408814.0, "GEOID": 646702.0, "NAME": "Meiners Oaks", "NAMELSAD": "Meiners Oaks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6315365.0, "AWATER": 0.0, "INTPTLAT": 34.4553491, "INTPTLON": -119.2701657 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2701657, 34.4553491 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1125, "felt:has_geometry": true, "felt:h3_index": 644718882790408492, "STATEFP": 6.0, "PLACEFP": 46814.0, "PLACENS": 2408815.0, "GEOID": 646814.0, "NAME": "Mendocino", "NAMELSAD": "Mendocino CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5846594.0, "AWATER": 2006861.0, "INTPTLAT": 39.3124505, "INTPTLON": -123.7924016 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7924016, 39.3124505 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1126, "felt:has_geometry": true, "felt:h3_index": 644747023634293062, "STATEFP": 6.0, "PLACEFP": 46884.0, "PLACENS": 2408816.0, "GEOID": 646884.0, "NAME": "Mentone", "NAMELSAD": "Mentone CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15830890.0, "AWATER": 30802.0, "INTPTLAT": 34.0606386, "INTPTLON": -117.1150201 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1150201, 34.0606386 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1127, "felt:has_geometry": true, "felt:h3_index": 644721993619691746, "STATEFP": 6.0, "PLACEFP": 46926.0, "PLACENS": 2583078.0, "GEOID": 646926.0, "NAME": "Meridian", "NAMELSAD": "Meridian CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713975.0, "AWATER": 0.0, "INTPTLAT": 39.1404373, "INTPTLON": -121.9079004 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9079004, 39.1404373 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1128, "felt:has_geometry": true, "felt:h3_index": 644745688106959468, "STATEFP": 6.0, "PLACEFP": 47013.0, "PLACENS": 2408819.0, "GEOID": 647013.0, "NAME": "Mesa", "NAMELSAD": "Mesa CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9072237.0, "AWATER": 395419.0, "INTPTLAT": 37.4168335, "INTPTLON": -118.5391146 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.5391146, 37.4168335 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1129, "felt:has_geometry": true, "felt:h3_index": 644748522181272144, "STATEFP": 6.0, "PLACEFP": 47066.0, "PLACENS": 2583079.0, "GEOID": 647066.0, "NAME": "Mesa Verde", "NAMELSAD": "Mesa Verde CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11139877.0, "AWATER": 0.0, "INTPTLAT": 33.5956999, "INTPTLON": -114.7316045 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.7316045, 33.5956999 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1130, "felt:has_geometry": true, "felt:h3_index": 644745742716440576, "STATEFP": 6.0, "PLACEFP": 47086.0, "PLACENS": 2408820.0, "GEOID": 647086.0, "NAME": "Mesa Vista", "NAMELSAD": "Mesa Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12627546.0, "AWATER": 0.0, "INTPTLAT": 38.8102875, "INTPTLON": -119.8032665 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8032665, 38.8102875 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1131, "felt:has_geometry": true, "felt:h3_index": 644747869765632337, "STATEFP": 6.0, "PLACEFP": 47164.0, "PLACENS": 2408825.0, "GEOID": 647164.0, "NAME": "Mettler", "NAMELSAD": "Mettler CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 602290.0, "AWATER": 0.0, "INTPTLAT": 35.0635633, "INTPTLON": -118.9729799 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9729799, 35.0635633 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1132, "felt:has_geometry": true, "felt:h3_index": 644747874819988396, "STATEFP": 6.0, "PLACEFP": 47192.0, "PLACENS": 2629763.0, "GEOID": 647192.0, "NAME": "Mexican Colony", "NAMELSAD": "Mexican Colony CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82312.0, "AWATER": 0.0, "INTPTLAT": 35.4689297, "INTPTLON": -119.2687123 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2687123, 35.4689297 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1133, "felt:has_geometry": true, "felt:h3_index": 644745480130186162, "STATEFP": 6.0, "PLACEFP": 47206.0, "PLACENS": 2804404.0, "GEOID": 647206.0, "NAME": "Meyers", "NAMELSAD": "Meyers CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6473356.0, "AWATER": 36532.0, "INTPTLAT": 38.8347873, "INTPTLON": -120.0185604 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0185604, 38.8347873 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1134, "felt:has_geometry": true, "felt:h3_index": 644721979138365161, "STATEFP": 6.0, "PLACEFP": 47332.0, "PLACENS": 2408828.0, "GEOID": 647332.0, "NAME": "Middletown", "NAMELSAD": "Middletown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4776232.0, "AWATER": 0.0, "INTPTLAT": 38.7518774, "INTPTLON": -122.6221035 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6221035, 38.7518774 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1135, "felt:has_geometry": true, "felt:h3_index": 644747788719416102, "STATEFP": 6.0, "PLACEFP": 47374.0, "PLACENS": 2583080.0, "GEOID": 647374.0, "NAME": "Midpines", "NAMELSAD": "Midpines CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11289069.0, "AWATER": 8983.0, "INTPTLAT": 37.5534113, "INTPTLON": -119.928791 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.928791, 37.5534113 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1136, "felt:has_geometry": true, "felt:h3_index": 644747070527848747, "STATEFP": 6.0, "PLACEFP": 47430.0, "PLACENS": 2583081.0, "GEOID": 647430.0, "NAME": "Midway City", "NAMELSAD": "Midway City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1578550.0, "AWATER": 0.0, "INTPTLAT": 33.7451187, "INTPTLON": -117.984843 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.984843, 33.7451187 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1137, "felt:has_geometry": true, "felt:h3_index": 644719828371281477, "STATEFP": 6.0, "PLACEFP": 47472.0, "PLACENS": 2628757.0, "GEOID": 647472.0, "NAME": "Milford", "NAMELSAD": "Milford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13705685.0, "AWATER": 14513.0, "INTPTLAT": 40.1494665, "INTPTLON": -120.3701964 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3701964, 40.1494665 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1138, "felt:has_geometry": true, "felt:h3_index": 644747814384034897, "STATEFP": 6.0, "PLACEFP": 47592.0, "PLACENS": 2805244.0, "GEOID": 647592.0, "NAME": "Millerton", "NAMELSAD": "Millerton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5077394.0, "AWATER": 0.0, "INTPTLAT": 36.9769263, "INTPTLON": -119.6657745 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6657745, 36.9769263 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1139, "felt:has_geometry": true, "felt:h3_index": 644719907922167830, "STATEFP": 6.0, "PLACEFP": 47724.0, "PLACENS": 2408834.0, "GEOID": 647724.0, "NAME": "Millville", "NAMELSAD": "Millville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20839153.0, "AWATER": 433331.0, "INTPTLAT": 40.5595689, "INTPTLON": -122.1755686 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1755686, 40.5595689 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1140, "felt:has_geometry": true, "felt:h3_index": 644719901233689386, "STATEFP": 6.0, "PLACEFP": 47794.0, "PLACENS": 2408836.0, "GEOID": 647794.0, "NAME": "Mineral", "NAMELSAD": "Mineral CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 114744267.0, "AWATER": 286834.0, "INTPTLAT": 40.4027126, "INTPTLON": -121.5508439 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5508439, 40.4027126 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1141, "felt:has_geometry": true, "felt:h3_index": 644747600480617499, "STATEFP": 6.0, "PLACEFP": 47822.0, "PLACENS": 2583082.0, "GEOID": 647822.0, "NAME": "Minkler", "NAMELSAD": "Minkler CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15166528.0, "AWATER": 0.0, "INTPTLAT": 36.7276241, "INTPTLON": -119.4588496 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4588496, 36.7276241 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1142, "felt:has_geometry": true, "felt:h3_index": 644737291701506966, "STATEFP": 6.0, "PLACEFP": 48046.0, "PLACENS": 2408839.0, "GEOID": 648046.0, "NAME": "Mira Monte", "NAMELSAD": "Mira Monte CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12470598.0, "AWATER": 44675.0, "INTPTLAT": 34.4311191, "INTPTLON": -119.2872006 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2872006, 34.4311191 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1143, "felt:has_geometry": true, "felt:h3_index": 644718610944688716, "STATEFP": 6.0, "PLACEFP": 48060.0, "PLACENS": 2611441.0, "GEOID": 648060.0, "NAME": "Miranda", "NAMELSAD": "Miranda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3868285.0, "AWATER": 20675.0, "INTPTLAT": 40.2286868, "INTPTLON": -123.8175844 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.8175844, 40.2286868 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1144, "felt:has_geometry": true, "felt:h3_index": 644747885118043265, "STATEFP": 6.0, "PLACEFP": 48147.0, "PLACENS": 2408843.0, "GEOID": 648147.0, "NAME": "Mission Canyon", "NAMELSAD": "Mission Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4662212.0, "AWATER": 77753.0, "INTPTLAT": 34.4562519, "INTPTLON": -119.7169892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7169892, 34.4562519 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1145, "felt:has_geometry": true, "felt:h3_index": 644737365030130845, "STATEFP": 6.0, "PLACEFP": 48186.0, "PLACENS": 2408845.0, "GEOID": 648186.0, "NAME": "Mission Hills", "NAMELSAD": "Mission Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3130522.0, "AWATER": 20596.0, "INTPTLAT": 34.6887795, "INTPTLON": -120.4397498 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4397498, 34.6887795 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1146, "felt:has_geometry": true, "felt:h3_index": 644745751446258854, "STATEFP": 6.0, "PLACEFP": 48298.0, "PLACENS": 2408846.0, "GEOID": 648298.0, "NAME": "Mi-Wuk Village", "NAMELSAD": "Mi-Wuk Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7343670.0, "AWATER": 16842.0, "INTPTLAT": 38.0577353, "INTPTLON": -120.176698 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.176698, 38.0577353 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1147, "felt:has_geometry": true, "felt:h3_index": 644747057083490932, "STATEFP": 6.0, "PLACEFP": 48410.0, "PLACENS": 2805246.0, "GEOID": 648410.0, "NAME": "Modjeska", "NAMELSAD": "Modjeska CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5189981.0, "AWATER": 0.0, "INTPTLAT": 33.7091329, "INTPTLON": -117.6297041 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6297041, 33.7091329 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1148, "felt:has_geometry": true, "felt:h3_index": 644719863613423620, "STATEFP": 6.0, "PLACEFP": 48448.0, "PLACENS": 2408852.0, "GEOID": 648448.0, "NAME": "Mohawk Vista", "NAMELSAD": "Mohawk Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30997962.0, "AWATER": 0.0, "INTPTLAT": 39.8048221, "INTPTLON": -120.5883119 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5883119, 39.8048221 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1149, "felt:has_geometry": true, "felt:h3_index": 644747118822955717, "STATEFP": 6.0, "PLACEFP": 48452.0, "PLACENS": 2408853.0, "GEOID": 648452.0, "NAME": "Mojave", "NAMELSAD": "Mojave CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 151185016.0, "AWATER": 207337.0, "INTPTLAT": 35.0149951, "INTPTLON": -118.1902086 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.1902086, 35.0149951 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1150, "felt:has_geometry": true, "felt:h3_index": 644722174314327139, "STATEFP": 6.0, "PLACEFP": 48480.0, "PLACENS": 2408855.0, "GEOID": 648480.0, "NAME": "Mokelumne Hill", "NAMELSAD": "Mokelumne Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7974096.0, "AWATER": 6904.0, "INTPTLAT": 38.3084841, "INTPTLON": -120.7056169 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7056169, 38.3084841 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1151, "felt:has_geometry": true, "felt:h3_index": 644747598616454195, "STATEFP": 6.0, "PLACEFP": 48592.0, "PLACENS": 2628758.0, "GEOID": 648592.0, "NAME": "Monmouth", "NAMELSAD": "Monmouth CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 797858.0, "AWATER": 0.0, "INTPTLAT": 36.5656206, "INTPTLON": -119.7404754 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7404754, 36.5656206 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1152, "felt:has_geometry": true, "felt:h3_index": 644745774095242096, "STATEFP": 6.0, "PLACEFP": 48602.0, "PLACENS": 2583083.0, "GEOID": 648602.0, "NAME": "Mono City", "NAMELSAD": "Mono City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20298298.0, "AWATER": 0.0, "INTPTLAT": 38.0321233, "INTPTLON": -119.1473993 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1473993, 38.0321233 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1153, "felt:has_geometry": true, "felt:h3_index": 644745763682833304, "STATEFP": 6.0, "PLACEFP": 48641.0, "PLACENS": 2408856.0, "GEOID": 648641.0, "NAME": "Mono Vista", "NAMELSAD": "Mono Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7319287.0, "AWATER": 7275.0, "INTPTLAT": 38.0134318, "INTPTLON": -120.2700482 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2700482, 38.0134318 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1154, "felt:has_geometry": true, "felt:h3_index": 644747603462808452, "STATEFP": 6.0, "PLACEFP": 48676.0, "PLACENS": 2585434.0, "GEOID": 648676.0, "NAME": "Monson", "NAMELSAD": "Monson CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 523997.0, "AWATER": 0.0, "INTPTLAT": 36.4924201, "INTPTLON": -119.3361205 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3361205, 36.4924201 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1155, "felt:has_geometry": true, "felt:h3_index": 644721770687252804, "STATEFP": 6.0, "PLACEFP": 48718.0, "PLACENS": 2583085.0, "GEOID": 648718.0, "NAME": "Montalvin Manor", "NAMELSAD": "Montalvin Manor CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 832519.0, "AWATER": 0.0, "INTPTLAT": 37.9975826, "INTPTLON": -122.3300925 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3300925, 37.9975826 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1156, "felt:has_geometry": true, "felt:h3_index": 644722019384691861, "STATEFP": 6.0, "PLACEFP": 48760.0, "PLACENS": 2408858.0, "GEOID": 648760.0, "NAME": "Montara", "NAMELSAD": "Montara CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10040503.0, "AWATER": 0.0, "INTPTLAT": 37.5482633, "INTPTLON": -122.4923623 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4923623, 37.5482633 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1157, "felt:has_geometry": true, "felt:h3_index": 644737290623475730, "STATEFP": 6.0, "PLACEFP": 48844.0, "PLACENS": 2408861.0, "GEOID": 648844.0, "NAME": "Montecito", "NAMELSAD": "Montecito CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23768259.0, "AWATER": 20675380.0, "INTPTLAT": 34.4186422, "INTPTLON": -119.6331167 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6331167, 34.4186422 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1158, "felt:has_geometry": true, "felt:h3_index": 644722149867435827, "STATEFP": 6.0, "PLACEFP": 48916.0, "PLACENS": 2628759.0, "GEOID": 648916.0, "NAME": "Monterey Park Tract", "NAMELSAD": "Monterey Park Tract CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 122388.0, "AWATER": 0.0, "INTPTLAT": 37.5268136, "INTPTLON": -121.0114871 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0114871, 37.5268136 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1159, "felt:has_geometry": true, "felt:h3_index": 644721856976331166, "STATEFP": 6.0, "PLACEFP": 48928.0, "PLACENS": 2408860.0, "GEOID": 648928.0, "NAME": "Monte Rio", "NAMELSAD": "Monte Rio CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4934760.0, "AWATER": 208218.0, "INTPTLAT": 38.4736108, "INTPTLON": -123.0261783 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0261783, 38.4736108 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1160, "felt:has_geometry": true, "felt:h3_index": 644719905524223196, "STATEFP": 6.0, "PLACEFP": 48998.0, "PLACENS": 2408863.0, "GEOID": 648998.0, "NAME": "Montgomery Creek", "NAMELSAD": "Montgomery Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8536890.0, "AWATER": 11338.0, "INTPTLAT": 40.8428384, "INTPTLON": -121.9206607 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9206607, 40.8428384 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1161, "felt:has_geometry": true, "felt:h3_index": 644721760675158164, "STATEFP": 6.0, "PLACEFP": 49045.0, "PLACENS": 2583086.0, "GEOID": 649045.0, "NAME": "Monument Hills", "NAMELSAD": "Monument Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10328922.0, "AWATER": 0.0, "INTPTLAT": 38.6641053, "INTPTLON": -121.8753893 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8753893, 38.6641053 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1162, "felt:has_geometry": true, "felt:h3_index": 644722153866871020, "STATEFP": 6.0, "PLACEFP": 49180.0, "PLACENS": 2408866.0, "GEOID": 649180.0, "NAME": "Morada", "NAMELSAD": "Morada CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7721138.0, "AWATER": 18742.0, "INTPTLAT": 38.0386262, "INTPTLON": -121.2458916 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2458916, 38.0386262 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1163, "felt:has_geometry": true, "felt:h3_index": 644747041432004253, "STATEFP": 6.0, "PLACEFP": 49348.0, "PLACENS": 2408870.0, "GEOID": 649348.0, "NAME": "Morongo Valley", "NAMELSAD": "Morongo Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 65317007.0, "AWATER": 0.0, "INTPTLAT": 34.0723774, "INTPTLON": -116.5627267 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.5627267, 34.0723774 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1164, "felt:has_geometry": true, "felt:h3_index": 644721764727083330, "STATEFP": 6.0, "PLACEFP": 49432.0, "PLACENS": 2583087.0, "GEOID": 649432.0, "NAME": "Moskowite Corner", "NAMELSAD": "Moskowite Corner CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7338786.0, "AWATER": 11878.0, "INTPTLAT": 38.4438743, "INTPTLON": -122.1919904 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1919904, 38.4438743 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1165, "felt:has_geometry": true, "felt:h3_index": 644722019460746531, "STATEFP": 6.0, "PLACEFP": 49446.0, "PLACENS": 2408873.0, "GEOID": 649446.0, "NAME": "Moss Beach", "NAMELSAD": "Moss Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5794556.0, "AWATER": 6259.0, "INTPTLAT": 37.5133303, "INTPTLON": -122.4983889 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4983889, 37.5133303 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1166, "felt:has_geometry": true, "felt:h3_index": 644722059118655296, "STATEFP": 6.0, "PLACEFP": 49488.0, "PLACENS": 2408874.0, "GEOID": 649488.0, "NAME": "Moss Landing", "NAMELSAD": "Moss Landing CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1016538.0, "AWATER": 544792.0, "INTPTLAT": 36.8053889, "INTPTLON": -121.786577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.786577, 36.8053889 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1167, "felt:has_geometry": true, "felt:h3_index": 644747075217654699, "STATEFP": 6.0, "PLACEFP": 49544.0, "PLACENS": 2629133.0, "GEOID": 649544.0, "NAME": "Mountain Center", "NAMELSAD": "Mountain Center CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4880669.0, "AWATER": 4439.0, "INTPTLAT": 33.7107493, "INTPTLON": -116.7233115 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.7233115, 33.7107493 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1168, "felt:has_geometry": true, "felt:h3_index": 644719908809770788, "STATEFP": 6.0, "PLACEFP": 49558.0, "PLACENS": 2628760.0, "GEOID": 649558.0, "NAME": "Mountain Gate", "NAMELSAD": "Mountain Gate CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5115620.0, "AWATER": 0.0, "INTPTLAT": 40.7184558, "INTPTLON": -122.3262249 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3262249, 40.7184558 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1169, "felt:has_geometry": true, "felt:h3_index": 644722191894960664, "STATEFP": 6.0, "PLACEFP": 49582.0, "PLACENS": 2628761.0, "GEOID": 649582.0, "NAME": "Mountain House", "NAMELSAD": "Mountain House CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11804529.0, "AWATER": 0.0, "INTPTLAT": 37.7673008, "INTPTLON": -121.5449342 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5449342, 37.7673008 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1170, "felt:has_geometry": true, "felt:h3_index": 644748025229612966, "STATEFP": 6.0, "PLACEFP": 49592.0, "PLACENS": 2804422.0, "GEOID": 649592.0, "NAME": "Mountain Meadows", "NAMELSAD": "Mountain Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10651128.0, "AWATER": 19545.0, "INTPTLAT": 35.0935654, "INTPTLON": -118.4326871 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4326871, 35.0935654 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1171, "felt:has_geometry": true, "felt:h3_index": 644747983810348164, "STATEFP": 6.0, "PLACEFP": 49600.0, "PLACENS": 2408881.0, "GEOID": 649600.0, "NAME": "Mountain Mesa", "NAMELSAD": "Mountain Mesa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2246361.0, "AWATER": 0.0, "INTPTLAT": 35.6411374, "INTPTLON": -118.4046454 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4046454, 35.6411374 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1172, "felt:has_geometry": true, "felt:h3_index": 644745764264776198, "STATEFP": 6.0, "PLACEFP": 49628.0, "PLACENS": 2408882.0, "GEOID": 649628.0, "NAME": "Mountain Ranch", "NAMELSAD": "Mountain Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10127780.0, "AWATER": 0.0, "INTPTLAT": 38.2117212, "INTPTLON": -120.5311151 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5311151, 38.2117212 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1173, "felt:has_geometry": true, "felt:h3_index": 644721737835569754, "STATEFP": 6.0, "PLACEFP": 49651.0, "PLACENS": 2408884.0, "GEOID": 649651.0, "NAME": "Mountain View", "NAMELSAD": "Mountain View CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 743924.0, "AWATER": 0.0, "INTPTLAT": 38.0092049, "INTPTLON": -122.1168495 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1168495, 38.0092049 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1174, "felt:has_geometry": true, "felt:h3_index": 644747267111201923, "STATEFP": 6.0, "PLACEFP": 49684.0, "PLACENS": 2408883.0, "GEOID": 649684.0, "NAME": "Mountain View Acres", "NAMELSAD": "Mountain View Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4114534.0, "AWATER": 0.0, "INTPTLAT": 34.4975579, "INTPTLON": -117.3471727 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3471727, 34.4975579 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1175, "felt:has_geometry": true, "felt:h3_index": 644747786771082475, "STATEFP": 6.0, "PLACEFP": 49726.0, "PLACENS": 2812657.0, "GEOID": 649726.0, "NAME": "Mt. Bullion", "NAMELSAD": "Mt. Bullion CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1580000.0, "AWATER": 1730.0, "INTPTLAT": 37.5086185, "INTPTLON": -120.0420805 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0420805, 37.5086185 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1176, "felt:has_geometry": true, "felt:h3_index": 644719635111010990, "STATEFP": 6.0, "PLACEFP": 49768.0, "PLACENS": 2408876.0, "GEOID": 649768.0, "NAME": "Mount Hebron", "NAMELSAD": "Mount Hebron CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1922181.0, "AWATER": 0.0, "INTPTLAT": 41.785628, "INTPTLON": -122.0079795 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0079795, 41.785628 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1177, "felt:has_geometry": true, "felt:h3_index": 644722008482078818, "STATEFP": 6.0, "PLACEFP": 49796.0, "PLACENS": 2583088.0, "GEOID": 649796.0, "NAME": "Mount Hermon", "NAMELSAD": "Mount Hermon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682849.0, "AWATER": 0.0, "INTPTLAT": 37.0510322, "INTPTLON": -122.0533485 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0533485, 37.0510322 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1178, "felt:has_geometry": true, "felt:h3_index": 644747474043667859, "STATEFP": 6.0, "PLACEFP": 49810.0, "PLACENS": 2628763.0, "GEOID": 649810.0, "NAME": "Mount Laguna", "NAMELSAD": "Mount Laguna CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4395332.0, "AWATER": 0.0, "INTPTLAT": 32.871105, "INTPTLON": -116.4246869 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.4246869, 32.871105 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1179, "felt:has_geometry": true, "felt:h3_index": 644721768851393033, "STATEFP": 6.0, "PLACEFP": 49950.0, "PLACENS": 2408888.0, "GEOID": 649950.0, "NAME": "Muir Beach", "NAMELSAD": "Muir Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1276408.0, "AWATER": 0.0, "INTPTLAT": 37.8615645, "INTPTLON": -122.5803215 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5803215, 37.8615645 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1180, "felt:has_geometry": true, "felt:h3_index": 644745764178711459, "STATEFP": 6.0, "PLACEFP": 50034.0, "PLACENS": 2408892.0, "GEOID": 650034.0, "NAME": "Murphys", "NAMELSAD": "Murphys CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10955540.0, "AWATER": 6287.0, "INTPTLAT": 38.1360927, "INTPTLON": -120.4439416 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4439416, 38.1360927 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1181, "felt:has_geometry": true, "felt:h3_index": 644747037397406114, "STATEFP": 6.0, "PLACEFP": 50132.0, "PLACENS": 2408894.0, "GEOID": 650132.0, "NAME": "Muscoy", "NAMELSAD": "Muscoy CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7876493.0, "AWATER": 0.0, "INTPTLAT": 34.1551759, "INTPTLON": -117.3477205 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3477205, 34.1551759 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1182, "felt:has_geometry": true, "felt:h3_index": 644718612146034330, "STATEFP": 6.0, "PLACEFP": 50146.0, "PLACENS": 2611442.0, "GEOID": 650146.0, "NAME": "Myers Flat", "NAMELSAD": "Myers Flat CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1119279.0, "AWATER": 141837.0, "INTPTLAT": 40.2654783, "INTPTLON": -123.875548 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.875548, 40.2654783 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1183, "felt:has_geometry": true, "felt:h3_index": 644718617862603099, "STATEFP": 6.0, "PLACEFP": 50188.0, "PLACENS": 2408896.0, "GEOID": 650188.0, "NAME": "Myrtletown", "NAMELSAD": "Myrtletown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5432288.0, "AWATER": 192918.0, "INTPTLAT": 40.7887307, "INTPTLON": -124.1306576 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1306576, 40.7887307 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1184, "felt:has_geometry": true, "felt:h3_index": 644721872071887248, "STATEFP": 6.0, "PLACEFP": 51000.0, "PLACENS": 2583089.0, "GEOID": 651000.0, "NAME": "Newcastle", "NAMELSAD": "Newcastle CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6194986.0, "AWATER": 11387.0, "INTPTLAT": 38.8667313, "INTPTLON": -121.1319837 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1319837, 38.8667313 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1185, "felt:has_geometry": true, "felt:h3_index": 644747846698677542, "STATEFP": 6.0, "PLACEFP": 51028.0, "PLACENS": 2583090.0, "GEOID": 651028.0, "NAME": "New Cuyama", "NAMELSAD": "New Cuyama CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1637550.0, "AWATER": 0.0, "INTPTLAT": 34.9430572, "INTPTLON": -119.6820182 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6820182, 34.9430572 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1186, "felt:has_geometry": true, "felt:h3_index": 644719745745081189, "STATEFP": 6.0, "PLACEFP": 51042.0, "PLACENS": 2583091.0, "GEOID": 651042.0, "NAME": "Newell", "NAMELSAD": "Newell CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6233913.0, "AWATER": 14912.0, "INTPTLAT": 41.8887312, "INTPTLON": -121.3602488 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3602488, 41.8887312 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1187, "felt:has_geometry": true, "felt:h3_index": 644719683479093780, "STATEFP": 6.0, "PLACEFP": 51168.0, "PLACENS": 2583092.0, "GEOID": 651168.0, "NAME": "New Pine Creek", "NAMELSAD": "New Pine Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5870148.0, "AWATER": 0.0, "INTPTLAT": 41.9872704, "INTPTLON": -120.3009638 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3009638, 41.9872704 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1188, "felt:has_geometry": true, "felt:h3_index": 644721775715343254, "STATEFP": 6.0, "PLACEFP": 51280.0, "PLACENS": 2628764.0, "GEOID": 651280.0, "NAME": "Nicasio", "NAMELSAD": "Nicasio CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3379839.0, "AWATER": 0.0, "INTPTLAT": 38.0606215, "INTPTLON": -122.7008217 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7008217, 38.0606215 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1189, "felt:has_geometry": true, "felt:h3_index": 644721982539041578, "STATEFP": 6.0, "PLACEFP": 51294.0, "PLACENS": 2408925.0, "GEOID": 651294.0, "NAME": "Nice", "NAMELSAD": "Nice CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4472124.0, "AWATER": 12228.0, "INTPTLAT": 39.1261812, "INTPTLON": -122.8553295 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8553295, 39.1261812 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1190, "felt:has_geometry": true, "felt:h3_index": 644721916546729873, "STATEFP": 6.0, "PLACEFP": 51336.0, "PLACENS": 2583093.0, "GEOID": 651336.0, "NAME": "Nicolaus", "NAMELSAD": "Nicolaus CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8074147.0, "AWATER": 0.0, "INTPTLAT": 38.8981899, "INTPTLON": -121.5728371 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5728371, 38.8981899 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1191, "felt:has_geometry": true, "felt:h3_index": 644747487865806163, "STATEFP": 6.0, "PLACEFP": 51392.0, "PLACENS": 2408926.0, "GEOID": 651392.0, "NAME": "Niland", "NAMELSAD": "Niland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1040220.0, "AWATER": 0.0, "INTPTLAT": 33.2387079, "INTPTLON": -115.5144396 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.5144396, 33.2387079 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1192, "felt:has_geometry": true, "felt:h3_index": 644747780594680515, "STATEFP": 6.0, "PLACEFP": 51470.0, "PLACENS": 2628765.0, "GEOID": 651470.0, "NAME": "Nipinnawasee", "NAMELSAD": "Nipinnawasee CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7990118.0, "AWATER": 0.0, "INTPTLAT": 37.4030526, "INTPTLON": -119.729269 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.729269, 37.4030526 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1193, "felt:has_geometry": true, "felt:h3_index": 644747970713575779, "STATEFP": 6.0, "PLACEFP": 51476.0, "PLACENS": 2408927.0, "GEOID": 651476.0, "NAME": "Nipomo", "NAMELSAD": "Nipomo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39044101.0, "AWATER": 985.0, "INTPTLAT": 35.0306599, "INTPTLON": -120.4977565 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4977565, 35.0306599 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1194, "felt:has_geometry": true, "felt:h3_index": 644721966796508306, "STATEFP": 6.0, "PLACEFP": 51574.0, "PLACENS": 2612484.0, "GEOID": 651574.0, "NAME": "Nord", "NAMELSAD": "Nord CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5452534.0, "AWATER": 0.0, "INTPTLAT": 39.7737878, "INTPTLON": -121.9549057 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9549057, 39.7737878 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1195, "felt:has_geometry": true, "felt:h3_index": 644721790249643235, "STATEFP": 6.0, "PLACEFP": 51622.0, "PLACENS": 2583094.0, "GEOID": 651622.0, "NAME": "Norris Canyon", "NAMELSAD": "Norris Canyon CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9350215.0, "AWATER": 0.0, "INTPTLAT": 37.7457574, "INTPTLON": -121.9880908 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9880908, 37.7457574 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1196, "felt:has_geometry": true, "felt:h3_index": 644721873915394837, "STATEFP": 6.0, "PLACEFP": 51637.0, "PLACENS": 2408934.0, "GEOID": 651637.0, "NAME": "North Auburn", "NAMELSAD": "North Auburn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20171681.0, "AWATER": 7171.0, "INTPTLAT": 38.930693, "INTPTLON": -121.0810812 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0810812, 38.930693 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1197, "felt:has_geometry": true, "felt:h3_index": 644747270804527410, "STATEFP": 6.0, "PLACEFP": 51812.0, "PLACENS": 2408937.0, "GEOID": 651812.0, "NAME": "North Edwards", "NAMELSAD": "North Edwards CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33012003.0, "AWATER": 0.0, "INTPTLAT": 35.0473324, "INTPTLON": -117.8093616 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8093616, 35.0473324 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1198, "felt:has_geometry": true, "felt:h3_index": 644747148860459248, "STATEFP": 6.0, "PLACEFP": 51820.0, "PLACENS": 2408938.0, "GEOID": 651820.0, "NAME": "North El Monte", "NAMELSAD": "North El Monte CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1101654.0, "AWATER": 0.0, "INTPTLAT": 34.1029266, "INTPTLON": -118.0238624 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0238624, 34.1029266 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1199, "felt:has_geometry": true, "felt:h3_index": 644722038891696553, "STATEFP": 6.0, "PLACEFP": 51840.0, "PLACENS": 2408940.0, "GEOID": 651840.0, "NAME": "North Fair Oaks", "NAMELSAD": "North Fair Oaks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3097640.0, "AWATER": 0.0, "INTPTLAT": 37.475426, "INTPTLON": -122.2034589 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2034589, 37.475426 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1200, "felt:has_geometry": true, "felt:h3_index": 644747784219067529, "STATEFP": 6.0, "PLACEFP": 51868.0, "PLACENS": 2804436.0, "GEOID": 651868.0, "NAME": "North Fork", "NAMELSAD": "North Fork CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83490248.0, "AWATER": 112922.0, "INTPTLAT": 37.2346317, "INTPTLON": -119.5210379 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5210379, 37.2346317 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1201, "felt:has_geometry": true, "felt:h3_index": 644721785946805890, "STATEFP": 6.0, "PLACEFP": 51890.0, "PLACENS": 2583095.0, "GEOID": 651890.0, "NAME": "North Gate", "NAMELSAD": "North Gate CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1904534.0, "AWATER": 0.0, "INTPTLAT": 37.9055129, "INTPTLON": -121.9978789 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9978789, 37.9055129 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1202, "felt:has_geometry": true, "felt:h3_index": 644721919769650451, "STATEFP": 6.0, "PLACEFP": 51924.0, "PLACENS": 2408941.0, "GEOID": 651924.0, "NAME": "North Highlands", "NAMELSAD": "North Highlands CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22812286.0, "AWATER": 0.0, "INTPTLAT": 38.6713309, "INTPTLON": -121.3721344 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3721344, 38.6713309 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1203, "felt:has_geometry": true, "felt:h3_index": 644721987206005528, "STATEFP": 6.0, "PLACEFP": 51990.0, "PLACENS": 2408942.0, "GEOID": 651990.0, "NAME": "North Lakeport", "NAMELSAD": "North Lakeport CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832064.0, "AWATER": 6993183.0, "INTPTLAT": 39.0866322, "INTPTLON": -122.9094423 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9094423, 39.0866322 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1204, "felt:has_geometry": true, "felt:h3_index": 644721770333767003, "STATEFP": 6.0, "PLACEFP": 52162.0, "PLACENS": 2583096.0, "GEOID": 652162.0, "NAME": "North Richmond", "NAMELSAD": "North Richmond CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3598945.0, "AWATER": 412907.0, "INTPTLAT": 37.965269, "INTPTLON": -122.3706492 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3706492, 37.965269 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1205, "felt:has_geometry": true, "felt:h3_index": 644719847576080734, "STATEFP": 6.0, "PLACEFP": 52246.0, "PLACENS": 2628766.0, "GEOID": 652246.0, "NAME": "North San Juan", "NAMELSAD": "North San Juan CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6275144.0, "AWATER": 0.0, "INTPTLAT": 39.37181, "INTPTLON": -121.1060793 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1060793, 39.37181 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1206, "felt:has_geometry": true, "felt:h3_index": 644747435951268661, "STATEFP": 6.0, "PLACEFP": 52302.0, "PLACENS": 2583097.0, "GEOID": 652302.0, "NAME": "North Shore", "NAMELSAD": "North Shore CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28952350.0, "AWATER": 13989.0, "INTPTLAT": 33.5145756, "INTPTLON": -115.9109591 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.9109591, 33.5145756 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1207, "felt:has_geometry": true, "felt:h3_index": 644747068844882610, "STATEFP": 6.0, "PLACEFP": 52379.0, "PLACENS": 2408951.0, "GEOID": 652379.0, "NAME": "North Tustin", "NAMELSAD": "North Tustin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17044859.0, "AWATER": 0.0, "INTPTLAT": 33.7635438, "INTPTLON": -117.7947169 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7947169, 33.7635438 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1208, "felt:has_geometry": true, "felt:h3_index": 644719537632617362, "STATEFP": 6.0, "PLACEFP": 52610.0, "PLACENS": 2628767.0, "GEOID": 652610.0, "NAME": "Nubieber", "NAMELSAD": "Nubieber CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1939993.0, "AWATER": 20921.0, "INTPTLAT": 41.0966269, "INTPTLON": -121.1821632 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1821632, 41.0966269 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1209, "felt:has_geometry": true, "felt:h3_index": 644747044203420866, "STATEFP": 6.0, "PLACEFP": 52715.0, "PLACENS": 2583099.0, "GEOID": 652715.0, "NAME": "Oak Glen", "NAMELSAD": "Oak Glen CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 38839776.0, "AWATER": 11185.0, "INTPTLAT": 34.0410432, "INTPTLON": -116.9623071 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9623071, 34.0410432 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1210, "felt:has_geometry": true, "felt:h3_index": 644747032231221429, "STATEFP": 6.0, "PLACEFP": 52760.0, "PLACENS": 2583100.0, "GEOID": 652760.0, "NAME": "Oak Hills", "NAMELSAD": "Oak Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63496967.0, "AWATER": 0.0, "INTPTLAT": 34.3899435, "INTPTLON": -117.403094 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.403094, 34.3899435 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1211, "felt:has_geometry": true, "felt:h3_index": 644747780242946254, "STATEFP": 6.0, "PLACEFP": 52764.0, "PLACENS": 2408967.0, "GEOID": 652764.0, "NAME": "Oakhurst", "NAMELSAD": "Oakhurst CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 86634988.0, "AWATER": 19415.0, "INTPTLAT": 37.3413962, "INTPTLON": -119.6262147 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6262147, 37.3413962 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1212, "felt:has_geometry": true, "felt:h3_index": 644747125647071019, "STATEFP": 6.0, "PLACEFP": 53116.0, "PLACENS": 2408964.0, "GEOID": 653116.0, "NAME": "Oak Park", "NAMELSAD": "Oak Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713403.0, "AWATER": 0.0, "INTPTLAT": 34.1849839, "INTPTLON": -118.7669403 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.7669403, 34.1849839 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1213, "felt:has_geometry": true, "felt:h3_index": 644719909505289381, "STATEFP": 6.0, "PLACEFP": 53140.0, "PLACENS": 2813353.0, "GEOID": 653140.0, "NAME": "Oak Run", "NAMELSAD": "Oak Run CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7803833.0, "AWATER": 12670.0, "INTPTLAT": 40.6941964, "INTPTLON": -122.0250083 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0250083, 40.6941964 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1214, "felt:has_geometry": true, "felt:h3_index": 644747930143155597, "STATEFP": 6.0, "PLACEFP": 53160.0, "PLACENS": 2583101.0, "GEOID": 653160.0, "NAME": "Oak Shores", "NAMELSAD": "Oak Shores CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13178331.0, "AWATER": 2012447.0, "INTPTLAT": 35.7607589, "INTPTLON": -120.9828249 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9828249, 35.7607589 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1215, "felt:has_geometry": true, "felt:h3_index": 644737291269194562, "STATEFP": 6.0, "PLACEFP": 53182.0, "PLACENS": 2408966.0, "GEOID": 653182.0, "NAME": "Oak View", "NAMELSAD": "Oak View CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8822791.0, "AWATER": 0.0, "INTPTLAT": 34.4030366, "INTPTLON": -119.2989497 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2989497, 34.4030366 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1216, "felt:has_geometry": true, "felt:h3_index": 644721747966903658, "STATEFP": 6.0, "PLACEFP": 53196.0, "PLACENS": 2583102.0, "GEOID": 653196.0, "NAME": "Oakville", "NAMELSAD": "Oakville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3522356.0, "AWATER": 0.0, "INTPTLAT": 38.4383727, "INTPTLON": -122.4067728 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4067728, 38.4383727 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1217, "felt:has_geometry": true, "felt:h3_index": 644747435151144662, "STATEFP": 6.0, "PLACEFP": 53224.0, "PLACENS": 2630708.0, "GEOID": 653224.0, "NAME": "Oasis", "NAMELSAD": "Oasis CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50832299.0, "AWATER": 0.0, "INTPTLAT": 33.5275314, "INTPTLON": -116.1261139 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.1261139, 33.5275314 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1218, "felt:has_geometry": true, "felt:h3_index": 644721855636553932, "STATEFP": 6.0, "PLACEFP": 53266.0, "PLACENS": 2408971.0, "GEOID": 653266.0, "NAME": "Occidental", "NAMELSAD": "Occidental CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12864926.0, "AWATER": 0.0, "INTPTLAT": 38.4003723, "INTPTLON": -122.9349457 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9349457, 38.4003723 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1219, "felt:has_geometry": true, "felt:h3_index": 644747972561421937, "STATEFP": 6.0, "PLACEFP": 53294.0, "PLACENS": 2408974.0, "GEOID": 653294.0, "NAME": "Oceano", "NAMELSAD": "Oceano CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3979427.0, "AWATER": 39216.0, "INTPTLAT": 35.1016077, "INTPTLON": -120.608217 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.608217, 35.1016077 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1220, "felt:has_geometry": true, "felt:h3_index": 645287527842001954, "STATEFP": 6.0, "PLACEFP": 53378.0, "PLACENS": 2408976.0, "GEOID": 653378.0, "NAME": "Ocotillo", "NAMELSAD": "Ocotillo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22959357.0, "AWATER": 0.0, "INTPTLAT": 32.7431265, "INTPTLON": -116.0018794 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.0018794, 32.7431265 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1221, "felt:has_geometry": true, "felt:h3_index": 644748030961134821, "STATEFP": 6.0, "PLACEFP": 53448.0, "PLACENS": 2408979.0, "GEOID": 653448.0, "NAME": "Oildale", "NAMELSAD": "Oildale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20484539.0, "AWATER": 0.0, "INTPTLAT": 35.4292605, "INTPTLON": -119.0305761 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0305761, 35.4292605 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1222, "felt:has_geometry": true, "felt:h3_index": 644745210226968732, "STATEFP": 6.0, "PLACEFP": 53490.0, "PLACENS": 2408982.0, "GEOID": 653490.0, "NAME": "Olancha", "NAMELSAD": "Olancha CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20311991.0, "AWATER": 79710.0, "INTPTLAT": 36.2697874, "INTPTLON": -118.0012577 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0012577, 36.2697874 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1223, "felt:has_geometry": true, "felt:h3_index": 644748031533073477, "STATEFP": 6.0, "PLACEFP": 53503.0, "PLACENS": 2804423.0, "GEOID": 653503.0, "NAME": "Olde Stockdale", "NAMELSAD": "Olde Stockdale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1054819.0, "AWATER": 0.0, "INTPTLAT": 35.3475989, "INTPTLON": -119.0793718 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0793718, 35.3475989 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1224, "felt:has_geometry": true, "felt:h3_index": 644747812644395803, "STATEFP": 6.0, "PLACEFP": 53505.0, "PLACENS": 2583103.0, "GEOID": 653505.0, "NAME": "Old Fig Garden", "NAMELSAD": "Old Fig Garden CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4317800.0, "AWATER": 0.0, "INTPTLAT": 36.7988446, "INTPTLON": -119.8051281 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8051281, 36.7988446 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1225, "felt:has_geometry": true, "felt:h3_index": 644747867351624216, "STATEFP": 6.0, "PLACEFP": 53574.0, "PLACENS": 2804424.0, "GEOID": 653574.0, "NAME": "Old River", "NAMELSAD": "Old River CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2550660.0, "AWATER": 0.0, "INTPTLAT": 35.2671232, "INTPTLON": -119.1055226 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1055226, 35.2671232 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6.0, "PLACEFP": 53602.0, "PLACENS": 2628770.0, "GEOID": 653602.0, "NAME": "Old Station", "NAMELSAD": "Old Station CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143.0, "AWATER": 3443.0, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4133483, 40.6732039 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1227, "felt:has_geometry": true, "felt:h3_index": 644748031460005219, "STATEFP": 6.0, "PLACEFP": 53603.0, "PLACENS": 2804425.0, "GEOID": 653603.0, "NAME": "Old Stine", "NAMELSAD": "Old Stine CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1597542.0, "AWATER": 0.0, "INTPTLAT": 35.347751, "INTPTLON": -119.0469227 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0469227, 35.347751 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1228, "felt:has_geometry": true, "felt:h3_index": 644721884516457251, "STATEFP": 6.0, "PLACEFP": 53714.0, "PLACENS": 2408986.0, "GEOID": 653714.0, "NAME": "Olivehurst", "NAMELSAD": "Olivehurst CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21791564.0, "AWATER": 0.0, "INTPTLAT": 39.0794611, "INTPTLON": -121.5566594 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5566594, 39.0794611 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1229, "felt:has_geometry": true, "felt:h3_index": 644719890515136884, "STATEFP": 6.0, "PLACEFP": 53882.0, "PLACENS": 2813354.0, "GEOID": 653882.0, "NAME": "Ono", "NAMELSAD": "Ono CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931419.0, "AWATER": 7877.0, "INTPTLAT": 40.4781165, "INTPTLON": -122.6254908 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6254908, 40.4781165 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1230, "felt:has_geometry": true, "felt:h3_index": 644747986590942795, "STATEFP": 6.0, "PLACEFP": 53910.0, "PLACENS": 2408991.0, "GEOID": 653910.0, "NAME": "Onyx", "NAMELSAD": "Onyx CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29658338.0, "AWATER": 203115.0, "INTPTLAT": 35.67022, "INTPTLON": -118.2271631 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2271631, 35.67022 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1231, "felt:has_geometry": true, "felt:h3_index": 644722167714212917, "STATEFP": 6.0, "PLACEFP": 53987.0, "PLACENS": 2805247.0, "GEOID": 653987.0, "NAME": "Orange Blossom", "NAMELSAD": "Orange Blossom CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9892153.0, "AWATER": 396333.0, "INTPTLAT": 37.8147224, "INTPTLON": -120.6873321 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6873321, 37.8147224 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1232, "felt:has_geometry": true, "felt:h3_index": 644721876056590418, "STATEFP": 6.0, "PLACEFP": 54092.0, "PLACENS": 2408995.0, "GEOID": 654092.0, "NAME": "Orangevale", "NAMELSAD": "Orangevale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29657948.0, "AWATER": 397602.0, "INTPTLAT": 38.6893591, "INTPTLON": -121.223077 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.223077, 38.6893591 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1233, "felt:has_geometry": true, "felt:h3_index": 644737360774473494, "STATEFP": 6.0, "PLACEFP": 54120.0, "PLACENS": 2408999.0, "GEOID": 654120.0, "NAME": "Orcutt", "NAMELSAD": "Orcutt CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28030109.0, "AWATER": 5696.0, "INTPTLAT": 34.8692353, "INTPTLON": -120.4216836 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4216836, 34.8692353 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6.0, "PLACEFP": 54218.0, "PLACENS": 2611444.0, "GEOID": 654218.0, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818.0, "AWATER": 270118.0, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0703021, 41.2902156 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1235, "felt:has_geometry": true, "felt:h3_index": 644747603868199494, "STATEFP": 6.0, "PLACEFP": 54372.0, "PLACENS": 2409000.0, "GEOID": 654372.0, "NAME": "Orosi", "NAMELSAD": "Orosi CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6672042.0, "AWATER": 0.0, "INTPTLAT": 36.5432708, "INTPTLON": -119.2914187 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2914187, 36.5432708 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1236, "felt:has_geometry": true, "felt:h3_index": 644721958459156291, "STATEFP": 6.0, "PLACEFP": 54388.0, "PLACENS": 2409001.0, "GEOID": 654388.0, "NAME": "Oroville East", "NAMELSAD": "Oroville East CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55935091.0, "AWATER": 415638.0, "INTPTLAT": 39.4936197, "INTPTLON": -121.4837545 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4837545, 39.4936197 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1237, "felt:has_geometry": true, "felt:h3_index": 644721785516008614, "STATEFP": 6.0, "PLACEFP": 54764.0, "PLACENS": 2409012.0, "GEOID": 654764.0, "NAME": "Pacheco", "NAMELSAD": "Pacheco CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1945578.0, "AWATER": 0.0, "INTPTLAT": 37.9878524, "INTPTLON": -122.0698276 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0698276, 37.9878524 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1238, "felt:has_geometry": true, "felt:h3_index": 644722063213155224, "STATEFP": 6.0, "PLACEFP": 55044.0, "PLACENS": 2409018.0, "GEOID": 655044.0, "NAME": "Pajaro", "NAMELSAD": "Pajaro CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2406305.0, "AWATER": 0.0, "INTPTLAT": 36.9016589, "INTPTLON": -121.7417272 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7417272, 36.9016589 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1239, "felt:has_geometry": true, "felt:h3_index": 644722059283699598, "STATEFP": 6.0, "PLACEFP": 55048.0, "PLACENS": 2583104.0, "GEOID": 655048.0, "NAME": "Pajaro Dunes", "NAMELSAD": "Pajaro Dunes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6640875.0, "AWATER": 62511.0, "INTPTLAT": 36.8682123, "INTPTLON": -121.8056971 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8056971, 36.8682123 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1240, "felt:has_geometry": true, "felt:h3_index": 644747325903749669, "STATEFP": 6.0, "PLACEFP": 55058.0, "PLACENS": 2585656.0, "GEOID": 655058.0, "NAME": "Pala", "NAMELSAD": "Pala CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14449444.0, "AWATER": 0.0, "INTPTLAT": 33.3639256, "INTPTLON": -117.0677853 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0677853, 33.3639256 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1241, "felt:has_geometry": true, "felt:h3_index": 644721959051926547, "STATEFP": 6.0, "PLACEFP": 55086.0, "PLACENS": 2409019.0, "GEOID": 655086.0, "NAME": "Palermo", "NAMELSAD": "Palermo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75529077.0, "AWATER": 37114.0, "INTPTLAT": 39.4306948, "INTPTLON": -121.5228836 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5228836, 39.4306948 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1242, "felt:has_geometry": true, "felt:h3_index": 644719908070632019, "STATEFP": 6.0, "PLACEFP": 55296.0, "PLACENS": 2409021.0, "GEOID": 655296.0, "NAME": "Palo Cedro", "NAMELSAD": "Palo Cedro CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21184711.0, "AWATER": 280522.0, "INTPTLAT": 40.566236, "INTPTLON": -122.2428371 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2428371, 40.566236 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1243, "felt:has_geometry": true, "felt:h3_index": 645287667289983361, "STATEFP": 6.0, "PLACEFP": 55422.0, "PLACENS": 2409022.0, "GEOID": 655422.0, "NAME": "Palo Verde", "NAMELSAD": "Palo Verde CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1502113.0, "AWATER": 0.0, "INTPTLAT": 33.4278429, "INTPTLON": -114.7270947 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.7270947, 33.4278429 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1244, "felt:has_geometry": true, "felt:h3_index": 644747999452729696, "STATEFP": 6.0, "PLACEFP": 55506.0, "PLACENS": 2585435.0, "GEOID": 655506.0, "NAME": "Panorama Heights", "NAMELSAD": "Panorama Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1230480.0, "AWATER": 0.0, "INTPTLAT": 35.8067676, "INTPTLON": -118.6270528 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6270528, 35.8067676 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1245, "felt:has_geometry": true, "felt:h3_index": 644745681741189878, "STATEFP": 6.0, "PLACEFP": 55528.0, "PLACENS": 2583105.0, "GEOID": 655528.0, "NAME": "Paradise", "NAMELSAD": "Paradise CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11271636.0, "AWATER": 0.0, "INTPTLAT": 37.4828526, "INTPTLON": -118.602213 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.602213, 37.4828526 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1246, "felt:has_geometry": true, "felt:h3_index": 644722014770698241, "STATEFP": 6.0, "PLACEFP": 55604.0, "PLACENS": 2583106.0, "GEOID": 655604.0, "NAME": "Paradise Park", "NAMELSAD": "Paradise Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 720542.0, "AWATER": 0.0, "INTPTLAT": 37.0062975, "INTPTLON": -122.0424133 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0424133, 37.0062975 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1247, "felt:has_geometry": true, "felt:h3_index": 644722149538316290, "STATEFP": 6.0, "PLACEFP": 55728.0, "PLACENS": 2628771.0, "GEOID": 655728.0, "NAME": "Parklawn", "NAMELSAD": "Parklawn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 345236.0, "AWATER": 0.0, "INTPTLAT": 37.607091, "INTPTLON": -120.9803855 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9803855, 37.607091 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1248, "felt:has_geometry": true, "felt:h3_index": 644747813093457032, "STATEFP": 6.0, "PLACEFP": 55751.0, "PLACENS": 2409034.0, "GEOID": 655751.0, "NAME": "Parksdale", "NAMELSAD": "Parksdale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4500371.0, "AWATER": 0.0, "INTPTLAT": 36.9464877, "INTPTLON": -120.0211776 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0211776, 36.9464877 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1249, "felt:has_geometry": true, "felt:h3_index": 644721918292417361, "STATEFP": 6.0, "PLACEFP": 55800.0, "PLACENS": 2583107.0, "GEOID": 655800.0, "NAME": "Parkway", "NAMELSAD": "Parkway CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6240066.0, "AWATER": 0.0, "INTPTLAT": 38.4992929, "INTPTLON": -121.4520114 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4520114, 38.4992929 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1250, "felt:has_geometry": true, "felt:h3_index": 644747812842957570, "STATEFP": 6.0, "PLACEFP": 55842.0, "PLACENS": 2409036.0, "GEOID": 655842.0, "NAME": "Parkwood", "NAMELSAD": "Parkwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1804074.0, "AWATER": 0.0, "INTPTLAT": 36.9292707, "INTPTLON": -120.04819 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.04819, 36.9292707 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1251, "felt:has_geometry": true, "felt:h3_index": 644722014756472024, "STATEFP": 6.0, "PLACEFP": 56028.0, "PLACENS": 2583108.0, "GEOID": 656028.0, "NAME": "Pasatiempo", "NAMELSAD": "Pasatiempo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2305899.0, "AWATER": 0.0, "INTPTLAT": 37.003338, "INTPTLON": -122.0264737 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0264737, 37.003338 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1252, "felt:has_geometry": true, "felt:h3_index": 644719917368957665, "STATEFP": 6.0, "PLACEFP": 56042.0, "PLACENS": 2628772.0, "GEOID": 656042.0, "NAME": "Paskenta", "NAMELSAD": "Paskenta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2799215.0, "AWATER": 0.0, "INTPTLAT": 39.8832746, "INTPTLON": -122.5458335 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5458335, 39.8832746 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1253, "felt:has_geometry": true, "felt:h3_index": 644747589917098704, "STATEFP": 6.0, "PLACEFP": 56120.0, "PLACENS": 2585436.0, "GEOID": 656120.0, "NAME": "Patterson Tract", "NAMELSAD": "Patterson Tract CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3744512.0, "AWATER": 0.0, "INTPTLAT": 36.3795209, "INTPTLON": -119.2956042 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2956042, 36.3795209 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1254, "felt:has_geometry": true, "felt:h3_index": 644719982062547848, "STATEFP": 6.0, "PLACEFP": 56140.0, "PLACENS": 2583109.0, "GEOID": 656140.0, "NAME": "Patton Village", "NAMELSAD": "Patton Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9040567.0, "AWATER": 0.0, "INTPTLAT": 40.1407242, "INTPTLON": -120.178123 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.178123, 40.1407242 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1255, "felt:has_geometry": true, "felt:h3_index": 644719812616783554, "STATEFP": 6.0, "PLACEFP": 56182.0, "PLACENS": 2409040.0, "GEOID": 656182.0, "NAME": "Paxton", "NAMELSAD": "Paxton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 863831.0, "AWATER": 0.0, "INTPTLAT": 40.0336064, "INTPTLON": -121.0025693 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0025693, 40.0336064 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1256, "felt:has_geometry": true, "felt:h3_index": 644719900619086381, "STATEFP": 6.0, "PLACEFP": 56196.0, "PLACENS": 2628773.0, "GEOID": 656196.0, "NAME": "Paynes Creek", "NAMELSAD": "Paynes Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8887673.0, "AWATER": 3777.0, "INTPTLAT": 40.3418999, "INTPTLON": -121.9249741 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9249741, 40.3418999 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1257, "felt:has_geometry": true, "felt:h3_index": 644748003553121640, "STATEFP": 6.0, "PLACEFP": 56294.0, "PLACENS": 2409043.0, "GEOID": 656294.0, "NAME": "Pearsonville", "NAMELSAD": "Pearsonville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10648134.0, "AWATER": 210748.0, "INTPTLAT": 35.8229451, "INTPTLON": -117.87825 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.87825, 35.8229451 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1258, "felt:has_geometry": true, "felt:h3_index": 644721779297944868, "STATEFP": 6.0, "PLACEFP": 56476.0, "PLACENS": 2583110.0, "GEOID": 656476.0, "NAME": "Penngrove", "NAMELSAD": "Penngrove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10446983.0, "AWATER": 0.0, "INTPTLAT": 38.3006185, "INTPTLON": -122.670641 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.670641, 38.3006185 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1259, "felt:has_geometry": true, "felt:h3_index": 644721880879674762, "STATEFP": 6.0, "PLACEFP": 56518.0, "PLACENS": 2409052.0, "GEOID": 656518.0, "NAME": "Penn Valley", "NAMELSAD": "Penn Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494646.0, "AWATER": 0.0, "INTPTLAT": 39.1952969, "INTPTLON": -121.1941531 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1941531, 39.1952969 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1260, "felt:has_geometry": true, "felt:h3_index": 644721872035284622, "STATEFP": 6.0, "PLACEFP": 56546.0, "PLACENS": 2628774.0, "GEOID": 656546.0, "NAME": "Penryn", "NAMELSAD": "Penryn CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4928719.0, "AWATER": 0.0, "INTPTLAT": 38.8482176, "INTPTLON": -121.1698087 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1698087, 38.8482176 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1261, "felt:has_geometry": true, "felt:h3_index": 644747130228595736, "STATEFP": 6.0, "PLACEFP": 56598.0, "PLACENS": 2805260.0, "GEOID": 656598.0, "NAME": "Pepperdine University", "NAMELSAD": "Pepperdine University CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1393957.0, "AWATER": 0.0, "INTPTLAT": 34.0422775, "INTPTLON": -118.709182 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.709182, 34.0422775 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1262, "felt:has_geometry": true, "felt:h3_index": 644722023233673258, "STATEFP": 6.0, "PLACEFP": 56756.0, "PLACENS": 2628775.0, "GEOID": 656756.0, "NAME": "Pescadero", "NAMELSAD": "Pescadero CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10426487.0, "AWATER": 22322.0, "INTPTLAT": 37.2448941, "INTPTLON": -122.378866 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.378866, 37.2448941 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1263, "felt:has_geometry": true, "felt:h3_index": 644721779093558966, "STATEFP": 6.0, "PLACEFP": 56786.0, "PLACENS": 2805236.0, "GEOID": 656786.0, "NAME": "Petaluma Center", "NAMELSAD": "Petaluma Center CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3038425.0, "AWATER": 0.0, "INTPTLAT": 38.2506525, "INTPTLON": -122.788841 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.788841, 38.2506525 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1264, "felt:has_geometry": true, "felt:h3_index": 644722160350871770, "STATEFP": 6.0, "PLACEFP": 56798.0, "PLACENS": 2583111.0, "GEOID": 656798.0, "NAME": "Peters", "NAMELSAD": "Peters CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6542371.0, "AWATER": 15743.0, "INTPTLAT": 37.9761571, "INTPTLON": -121.0438088 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0438088, 37.9761571 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1265, "felt:has_geometry": true, "felt:h3_index": 644747033605099828, "STATEFP": 6.0, "PLACEFP": 56826.0, "PLACENS": 2627935.0, "GEOID": 656826.0, "NAME": "Phelan", "NAMELSAD": "Phelan CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 155638217.0, "AWATER": 0.0, "INTPTLAT": 34.439816, "INTPTLON": -117.5248288 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5248288, 34.439816 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1266, "felt:has_geometry": true, "felt:h3_index": 644718611024692944, "STATEFP": 6.0, "PLACEFP": 56854.0, "PLACENS": 2628776.0, "GEOID": 656854.0, "NAME": "Phillipsville", "NAMELSAD": "Phillipsville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1850731.0, "AWATER": 73250.0, "INTPTLAT": 40.2107035, "INTPTLON": -123.7812117 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.7812117, 40.2107035 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1267, "felt:has_geometry": true, "felt:h3_index": 644721829088003747, "STATEFP": 6.0, "PLACEFP": 56868.0, "PLACENS": 2628777.0, "GEOID": 656868.0, "NAME": "Philo", "NAMELSAD": "Philo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5353556.0, "AWATER": 0.0, "INTPTLAT": 39.065757, "INTPTLON": -123.4450628 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.4450628, 39.065757 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1268, "felt:has_geometry": true, "felt:h3_index": 644745763638921008, "STATEFP": 6.0, "PLACEFP": 56870.0, "PLACENS": 2633170.0, "GEOID": 656870.0, "NAME": "Phoenix Lake", "NAMELSAD": "Phoenix Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28679791.0, "AWATER": 334098.0, "INTPTLAT": 38.0113468, "INTPTLON": -120.3090003 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3090003, 38.0113468 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1269, "felt:has_geometry": true, "felt:h3_index": 644747748139715090, "STATEFP": 6.0, "PLACEFP": 57011.0, "PLACENS": 2585437.0, "GEOID": 657011.0, "NAME": "Pierpoint", "NAMELSAD": "Pierpoint CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1056404.0, "AWATER": 0.0, "INTPTLAT": 36.1404676, "INTPTLON": -118.6296151 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6296151, 36.1404676 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1270, "felt:has_geometry": true, "felt:h3_index": 644719850214437276, "STATEFP": 6.0, "PLACEFP": 57036.0, "PLACENS": 2583112.0, "GEOID": 657036.0, "NAME": "Pike", "NAMELSAD": "Pike CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11194524.0, "AWATER": 0.0, "INTPTLAT": 39.427843, "INTPTLON": -120.9996815 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9996815, 39.427843 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1271, "felt:has_geometry": true, "felt:h3_index": 644747679985378393, "STATEFP": 6.0, "PLACEFP": 57070.0, "PLACENS": 2583113.0, "GEOID": 657070.0, "NAME": "Pine Canyon", "NAMELSAD": "Pine Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8639261.0, "AWATER": 2301.0, "INTPTLAT": 36.1720725, "INTPTLON": -121.1430132 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1430132, 36.1720725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1272, "felt:has_geometry": true, "felt:h3_index": 644747998627289640, "STATEFP": 6.0, "PLACEFP": 57134.0, "PLACENS": 2585438.0, "GEOID": 657134.0, "NAME": "Pine Flat", "NAMELSAD": "Pine Flat CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2588599.0, "AWATER": 1961.0, "INTPTLAT": 35.8753554, "INTPTLON": -118.6438322 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6438322, 35.8753554 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1273, "felt:has_geometry": true, "felt:h3_index": 644721926213384809, "STATEFP": 6.0, "PLACEFP": 57148.0, "PLACENS": 2583114.0, "GEOID": 657148.0, "NAME": "Pine Grove", "NAMELSAD": "Pine Grove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19383669.0, "AWATER": 0.0, "INTPTLAT": 38.4030395, "INTPTLON": -120.6570875 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6570875, 38.4030395 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1274, "felt:has_geometry": true, "felt:h3_index": 644718618387504037, "STATEFP": 6.0, "PLACEFP": 57204.0, "PLACENS": 2409067.0, "GEOID": 657204.0, "NAME": "Pine Hills", "NAMELSAD": "Pine Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26200654.0, "AWATER": 107779.0, "INTPTLAT": 40.732892, "INTPTLON": -124.1610949 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1610949, 40.732892 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1275, "felt:has_geometry": true, "felt:h3_index": 644747899956521396, "STATEFP": 6.0, "PLACEFP": 57240.0, "PLACENS": 2409069.0, "GEOID": 657240.0, "NAME": "Pine Mountain Club", "NAMELSAD": "Pine Mountain Club CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43647394.0, "AWATER": 16918.0, "INTPTLAT": 34.8408949, "INTPTLON": -119.1685406 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1685406, 34.8408949 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1276, "felt:has_geometry": true, "felt:h3_index": 644745756209086464, "STATEFP": 6.0, "PLACEFP": 57244.0, "PLACENS": 2583115.0, "GEOID": 657244.0, "NAME": "Pine Mountain Lake", "NAMELSAD": "Pine Mountain Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49108026.0, "AWATER": 726370.0, "INTPTLAT": 37.8595397, "INTPTLON": -120.1816624 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1816624, 37.8595397 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1277, "felt:has_geometry": true, "felt:h3_index": 644747320310638465, "STATEFP": 6.0, "PLACEFP": 57260.0, "PLACENS": 2409070.0, "GEOID": 657260.0, "NAME": "Pine Valley", "NAMELSAD": "Pine Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18555854.0, "AWATER": 0.0, "INTPTLAT": 32.841513, "INTPTLON": -116.5107062 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.5107062, 32.841513 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1278, "felt:has_geometry": true, "felt:h3_index": 644747033356132490, "STATEFP": 6.0, "PLACEFP": 57302.0, "PLACENS": 2627936.0, "GEOID": 657302.0, "NAME": "Piñon Hills", "NAMELSAD": "Piñon Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83177827.0, "AWATER": 7520.0, "INTPTLAT": 34.4456075, "INTPTLON": -117.6235632 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6235632, 34.4456075 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1279, "felt:has_geometry": true, "felt:h3_index": 644721926475382941, "STATEFP": 6.0, "PLACEFP": 57330.0, "PLACENS": 2583116.0, "GEOID": 657330.0, "NAME": "Pioneer", "NAMELSAD": "Pioneer CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10199669.0, "AWATER": 0.0, "INTPTLAT": 38.4337589, "INTPTLON": -120.5860771 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5860771, 38.4337589 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1280, "felt:has_geometry": true, "felt:h3_index": 644747135884366873, "STATEFP": 6.0, "PLACEFP": 57372.0, "PLACENS": 2409077.0, "GEOID": 657372.0, "NAME": "Piru", "NAMELSAD": "Piru CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8233997.0, "AWATER": 40401.0, "INTPTLAT": 34.4056778, "INTPTLON": -118.8050967 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8050967, 34.4056778 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1281, "felt:has_geometry": true, "felt:h3_index": 644747626833840880, "STATEFP": 6.0, "PLACEFP": 57512.0, "PLACENS": 2409079.0, "GEOID": 657512.0, "NAME": "Pixley", "NAMELSAD": "Pixley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13597489.0, "AWATER": 56590.0, "INTPTLAT": 35.976823, "INTPTLON": -119.3001904 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3001904, 35.976823 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1282, "felt:has_geometry": true, "felt:h3_index": 644747593096158564, "STATEFP": 6.0, "PLACEFP": 57568.0, "PLACENS": 2585439.0, "GEOID": 657568.0, "NAME": "Plainview", "NAMELSAD": "Plainview CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 591714.0, "AWATER": 0.0, "INTPTLAT": 36.1430275, "INTPTLON": -119.1353398 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1353398, 36.1430275 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1283, "felt:has_geometry": true, "felt:h3_index": 644747824221921803, "STATEFP": 6.0, "PLACEFP": 57582.0, "PLACENS": 2409081.0, "GEOID": 657582.0, "NAME": "Planada", "NAMELSAD": "Planada CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4511785.0, "AWATER": 0.0, "INTPTLAT": 37.2902022, "INTPTLON": -120.3216317 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3216317, 37.2902022 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6.0, "PLACEFP": 57666.0, "PLACENS": 2813355.0, "GEOID": 657666.0, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433.0, "AWATER": 0.0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.904244, 40.3590525 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1285, "felt:has_geometry": true, "felt:h3_index": 644722014660350637, "STATEFP": 6.0, "PLACEFP": 57825.0, "PLACENS": 2408992.0, "GEOID": 657825.0, "NAME": "Pleasure Point", "NAMELSAD": "Pleasure Point CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1941322.0, "AWATER": 3274430.0, "INTPTLAT": 36.9597176, "INTPTLON": -121.9700357 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9700357, 36.9597176 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1286, "felt:has_geometry": true, "felt:h3_index": 644719863603222288, "STATEFP": 6.0, "PLACEFP": 57828.0, "PLACENS": 2409082.0, "GEOID": 657828.0, "NAME": "Plumas Eureka", "NAMELSAD": "Plumas Eureka CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10294401.0, "AWATER": 0.0, "INTPTLAT": 39.7982418, "INTPTLON": -120.664441 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.664441, 39.7982418 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1287, "felt:has_geometry": true, "felt:h3_index": 644721884689601126, "STATEFP": 6.0, "PLACEFP": 57829.0, "PLACENS": 2583117.0, "GEOID": 657829.0, "NAME": "Plumas Lake", "NAMELSAD": "Plumas Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30658926.0, "AWATER": 891526.0, "INTPTLAT": 38.9791308, "INTPTLON": -121.5580559 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5580559, 38.9791308 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1288, "felt:has_geometry": true, "felt:h3_index": 644721777629225044, "STATEFP": 6.0, "PLACEFP": 57960.0, "PLACENS": 2409084.0, "GEOID": 657960.0, "NAME": "Point Reyes Station", "NAMELSAD": "Point Reyes Station CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9364185.0, "AWATER": 0.0, "INTPTLAT": 38.0846469, "INTPTLON": -122.8092262 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8092262, 38.0846469 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1289, "felt:has_geometry": true, "felt:h3_index": 644721892361966609, "STATEFP": 6.0, "PLACEFP": 58030.0, "PLACENS": 2409086.0, "GEOID": 658030.0, "NAME": "Pollock Pines", "NAMELSAD": "Pollock Pines CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22335059.0, "AWATER": 83617.0, "INTPTLAT": 38.7576414, "INTPTLON": -120.5909566 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5909566, 38.7576414 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1290, "felt:has_geometry": true, "felt:h3_index": 644748011080167693, "STATEFP": 6.0, "PLACEFP": 58134.0, "PLACENS": 2585440.0, "GEOID": 658134.0, "NAME": "Ponderosa", "NAMELSAD": "Ponderosa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2099863.0, "AWATER": 9090.0, "INTPTLAT": 36.1046931, "INTPTLON": -118.5319148 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.5319148, 36.1046931 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1291, "felt:has_geometry": true, "felt:h3_index": 644747592798965994, "STATEFP": 6.0, "PLACEFP": 58191.0, "PLACENS": 2409089.0, "GEOID": 658191.0, "NAME": "Poplar-Cotton Center", "NAMELSAD": "Poplar-Cotton Center CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6151505.0, "AWATER": 0.0, "INTPTLAT": 36.057716, "INTPTLON": -119.1501806 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1501806, 36.057716 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1292, "felt:has_geometry": true, "felt:h3_index": 644721736992036100, "STATEFP": 6.0, "PLACEFP": 58226.0, "PLACENS": 2409091.0, "GEOID": 658226.0, "NAME": "Port Costa", "NAMELSAD": "Port Costa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 409759.0, "AWATER": 0.0, "INTPTLAT": 38.044543, "INTPTLON": -122.1849415 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1849415, 38.044543 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1293, "felt:has_geometry": true, "felt:h3_index": 644747999111303560, "STATEFP": 6.0, "PLACEFP": 58422.0, "PLACENS": 2585441.0, "GEOID": 658422.0, "NAME": "Posey", "NAMELSAD": "Posey CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 924093.0, "AWATER": 0.0, "INTPTLAT": 35.8052633, "INTPTLON": -118.6826385 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6826385, 35.8052633 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1294, "felt:has_geometry": true, "felt:h3_index": 644747999146814557, "STATEFP": 6.0, "PLACEFP": 58436.0, "PLACENS": 2585442.0, "GEOID": 658436.0, "NAME": "Poso Park", "NAMELSAD": "Poso Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 112854.0, "AWATER": 0.0, "INTPTLAT": 35.8112717, "INTPTLON": -118.6365374 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6365374, 35.8112717 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1295, "felt:has_geometry": true, "felt:h3_index": 644718627603356904, "STATEFP": 6.0, "PLACEFP": 58456.0, "PLACENS": 2804441.0, "GEOID": 658456.0, "NAME": "Post Mountain", "NAMELSAD": "Post Mountain CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32146965.0, "AWATER": 0.0, "INTPTLAT": 40.4159487, "INTPTLON": -123.2316042 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.2316042, 40.4159487 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1296, "felt:has_geometry": true, "felt:h3_index": 644748030878629203, "STATEFP": 6.0, "PLACEFP": 58471.0, "PLACENS": 2804426.0, "GEOID": 658471.0, "NAME": "Potomac Park", "NAMELSAD": "Potomac Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3693101.0, "AWATER": 0.0, "INTPTLAT": 35.363538, "INTPTLON": -118.9649632 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9649632, 35.363538 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1297, "felt:has_geometry": true, "felt:h3_index": 645287510434742996, "STATEFP": 6.0, "PLACEFP": 58478.0, "PLACENS": 2628778.0, "GEOID": 658478.0, "NAME": "Potrero", "NAMELSAD": "Potrero CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8157788.0, "AWATER": 0.0, "INTPTLAT": 32.6130891, "INTPTLON": -116.6068146 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.6068146, 32.6130891 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1298, "felt:has_geometry": true, "felt:h3_index": 644718902778063776, "STATEFP": 6.0, "PLACEFP": 58506.0, "PLACENS": 2628779.0, "GEOID": 658506.0, "NAME": "Potter Valley", "NAMELSAD": "Potter Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10430292.0, "AWATER": 73557.0, "INTPTLAT": 39.3171408, "INTPTLON": -123.10986 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.10986, 39.3171408 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1299, "felt:has_geometry": true, "felt:h3_index": 644719840357699611, "STATEFP": 6.0, "PLACEFP": 58618.0, "PLACENS": 2409103.0, "GEOID": 658618.0, "NAME": "Prattville", "NAMELSAD": "Prattville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1561232.0, "AWATER": 0.0, "INTPTLAT": 40.2060047, "INTPTLON": -121.1574565 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1574565, 40.2060047 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1300, "felt:has_geometry": true, "felt:h3_index": 644721941324717229, "STATEFP": 6.0, "PLACEFP": 58758.0, "PLACENS": 2583118.0, "GEOID": 658758.0, "NAME": "Princeton", "NAMELSAD": "Princeton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3781914.0, "AWATER": 0.0, "INTPTLAT": 39.4015985, "INTPTLON": -122.0193595 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0193595, 39.4015985 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1301, "felt:has_geometry": true, "felt:h3_index": 644719930505168641, "STATEFP": 6.0, "PLACEFP": 58814.0, "PLACENS": 2628780.0, "GEOID": 658814.0, "NAME": "Proberta", "NAMELSAD": "Proberta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3707383.0, "AWATER": 0.0, "INTPTLAT": 40.0761573, "INTPTLON": -122.1776086 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1776086, 40.0761573 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1302, "felt:has_geometry": true, "felt:h3_index": 644722065742801485, "STATEFP": 6.0, "PLACEFP": 58870.0, "PLACENS": 2409105.0, "GEOID": 658870.0, "NAME": "Prunedale", "NAMELSAD": "Prunedale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 119299815.0, "AWATER": 368885.0, "INTPTLAT": 36.8117473, "INTPTLON": -121.6549596 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6549596, 36.8117473 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1303, "felt:has_geometry": true, "felt:h3_index": 644747865612551794, "STATEFP": 6.0, "PLACEFP": 58940.0, "PLACENS": 2804427.0, "GEOID": 658940.0, "NAME": "Pumpkin Center", "NAMELSAD": "Pumpkin Center CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1209454.0, "AWATER": 0.0, "INTPTLAT": 35.2653012, "INTPTLON": -119.0324097 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0324097, 35.2653012 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1304, "felt:has_geometry": true, "felt:h3_index": 644747109189632521, "STATEFP": 6.0, "PLACEFP": 59052.0, "PLACENS": 2409114.0, "GEOID": 659052.0, "NAME": "Quartz Hill", "NAMELSAD": "Quartz Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9743175.0, "AWATER": 896.0, "INTPTLAT": 34.6519876, "INTPTLON": -118.2159454 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2159454, 34.6519876 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1305, "felt:has_geometry": true, "felt:h3_index": 644719808859914265, "STATEFP": 6.0, "PLACEFP": 59080.0, "PLACENS": 2409118.0, "GEOID": 659080.0, "NAME": "Quincy", "NAMELSAD": "Quincy CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10939488.0, "AWATER": 0.0, "INTPTLAT": 39.931017, "INTPTLON": -120.9548861 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9548861, 39.931017 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1306, "felt:has_geometry": true, "felt:h3_index": 644719848321460304, "STATEFP": 6.0, "PLACEFP": 59115.0, "PLACENS": 2612485.0, "GEOID": 659115.0, "NAME": "Rackerby", "NAMELSAD": "Rackerby CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7650377.0, "AWATER": 0.0, "INTPTLAT": 39.4261136, "INTPTLON": -121.35419 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.35419, 39.4261136 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1307, "felt:has_geometry": true, "felt:h3_index": 644745760524114544, "STATEFP": 6.0, "PLACEFP": 59220.0, "PLACENS": 2409122.0, "GEOID": 659220.0, "NAME": "Rail Road Flat", "NAMELSAD": "Rail Road Flat CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23510266.0, "AWATER": 371269.0, "INTPTLAT": 38.314374, "INTPTLON": -120.5074837 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5074837, 38.314374 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1308, "felt:has_geometry": true, "felt:h3_index": 644747326050231120, "STATEFP": 6.0, "PLACEFP": 59248.0, "PLACENS": 2409123.0, "GEOID": 659248.0, "NAME": "Rainbow", "NAMELSAD": "Rainbow CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28633080.0, "AWATER": 0.0, "INTPTLAT": 33.4098728, "INTPTLON": -117.1394401 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1394401, 33.4098728 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1309, "felt:has_geometry": true, "felt:h3_index": 644747816642026160, "STATEFP": 6.0, "PLACEFP": 59290.0, "PLACENS": 2409124.0, "GEOID": 659290.0, "NAME": "Raisin City", "NAMELSAD": "Raisin City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1967173.0, "AWATER": 0.0, "INTPTLAT": 36.6032623, "INTPTLON": -119.9091581 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.9091581, 36.6032623 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1310, "felt:has_geometry": true, "felt:h3_index": 644747315001812819, "STATEFP": 6.0, "PLACEFP": 59346.0, "PLACENS": 2409128.0, "GEOID": 659346.0, "NAME": "Ramona", "NAMELSAD": "Ramona CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 99548576.0, "AWATER": 49343.0, "INTPTLAT": 33.0458112, "INTPTLON": -116.8775465 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8775465, 33.0458112 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1311, "felt:has_geometry": true, "felt:h3_index": 644722171483116714, "STATEFP": 6.0, "PLACEFP": 59426.0, "PLACENS": 2409134.0, "GEOID": 659426.0, "NAME": "Rancho Calaveras", "NAMELSAD": "Rancho Calaveras CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21707375.0, "AWATER": 77009.0, "INTPTLAT": 38.1273495, "INTPTLON": -120.8530892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8530892, 38.1273495 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1312, "felt:has_geometry": true, "felt:h3_index": 644747061659048178, "STATEFP": 6.0, "PLACEFP": 59503.0, "PLACENS": 2805249.0, "GEOID": 659503.0, "NAME": "Rancho Mission Viejo", "NAMELSAD": "Rancho Mission Viejo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 97922929.0, "AWATER": 0.0, "INTPTLAT": 33.5140033, "INTPTLON": -117.5617945 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5617945, 33.5140033 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1313, "felt:has_geometry": true, "felt:h3_index": 644721907311596229, "STATEFP": 6.0, "PLACEFP": 59506.0, "PLACENS": 2409136.0, "GEOID": 659506.0, "NAME": "Rancho Murieta", "NAMELSAD": "Rancho Murieta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30776825.0, "AWATER": 467881.0, "INTPTLAT": 38.5007005, "INTPTLON": -121.0740205 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0740205, 38.5007005 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1314, "felt:has_geometry": true, "felt:h3_index": 644747319495804516, "STATEFP": 6.0, "PLACEFP": 59550.0, "PLACENS": 2409137.0, "GEOID": 659550.0, "NAME": "Rancho San Diego", "NAMELSAD": "Rancho San Diego CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22523642.0, "AWATER": 0.0, "INTPTLAT": 32.762405, "INTPTLON": -116.9196906 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9196906, 32.762405 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1315, "felt:has_geometry": true, "felt:h3_index": 644747300032824901, "STATEFP": 6.0, "PLACEFP": 59584.0, "PLACENS": 2409138.0, "GEOID": 659584.0, "NAME": "Rancho Santa Fe", "NAMELSAD": "Rancho Santa Fe CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17384981.0, "AWATER": 188500.0, "INTPTLAT": 33.025814, "INTPTLON": -117.198148 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.198148, 33.025814 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1316, "felt:has_geometry": true, "felt:h3_index": 644719912127851366, "STATEFP": 6.0, "PLACEFP": 59604.0, "PLACENS": 2409139.0, "GEOID": 659604.0, "NAME": "Rancho Tehama Reserve", "NAMELSAD": "Rancho Tehama Reserve CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30267928.0, "AWATER": 200213.0, "INTPTLAT": 40.0040029, "INTPTLON": -122.4283397 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4283397, 40.0040029 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1317, "felt:has_geometry": true, "felt:h3_index": 644747236771299574, "STATEFP": 6.0, "PLACEFP": 59668.0, "PLACENS": 2409143.0, "GEOID": 659668.0, "NAME": "Randsburg", "NAMELSAD": "Randsburg CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4935915.0, "AWATER": 100959.0, "INTPTLAT": 35.3686576, "INTPTLON": -117.6603218 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6603218, 35.3686576 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1318, "felt:has_geometry": true, "felt:h3_index": 644721926439338141, "STATEFP": 6.0, "PLACEFP": 59896.0, "PLACENS": 2583119.0, "GEOID": 659896.0, "NAME": "Red Corral", "NAMELSAD": "Red Corral CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16324174.0, "AWATER": 0.0, "INTPTLAT": 38.4121324, "INTPTLON": -120.6071021 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6071021, 38.4121324 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6.0, "PLACEFP": 59906.0, "PLACENS": 2628781.0, "GEOID": 659906.0, "NAME": "Redcrest", "NAMELSAD": "Redcrest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190.0, "AWATER": 0.0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.9474151, 40.3987748 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1320, "felt:has_geometry": true, "felt:h3_index": 644718859124743401, "STATEFP": 6.0, "PLACEFP": 60088.0, "PLACENS": 2409154.0, "GEOID": 660088.0, "NAME": "Redway", "NAMELSAD": "Redway CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239490.0, "AWATER": 55629.0, "INTPTLAT": 40.1202227, "INTPTLON": -123.8217768 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.8217768, 40.1202227 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1321, "felt:has_geometry": true, "felt:h3_index": 644718902978996387, "STATEFP": 6.0, "PLACEFP": 60214.0, "PLACENS": 2628782.0, "GEOID": 660214.0, "NAME": "Redwood Valley", "NAMELSAD": "Redwood Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7112072.0, "AWATER": 31597.0, "INTPTLAT": 39.2685476, "INTPTLON": -123.2027581 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.2027581, 39.2685476 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1322, "felt:has_geometry": true, "felt:h3_index": 644721786072503884, "STATEFP": 6.0, "PLACEFP": 60279.0, "PLACENS": 2583120.0, "GEOID": 660279.0, "NAME": "Reliez Valley", "NAMELSAD": "Reliez Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6112920.0, "AWATER": 0.0, "INTPTLAT": 37.9398879, "INTPTLON": -122.1026949 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1026949, 37.9398879 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1323, "felt:has_geometry": true, "felt:h3_index": 644748031325824525, "STATEFP": 6.0, "PLACEFP": 60370.0, "PLACENS": 2804428.0, "GEOID": 660370.0, "NAME": "Rexland Acres", "NAMELSAD": "Rexland Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1345980.0, "AWATER": 0.0, "INTPTLAT": 35.3050527, "INTPTLON": -118.9969915 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9969915, 35.3050527 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1324, "felt:has_geometry": true, "felt:h3_index": 644719934891659594, "STATEFP": 6.0, "PLACEFP": 60592.0, "PLACENS": 2628783.0, "GEOID": 660592.0, "NAME": "Richfield", "NAMELSAD": "Richfield CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1417240.0, "AWATER": 0.0, "INTPTLAT": 39.9738012, "INTPTLON": -122.1732337 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1732337, 39.9738012 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1325, "felt:has_geometry": true, "felt:h3_index": 644747629488099461, "STATEFP": 6.0, "PLACEFP": 60606.0, "PLACENS": 2409166.0, "GEOID": 660606.0, "NAME": "Richgrove", "NAMELSAD": "Richgrove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1170649.0, "AWATER": 0.0, "INTPTLAT": 35.7966117, "INTPTLON": -119.1069032 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1069032, 35.7966117 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1326, "felt:has_geometry": true, "felt:h3_index": 644721959830195393, "STATEFP": 6.0, "PLACEFP": 60662.0, "PLACENS": 2612486.0, "GEOID": 660662.0, "NAME": "Richvale", "NAMELSAD": "Richvale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2401175.0, "AWATER": 0.0, "INTPTLAT": 39.4937385, "INTPTLON": -121.7507688 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7507688, 39.4937385 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1327, "felt:has_geometry": true, "felt:h3_index": 644748008066535826, "STATEFP": 6.0, "PLACEFP": 60705.0, "PLACENS": 2804429.0, "GEOID": 660705.0, "NAME": "Ridgecrest Heights", "NAMELSAD": "Ridgecrest Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1564204.0, "AWATER": 0.0, "INTPTLAT": 35.6019004, "INTPTLON": -117.7041798 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.7041798, 35.6019004 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1328, "felt:has_geometry": true, "felt:h3_index": 644722063018669962, "STATEFP": 6.0, "PLACEFP": 60928.0, "PLACENS": 2409173.0, "GEOID": 660928.0, "NAME": "Rio del Mar", "NAMELSAD": "Rio del Mar CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7770134.0, "AWATER": 4173062.0, "INTPTLAT": 36.9578994, "INTPTLON": -121.8848228 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8848228, 36.9578994 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1329, "felt:has_geometry": true, "felt:h3_index": 644721913923320552, "STATEFP": 6.0, "PLACEFP": 60942.0, "PLACENS": 2409175.0, "GEOID": 660942.0, "NAME": "Rio Linda", "NAMELSAD": "Rio Linda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25710392.0, "AWATER": 0.0, "INTPTLAT": 38.687502, "INTPTLON": -121.4416818 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4416818, 38.687502 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1330, "felt:has_geometry": true, "felt:h3_index": 644721884738982212, "STATEFP": 6.0, "PLACEFP": 60970.0, "PLACENS": 2583121.0, "GEOID": 660970.0, "NAME": "Rio Oso", "NAMELSAD": "Rio Oso CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16834414.0, "AWATER": 0.0, "INTPTLAT": 38.9518229, "INTPTLON": -121.5309739 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5309739, 38.9518229 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1331, "felt:has_geometry": true, "felt:h3_index": 645287667033610280, "STATEFP": 6.0, "PLACEFP": 61012.0, "PLACENS": 2583122.0, "GEOID": 661012.0, "NAME": "Ripley", "NAMELSAD": "Ripley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4404857.0, "AWATER": 0.0, "INTPTLAT": 33.5237876, "INTPTLON": -114.6529919 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.6529919, 33.5237876 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1332, "felt:has_geometry": true, "felt:h3_index": 644747586678671960, "STATEFP": 6.0, "PLACEFP": 61096.0, "PLACENS": 2409186.0, "GEOID": 661096.0, "NAME": "Riverdale", "NAMELSAD": "Riverdale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10164976.0, "AWATER": 0.0, "INTPTLAT": 36.4304021, "INTPTLON": -119.8671785 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8671785, 36.4304021 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1333, "felt:has_geometry": true, "felt:h3_index": 644722149531867851, "STATEFP": 6.0, "PLACEFP": 61106.0, "PLACENS": 2409187.0, "GEOID": 661106.0, "NAME": "Riverdale Park", "NAMELSAD": "Riverdale Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3765433.0, "AWATER": 89580.0, "INTPTLAT": 37.6022232, "INTPTLON": -121.0394951 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0394951, 37.6022232 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1334, "felt:has_geometry": true, "felt:h3_index": 644748031214936964, "STATEFP": 6.0, "PLACEFP": 61108.0, "PLACENS": 2804430.0, "GEOID": 661108.0, "NAME": "Rivergrove", "NAMELSAD": "Rivergrove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1703927.0, "AWATER": 0.0, "INTPTLAT": 35.440294, "INTPTLON": -118.9410846 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9410846, 35.440294 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1335, "felt:has_geometry": true, "felt:h3_index": 644721923661961014, "STATEFP": 6.0, "PLACEFP": 61124.0, "PLACENS": 2586445.0, "GEOID": 661124.0, "NAME": "River Pines", "NAMELSAD": "River Pines CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 524419.0, "AWATER": 0.0, "INTPTLAT": 38.545458, "INTPTLON": -120.7429092 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7429092, 38.545458 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1336, "felt:has_geometry": true, "felt:h3_index": 644721997469258910, "STATEFP": 6.0, "PLACEFP": 62168.0, "PLACENS": 2583123.0, "GEOID": 662168.0, "NAME": "Robbins", "NAMELSAD": "Robbins CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6706066.0, "AWATER": 22544.0, "INTPTLAT": 38.8669477, "INTPTLON": -121.7070925 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7070925, 38.8669477 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1337, "felt:has_geometry": true, "felt:h3_index": 644719843663741011, "STATEFP": 6.0, "PLACEFP": 62200.0, "PLACENS": 2612487.0, "GEOID": 662200.0, "NAME": "Robinson Mill", "NAMELSAD": "Robinson Mill CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3411263.0, "AWATER": 0.0, "INTPTLAT": 39.4856263, "INTPTLON": -121.3201644 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3201644, 39.4856263 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1338, "felt:has_geometry": true, "felt:h3_index": 644721737719812685, "STATEFP": 6.0, "PLACEFP": 62490.0, "PLACENS": 2409201.0, "GEOID": 662490.0, "NAME": "Rodeo", "NAMELSAD": "Rodeo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9703809.0, "AWATER": 2324189.0, "INTPTLAT": 38.036605, "INTPTLON": -122.2539556 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2539556, 38.036605 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1339, "felt:has_geometry": true, "felt:h3_index": 644747629608566958, "STATEFP": 6.0, "PLACEFP": 62496.0, "PLACENS": 2585443.0, "GEOID": 662496.0, "NAME": "Rodriguez Camp", "NAMELSAD": "Rodriguez Camp CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 682112.0, "AWATER": 0.0, "INTPTLAT": 35.8089861, "INTPTLON": -119.1388223 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1388223, 35.8089861 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1340, "felt:has_geometry": true, "felt:h3_index": 644747814620665040, "STATEFP": 6.0, "PLACEFP": 62625.0, "PLACENS": 2628784.0, "GEOID": 662625.0, "NAME": "Rolling Hills", "NAMELSAD": "Rolling Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1555414.0, "AWATER": 0.0, "INTPTLAT": 36.903962, "INTPTLON": -119.7966238 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7966238, 36.903962 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1341, "felt:has_geometry": true, "felt:h3_index": 644721770312788394, "STATEFP": 6.0, "PLACEFP": 62700.0, "PLACENS": 2409202.0, "GEOID": 662700.0, "NAME": "Rollingwood", "NAMELSAD": "Rollingwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 447766.0, "AWATER": 0.0, "INTPTLAT": 37.9653469, "INTPTLON": -122.3306075 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3306075, 37.9653469 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1342, "felt:has_geometry": true, "felt:h3_index": 644747074300905248, "STATEFP": 6.0, "PLACEFP": 62756.0, "PLACENS": 2409205.0, "GEOID": 662756.0, "NAME": "Romoland", "NAMELSAD": "Romoland CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6890933.0, "AWATER": 0.0, "INTPTLAT": 33.7648062, "INTPTLON": -117.1571071 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1571071, 33.7648062 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1343, "felt:has_geometry": true, "felt:h3_index": 644747116795790004, "STATEFP": 6.0, "PLACEFP": 62826.0, "PLACENS": 2409208.0, "GEOID": 662826.0, "NAME": "Rosamond", "NAMELSAD": "Rosamond CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 134995228.0, "AWATER": 551690.0, "INTPTLAT": 34.8656273, "INTPTLON": -118.2147671 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2147671, 34.8656273 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1344, "felt:has_geometry": true, "felt:h3_index": 644748032414919902, "STATEFP": 6.0, "PLACEFP": 62854.0, "PLACENS": 2409211.0, "GEOID": 662854.0, "NAME": "Rosedale", "NAMELSAD": "Rosedale CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75813312.0, "AWATER": 0.0, "INTPTLAT": 35.3886076, "INTPTLON": -119.2057422 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2057422, 35.3886076 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1345, "felt:has_geometry": true, "felt:h3_index": 644747146872339478, "STATEFP": 6.0, "PLACEFP": 62860.0, "PLACENS": 2583098.0, "GEOID": 662860.0, "NAME": "Rose Hills", "NAMELSAD": "Rose Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1128791.0, "AWATER": 0.0, "INTPTLAT": 34.0090124, "INTPTLON": -118.041909 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.041909, 34.0090124 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1346, "felt:has_geometry": true, "felt:h3_index": 644721905735646515, "STATEFP": 6.0, "PLACEFP": 62910.0, "PLACENS": 2409213.0, "GEOID": 662910.0, "NAME": "Rosemont", "NAMELSAD": "Rosemont CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11361196.0, "AWATER": 0.0, "INTPTLAT": 38.5477287, "INTPTLON": -121.3553712 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3553712, 38.5477287 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1347, "felt:has_geometry": true, "felt:h3_index": 644747397724214389, "STATEFP": 6.0, "PLACEFP": 63050.0, "PLACENS": 2409214.0, "GEOID": 663050.0, "NAME": "Rossmoor", "NAMELSAD": "Rossmoor CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4038884.0, "AWATER": 0.0, "INTPTLAT": 33.7886914, "INTPTLON": -118.0803257 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0803257, 33.7886914 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1348, "felt:has_geometry": true, "felt:h3_index": 644721881197976219, "STATEFP": 6.0, "PLACEFP": 63106.0, "PLACENS": 2628785.0, "GEOID": 663106.0, "NAME": "Rough and Ready", "NAMELSAD": "Rough and Ready CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8217852.0, "AWATER": 0.0, "INTPTLAT": 39.2340228, "INTPTLON": -121.1380222 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1380222, 39.2340228 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1349, "felt:has_geometry": true, "felt:h3_index": 644719906000834627, "STATEFP": 6.0, "PLACEFP": 63134.0, "PLACENS": 2409216.0, "GEOID": 663134.0, "NAME": "Round Mountain", "NAMELSAD": "Round Mountain CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4342857.0, "AWATER": 17581.0, "INTPTLAT": 40.7974631, "INTPTLON": -121.9379875 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9379875, 40.7974631 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1350, "felt:has_geometry": true, "felt:h3_index": 644745688094170528, "STATEFP": 6.0, "PLACEFP": 63148.0, "PLACENS": 2409218.0, "GEOID": 663148.0, "NAME": "Round Valley", "NAMELSAD": "Round Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36227887.0, "AWATER": 30931.0, "INTPTLAT": 37.4141625, "INTPTLON": -118.5722734 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.5722734, 37.4141625 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1351, "felt:has_geometry": true, "felt:h3_index": 644722149440416667, "STATEFP": 6.0, "PLACEFP": 63168.0, "PLACENS": 2628786.0, "GEOID": 663168.0, "NAME": "Rouse", "NAMELSAD": "Rouse CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 617334.0, "AWATER": 0.0, "INTPTLAT": 37.6195133, "INTPTLON": -121.0083705 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0083705, 37.6195133 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1352, "felt:has_geometry": true, "felt:h3_index": 644747065778279710, "STATEFP": 6.0, "PLACEFP": 63218.0, "PLACENS": 2409220.0, "GEOID": 663218.0, "NAME": "Rowland Heights", "NAMELSAD": "Rowland Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33868894.0, "AWATER": 20101.0, "INTPTLAT": 33.9703133, "INTPTLON": -117.8905677 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.8905677, 33.9703133 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1353, "felt:has_geometry": true, "felt:h3_index": 644721976003537758, "STATEFP": 6.0, "PLACEFP": 63302.0, "PLACENS": 2805251.0, "GEOID": 663302.0, "NAME": "Rumsey", "NAMELSAD": "Rumsey CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6338948.0, "AWATER": 218858.0, "INTPTLAT": 38.893308, "INTPTLON": -122.2436468 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2436468, 38.893308 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1354, "felt:has_geometry": true, "felt:h3_index": 644747051610516904, "STATEFP": 6.0, "PLACEFP": 63316.0, "PLACENS": 2409224.0, "GEOID": 663316.0, "NAME": "Running Springs", "NAMELSAD": "Running Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10888685.0, "AWATER": 23184.0, "INTPTLAT": 34.2113617, "INTPTLON": -117.1045717 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1045717, 34.2113617 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1355, "felt:has_geometry": true, "felt:h3_index": 644718875946399144, "STATEFP": 6.0, "PLACEFP": 63386.0, "PLACENS": 2628787.0, "GEOID": 663386.0, "NAME": "Ruth", "NAMELSAD": "Ruth CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100658842.0, "AWATER": 4347223.0, "INTPTLAT": 40.2938485, "INTPTLON": -123.3483345 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.3483345, 40.2938485 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1356, "felt:has_geometry": true, "felt:h3_index": 644721747861739331, "STATEFP": 6.0, "PLACEFP": 63400.0, "PLACENS": 2583124.0, "GEOID": 663400.0, "NAME": "Rutherford", "NAMELSAD": "Rutherford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350420.0, "AWATER": 10389.0, "INTPTLAT": 38.458864, "INTPTLON": -122.4288313 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.4288313, 38.458864 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1357, "felt:has_geometry": true, "felt:h3_index": 644747073577834850, "STATEFP": 6.0, "PLACEFP": 64056.0, "PLACENS": 2812661.0, "GEOID": 664056.0, "NAME": "Sage", "NAMELSAD": "Sage CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 176786860.0, "AWATER": 15601.0, "INTPTLAT": 33.594066, "INTPTLON": -116.9103847 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9103847, 33.594066 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1358, "felt:has_geometry": true, "felt:h3_index": 644722150813795148, "STATEFP": 6.0, "PLACEFP": 64210.0, "PLACENS": 2409237.0, "GEOID": 664210.0, "NAME": "Salida", "NAMELSAD": "Salida CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5741092.0, "AWATER": 7060.0, "INTPTLAT": 37.7091233, "INTPTLON": -121.0848247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0848247, 37.7091233 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1359, "felt:has_geometry": true, "felt:h3_index": 644721853062231219, "STATEFP": 6.0, "PLACEFP": 64252.0, "PLACENS": 2583125.0, "GEOID": 664252.0, "NAME": "Salmon Creek", "NAMELSAD": "Salmon Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2885757.0, "AWATER": 0.0, "INTPTLAT": 38.3462121, "INTPTLON": -123.059329 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.059329, 38.3462121 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1360, "felt:has_geometry": true, "felt:h3_index": 644747440964263009, "STATEFP": 6.0, "PLACEFP": 64294.0, "PLACENS": 2409242.0, "GEOID": 664294.0, "NAME": "Salton City", "NAMELSAD": "Salton City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55521880.0, "AWATER": 0.0, "INTPTLAT": 33.299426, "INTPTLON": -115.9609466 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.9609466, 33.299426 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1361, "felt:has_geometry": true, "felt:h3_index": 644747434590840730, "STATEFP": 6.0, "PLACEFP": 64308.0, "PLACENS": 2409243.0, "GEOID": 664308.0, "NAME": "Salton Sea Beach", "NAMELSAD": "Salton Sea Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 780215.0, "AWATER": 0.0, "INTPTLAT": 33.3758448, "INTPTLON": -116.0113755 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.0113755, 33.3758448 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1362, "felt:has_geometry": true, "felt:h3_index": 644718575706457891, "STATEFP": 6.0, "PLACEFP": 64378.0, "PLACENS": 2804442.0, "GEOID": 664378.0, "NAME": "Salyer", "NAMELSAD": "Salyer CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13662482.0, "AWATER": 113638.0, "INTPTLAT": 40.8767681, "INTPTLON": -123.5735007 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.5735007, 40.8767681 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1363, "felt:has_geometry": true, "felt:h3_index": 644718618494440300, "STATEFP": 6.0, "PLACEFP": 64392.0, "PLACENS": 2628788.0, "GEOID": 664392.0, "NAME": "Samoa", "NAMELSAD": "Samoa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2166605.0, "AWATER": 0.0, "INTPTLAT": 40.814609, "INTPTLON": -124.1892153 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1892153, 40.814609 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1364, "felt:has_geometry": true, "felt:h3_index": 644722173482720266, "STATEFP": 6.0, "PLACEFP": 64420.0, "PLACENS": 2409247.0, "GEOID": 664420.0, "NAME": "San Andreas", "NAMELSAD": "San Andreas CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21730446.0, "AWATER": 41137.0, "INTPTLAT": 38.1762278, "INTPTLON": -120.6693068 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6693068, 38.1762278 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1365, "felt:has_geometry": true, "felt:h3_index": 644747034561812073, "STATEFP": 6.0, "PLACEFP": 64462.0, "PLACENS": 2409248.0, "GEOID": 664462.0, "NAME": "San Antonio Heights", "NAMELSAD": "San Antonio Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334954.0, "AWATER": 417287.0, "INTPTLAT": 34.1564204, "INTPTLON": -117.6587047 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6587047, 34.1564204 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1366, "felt:has_geometry": true, "felt:h3_index": 644747941889770099, "STATEFP": 6.0, "PLACEFP": 64476.0, "PLACENS": 2409249.0, "GEOID": 664476.0, "NAME": "San Ardo", "NAMELSAD": "San Ardo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1163657.0, "AWATER": 0.0, "INTPTLAT": 36.023699, "INTPTLON": -120.9073068 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9073068, 36.023699 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1367, "felt:has_geometry": true, "felt:h3_index": 644747317368534028, "STATEFP": 6.0, "PLACEFP": 66004.0, "PLACENS": 2409252.0, "GEOID": 666004.0, "NAME": "San Diego Country Estates", "NAMELSAD": "San Diego Country Estates CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43471183.0, "AWATER": 0.0, "INTPTLAT": 33.0093755, "INTPTLON": -116.7873141 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.7873141, 33.0093755 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1368, "felt:has_geometry": true, "felt:h3_index": 644721776524472555, "STATEFP": 6.0, "PLACEFP": 67070.0, "PLACENS": 2409255.0, "GEOID": 667070.0, "NAME": "San Geronimo", "NAMELSAD": "San Geronimo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3906938.0, "AWATER": 0.0, "INTPTLAT": 38.0067128, "INTPTLON": -122.6632659 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6632659, 38.0067128 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1369, "felt:has_geometry": true, "felt:h3_index": 644721774386524566, "STATEFP": 6.0, "PLACEFP": 68112.0, "PLACENS": 2409260.0, "GEOID": 668112.0, "NAME": "San Lorenzo", "NAMELSAD": "San Lorenzo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7888218.0, "AWATER": 53278.0, "INTPTLAT": 37.6759003, "INTPTLON": -122.1359734 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1359734, 37.6759003 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1370, "felt:has_geometry": true, "felt:h3_index": 644747679034789924, "STATEFP": 6.0, "PLACEFP": 68140.0, "PLACENS": 2409261.0, "GEOID": 668140.0, "NAME": "San Lucas", "NAMELSAD": "San Lucas CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1020818.0, "AWATER": 0.0, "INTPTLAT": 36.1283492, "INTPTLON": -121.0217318 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0217318, 36.1283492 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1371, "felt:has_geometry": true, "felt:h3_index": 644722029521602098, "STATEFP": 6.0, "PLACEFP": 68238.0, "PLACENS": 2409264.0, "GEOID": 668238.0, "NAME": "San Martin", "NAMELSAD": "San Martin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30043758.0, "AWATER": 0.0, "INTPTLAT": 37.0828811, "INTPTLON": -121.5963221 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5963221, 37.0828811 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1372, "felt:has_geometry": true, "felt:h3_index": 644721785916727409, "STATEFP": 6.0, "PLACEFP": 68263.0, "PLACENS": 2583126.0, "GEOID": 668263.0, "NAME": "San Miguel", "NAMELSAD": "San Miguel CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2720210.0, "AWATER": 0.0, "INTPTLAT": 37.8866992, "INTPTLON": -122.0368328 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0368328, 37.8866992 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1373, "felt:has_geometry": true, "felt:h3_index": 644747944890350233, "STATEFP": 6.0, "PLACEFP": 68266.0, "PLACENS": 2409265.0, "GEOID": 668266.0, "NAME": "San Miguel", "NAMELSAD": "San Miguel CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350219.0, "AWATER": 0.0, "INTPTLAT": 35.753402, "INTPTLON": -120.6923925 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6923925, 35.753402 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1374, "felt:has_geometry": true, "felt:h3_index": 644747142289105504, "STATEFP": 6.0, "PLACEFP": 68308.0, "PLACENS": 2629291.0, "GEOID": 668308.0, "NAME": "San Pasqual", "NAMELSAD": "San Pasqual CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 659665.0, "AWATER": 0.0, "INTPTLAT": 34.1392218, "INTPTLON": -118.102524 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.102524, 34.1392218 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1375, "felt:has_geometry": true, "felt:h3_index": 644747928544318214, "STATEFP": 6.0, "PLACEFP": 68434.0, "PLACENS": 2583127.0, "GEOID": 668434.0, "NAME": "San Simeon", "NAMELSAD": "San Simeon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2063264.0, "AWATER": 0.0, "INTPTLAT": 35.6182056, "INTPTLON": -121.137438 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.137438, 35.6182056 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1376, "felt:has_geometry": true, "felt:h3_index": 644747922165226253, "STATEFP": 6.0, "PLACEFP": 69182.0, "PLACENS": 2583128.0, "GEOID": 669182.0, "NAME": "Santa Margarita", "NAMELSAD": "Santa Margarita CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1340019.0, "AWATER": 0.0, "INTPTLAT": 35.3894265, "INTPTLON": -120.6081585 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6081585, 35.3894265 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1377, "felt:has_geometry": true, "felt:h3_index": 644747667509871857, "STATEFP": 6.0, "PLACEFP": 70028.0, "PLACENS": 2583129.0, "GEOID": 670028.0, "NAME": "Santa Nella", "NAMELSAD": "Santa Nella CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12128897.0, "AWATER": 0.0, "INTPTLAT": 37.1012188, "INTPTLON": -121.0156971 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0156971, 37.1012188 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1378, "felt:has_geometry": true, "felt:h3_index": 644747137781898082, "STATEFP": 6.0, "PLACEFP": 70130.0, "PLACENS": 2585444.0, "GEOID": 670130.0, "NAME": "Santa Rosa Valley", "NAMELSAD": "Santa Rosa Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18685063.0, "AWATER": 0.0, "INTPTLAT": 34.2459031, "INTPTLON": -118.9017842 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9017842, 34.2459031 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1379, "felt:has_geometry": true, "felt:h3_index": 644747128465883906, "STATEFP": 6.0, "PLACEFP": 70140.0, "PLACENS": 2585445.0, "GEOID": 670140.0, "NAME": "Santa Susana", "NAMELSAD": "Santa Susana CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3250193.0, "AWATER": 0.0, "INTPTLAT": 34.2585666, "INTPTLON": -118.6643529 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6643529, 34.2585666 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1380, "felt:has_geometry": true, "felt:h3_index": 644721782190917342, "STATEFP": 6.0, "PLACEFP": 70154.0, "PLACENS": 2409283.0, "GEOID": 670154.0, "NAME": "Santa Venetia", "NAMELSAD": "Santa Venetia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9489702.0, "AWATER": 74911.0, "INTPTLAT": 38.0055375, "INTPTLON": -122.5028107 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5028107, 38.0055375 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1381, "felt:has_geometry": true, "felt:h3_index": 644737351631962845, "STATEFP": 6.0, "PLACEFP": 70182.0, "PLACENS": 2409284.0, "GEOID": 670182.0, "NAME": "Santa Ynez", "NAMELSAD": "Santa Ynez CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12510425.0, "AWATER": 17663.0, "INTPTLAT": 34.6174568, "INTPTLON": -120.0963551 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0963551, 34.6174568 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1382, "felt:has_geometry": true, "felt:h3_index": 644721769568651472, "STATEFP": 6.0, "PLACEFP": 70266.0, "PLACENS": 2583130.0, "GEOID": 670266.0, "NAME": "Saranap", "NAMELSAD": "Saranap CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2939536.0, "AWATER": 0.0, "INTPTLAT": 37.8878178, "INTPTLON": -122.0761419 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0761419, 37.8878178 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1383, "felt:has_geometry": true, "felt:h3_index": 644747139090582170, "STATEFP": 6.0, "PLACEFP": 70322.0, "PLACENS": 2585446.0, "GEOID": 670322.0, "NAME": "Saticoy", "NAMELSAD": "Saticoy CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 968248.0, "AWATER": 796.0, "INTPTLAT": 34.2824692, "INTPTLON": -119.1428442 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1428442, 34.2824692 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1384, "felt:has_geometry": true, "felt:h3_index": 644745455570719085, "STATEFP": 6.0, "PLACEFP": 70336.0, "PLACENS": 2583131.0, "GEOID": 670336.0, "NAME": "Sattley", "NAMELSAD": "Sattley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5302767.0, "AWATER": 4699.0, "INTPTLAT": 39.6299451, "INTPTLON": -120.4372753 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4372753, 39.6299451 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1385, "felt:has_geometry": true, "felt:h3_index": 644718618917114405, "STATEFP": 6.0, "PLACEFP": 70518.0, "PLACENS": 2611446.0, "GEOID": 670518.0, "NAME": "Scotia", "NAMELSAD": "Scotia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1932251.0, "AWATER": 262552.0, "INTPTLAT": 40.4788133, "INTPTLON": -124.1046506 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1046506, 40.4788133 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1386, "felt:has_geometry": true, "felt:h3_index": 644722014906102539, "STATEFP": 6.0, "PLACEFP": 70644.0, "PLACENS": 2583132.0, "GEOID": 670644.0, "NAME": "Seacliff", "NAMELSAD": "Seacliff CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1890210.0, "AWATER": 3151.0, "INTPTLAT": 36.9773441, "INTPTLON": -121.9186148 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9186148, 36.9773441 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1387, "felt:has_geometry": true, "felt:h3_index": 644721805181993804, "STATEFP": 6.0, "PLACEFP": 70712.0, "PLACENS": 2583133.0, "GEOID": 670712.0, "NAME": "Sea Ranch", "NAMELSAD": "Sea Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41742090.0, "AWATER": 277559.0, "INTPTLAT": 38.7252743, "INTPTLON": -123.458314 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.458314, 38.7252743 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1388, "felt:has_geometry": true, "felt:h3_index": 644745201207139566, "STATEFP": 6.0, "PLACEFP": 70728.0, "PLACENS": 2409296.0, "GEOID": 670728.0, "NAME": "Searles Valley", "NAMELSAD": "Searles Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27186893.0, "AWATER": 0.0, "INTPTLAT": 35.7700481, "INTPTLON": -117.3966763 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3966763, 35.7700481 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1389, "felt:has_geometry": true, "felt:h3_index": 644747747354917429, "STATEFP": 6.0, "PLACEFP": 70966.0, "PLACENS": 2585447.0, "GEOID": 670966.0, "NAME": "Sequoia Crest", "NAMELSAD": "Sequoia Crest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646709.0, "AWATER": 0.0, "INTPTLAT": 36.1858823, "INTPTLON": -118.6256351 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6256351, 36.1858823 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1390, "felt:has_geometry": true, "felt:h3_index": 644721853001019636, "STATEFP": 6.0, "PLACEFP": 71000.0, "PLACENS": 2583134.0, "GEOID": 671000.0, "NAME": "Sereno del Mar", "NAMELSAD": "Sereno del Mar CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1909750.0, "AWATER": 0.0, "INTPTLAT": 38.3836712, "INTPTLON": -123.0731482 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.0731482, 38.3836712 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1391, "felt:has_geometry": true, "felt:h3_index": 644747757604606379, "STATEFP": 6.0, "PLACEFP": 71078.0, "PLACENS": 2585448.0, "GEOID": 671078.0, "NAME": "Seville", "NAMELSAD": "Seville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 712368.0, "AWATER": 0.0, "INTPTLAT": 36.4835333, "INTPTLON": -119.2258679 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2258679, 36.4835333 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1392, "felt:has_geometry": true, "felt:h3_index": 644747932226194357, "STATEFP": 6.0, "PLACEFP": 71134.0, "PLACENS": 2408721.0, "GEOID": 671134.0, "NAME": "Shandon", "NAMELSAD": "Shandon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639224.0, "AWATER": 113009.0, "INTPTLAT": 35.6536085, "INTPTLON": -120.3831476 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3831476, 35.6536085 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1393, "felt:has_geometry": true, "felt:h3_index": 644719892593200352, "STATEFP": 6.0, "PLACEFP": 71218.0, "PLACENS": 2583135.0, "GEOID": 671218.0, "NAME": "Shasta", "NAMELSAD": "Shasta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28306682.0, "AWATER": 11513.0, "INTPTLAT": 40.5920212, "INTPTLON": -122.477899 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.477899, 40.5920212 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1394, "felt:has_geometry": true, "felt:h3_index": 644747832495626590, "STATEFP": 6.0, "PLACEFP": 71246.0, "PLACENS": 2408722.0, "GEOID": 671246.0, "NAME": "Shaver Lake", "NAMELSAD": "Shaver Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83623481.0, "AWATER": 5897217.0, "INTPTLAT": 37.0991842, "INTPTLON": -119.3256772 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3256772, 37.0991842 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1395, "felt:has_geometry": true, "felt:h3_index": 644721785849459616, "STATEFP": 6.0, "PLACEFP": 71362.0, "PLACENS": 2583136.0, "GEOID": 671362.0, "NAME": "Shell Ridge", "NAMELSAD": "Shell Ridge CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1114550.0, "AWATER": 0.0, "INTPTLAT": 37.9059194, "INTPTLON": -122.0343985 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0343985, 37.9059194 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1396, "felt:has_geometry": true, "felt:h3_index": 644718856146322332, "STATEFP": 6.0, "PLACEFP": 71372.0, "PLACENS": 2611448.0, "GEOID": 671372.0, "NAME": "Shelter Cove", "NAMELSAD": "Shelter Cove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15098010.0, "AWATER": 0.0, "INTPTLAT": 40.0389543, "INTPTLON": -124.0558247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0558247, 40.0389543 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1397, "felt:has_geometry": true, "felt:h3_index": 644721883050285421, "STATEFP": 6.0, "PLACEFP": 71414.0, "PLACENS": 2583137.0, "GEOID": 671414.0, "NAME": "Sheridan", "NAMELSAD": "Sheridan CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 66129143.0, "AWATER": 15380.0, "INTPTLAT": 38.9731114, "INTPTLON": -121.350946 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.350946, 38.9731114 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1398, "felt:has_geometry": true, "felt:h3_index": 644721874763290228, "STATEFP": 6.0, "PLACEFP": 71554.0, "PLACENS": 2408727.0, "GEOID": 671554.0, "NAME": "Shingle Springs", "NAMELSAD": "Shingle Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21235230.0, "AWATER": 99633.0, "INTPTLAT": 38.6658555, "INTPTLON": -120.9362083 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9362083, 38.6658555 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6.0, "PLACEFP": 71568.0, "PLACENS": 2408728.0, "GEOID": 671568.0, "NAME": "Shingletown", "NAMELSAD": "Shingletown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619.0, "AWATER": 177508.0, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8556646, 40.5060943 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1400, "felt:has_geometry": true, "felt:h3_index": 644745112573895528, "STATEFP": 6.0, "PLACEFP": 71680.0, "PLACENS": 2408733.0, "GEOID": 671680.0, "NAME": "Shoshone", "NAMELSAD": "Shoshone CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 74361294.0, "AWATER": 618.0, "INTPTLAT": 35.9672297, "INTPTLON": -116.3087698 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3087698, 35.9672297 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1401, "felt:has_geometry": true, "felt:h3_index": 644745453979918627, "STATEFP": 6.0, "PLACEFP": 71774.0, "PLACENS": 2583138.0, "GEOID": 671774.0, "NAME": "Sierra Brooks", "NAMELSAD": "Sierra Brooks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3549115.0, "AWATER": 0.0, "INTPTLAT": 39.6425925, "INTPTLON": -120.2153873 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2153873, 39.6425925 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1402, "felt:has_geometry": true, "felt:h3_index": 644719861002316968, "STATEFP": 6.0, "PLACEFP": 71778.0, "PLACENS": 2583139.0, "GEOID": 671778.0, "NAME": "Sierra City", "NAMELSAD": "Sierra City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569937.0, "AWATER": 728.0, "INTPTLAT": 39.5726584, "INTPTLON": -120.6276165 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6276165, 39.5726584 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1403, "felt:has_geometry": true, "felt:h3_index": 644745751414771748, "STATEFP": 6.0, "PLACEFP": 71834.0, "PLACENS": 2583140.0, "GEOID": 671834.0, "NAME": "Sierra Village", "NAMELSAD": "Sierra Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6661587.0, "AWATER": 9750.0, "INTPTLAT": 38.0756273, "INTPTLON": -120.1593364 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1593364, 38.0756273 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1404, "felt:has_geometry": true, "felt:h3_index": 644745455414621025, "STATEFP": 6.0, "PLACEFP": 71848.0, "PLACENS": 2583141.0, "GEOID": 671848.0, "NAME": "Sierraville", "NAMELSAD": "Sierraville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13002077.0, "AWATER": 2127.0, "INTPTLAT": 39.5822318, "INTPTLON": -120.3620651 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3620651, 39.5822318 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1405, "felt:has_geometry": true, "felt:h3_index": 644747071405494698, "STATEFP": 6.0, "PLACEFP": 71918.0, "PLACENS": 2805252.0, "GEOID": 671918.0, "NAME": "Silverado", "NAMELSAD": "Silverado CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14812702.0, "AWATER": 0.0, "INTPTLAT": 33.7481762, "INTPTLON": -117.6284789 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6284789, 33.7481762 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1406, "felt:has_geometry": true, "felt:h3_index": 644721736123308808, "STATEFP": 6.0, "PLACEFP": 71927.0, "PLACENS": 2583142.0, "GEOID": 671927.0, "NAME": "Silverado Resort", "NAMELSAD": "Silverado Resort CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4896980.0, "AWATER": 24818.0, "INTPTLAT": 38.3563023, "INTPTLON": -122.2563343 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2563343, 38.3563023 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1407, "felt:has_geometry": true, "felt:h3_index": 644747747066560809, "STATEFP": 6.0, "PLACEFP": 71932.0, "PLACENS": 2585449.0, "GEOID": 671932.0, "NAME": "Silver City", "NAMELSAD": "Silver City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 302352.0, "AWATER": 0.0, "INTPTLAT": 36.4663058, "INTPTLON": -118.6495083 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6495083, 36.4663058 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1408, "felt:has_geometry": true, "felt:h3_index": 644747264891429038, "STATEFP": 6.0, "PLACEFP": 71964.0, "PLACENS": 2583143.0, "GEOID": 671964.0, "NAME": "Silver Lakes", "NAMELSAD": "Silver Lakes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13552756.0, "AWATER": 1165902.0, "INTPTLAT": 34.7478201, "INTPTLON": -117.3449658 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3449658, 34.7478201 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1409, "felt:has_geometry": true, "felt:h3_index": 644747894884981314, "STATEFP": 6.0, "PLACEFP": 72086.0, "PLACENS": 2583144.0, "GEOID": 672086.0, "NAME": "Sisquoc", "NAMELSAD": "Sisquoc CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5775123.0, "AWATER": 10614.0, "INTPTLAT": 34.8618175, "INTPTLON": -120.2943946 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2943946, 34.8618175 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1410, "felt:has_geometry": true, "felt:h3_index": 644747446444233025, "STATEFP": 6.0, "PLACEFP": 72156.0, "PLACENS": 2583145.0, "GEOID": 672156.0, "NAME": "Sky Valley", "NAMELSAD": "Sky Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 62985642.0, "AWATER": 0.0, "INTPTLAT": 33.8912372, "INTPTLON": -116.3550396 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3550396, 33.8912372 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1411, "felt:has_geometry": true, "felt:h3_index": 644721782789637968, "STATEFP": 6.0, "PLACEFP": 72184.0, "PLACENS": 2628818.0, "GEOID": 672184.0, "NAME": "Sleepy Hollow", "NAMELSAD": "Sleepy Hollow CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7680833.0, "AWATER": 0.0, "INTPTLAT": 38.0120393, "INTPTLON": -122.5876857 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5876857, 38.0120393 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1412, "felt:has_geometry": true, "felt:h3_index": 644721881599191398, "STATEFP": 6.0, "PLACEFP": 72282.0, "PLACENS": 2628789.0, "GEOID": 672282.0, "NAME": "Smartsville", "NAMELSAD": "Smartsville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1856958.0, "AWATER": 0.0, "INTPTLAT": 39.2052729, "INTPTLON": -121.2929161 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2929161, 39.2052729 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1413, "felt:has_geometry": true, "felt:h3_index": 644747874820953291, "STATEFP": 6.0, "PLACEFP": 72338.0, "PLACENS": 2629764.0, "GEOID": 672338.0, "NAME": "Smith Corner", "NAMELSAD": "Smith Corner CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 568644.0, "AWATER": 0.0, "INTPTLAT": 35.478831, "INTPTLON": -119.2771226 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2771226, 35.478831 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1414, "felt:has_geometry": true, "felt:h3_index": 644720404921656548, "STATEFP": 6.0, "PLACEFP": 72380.0, "PLACENS": 2611450.0, "GEOID": 672380.0, "NAME": "Smith River", "NAMELSAD": "Smith River CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11461740.0, "AWATER": 38079.0, "INTPTLAT": 41.923802, "INTPTLON": -124.1478252 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.1478252, 41.923802 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1415, "felt:has_geometry": true, "felt:h3_index": 644722198705800913, "STATEFP": 6.0, "PLACEFP": 72408.0, "PLACENS": 2583146.0, "GEOID": 672408.0, "NAME": "Snelling", "NAMELSAD": "Snelling CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399517.0, "AWATER": 13317.0, "INTPTLAT": 37.5244504, "INTPTLON": -120.436319 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.436319, 37.5244504 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1416, "felt:has_geometry": true, "felt:h3_index": 644721986105613489, "STATEFP": 6.0, "PLACEFP": 72478.0, "PLACENS": 2583147.0, "GEOID": 672478.0, "NAME": "Soda Bay", "NAMELSAD": "Soda Bay CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3327990.0, "AWATER": 0.0, "INTPTLAT": 39.0024314, "INTPTLON": -122.779476 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.779476, 39.0024314 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1417, "felt:has_geometry": true, "felt:h3_index": 644745484573366443, "STATEFP": 6.0, "PLACEFP": 72492.0, "PLACENS": 2628790.0, "GEOID": 672492.0, "NAME": "Soda Springs", "NAMELSAD": "Soda Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 872163.0, "AWATER": 0.0, "INTPTLAT": 39.3247879, "INTPTLON": -120.3786654 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3786654, 39.3247879 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1418, "felt:has_geometry": true, "felt:h3_index": 644747137630910901, "STATEFP": 6.0, "PLACEFP": 72632.0, "PLACENS": 2807036.0, "GEOID": 672632.0, "NAME": "Somis", "NAMELSAD": "Somis CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8683406.0, "AWATER": 0.0, "INTPTLAT": 34.2652625, "INTPTLON": -118.9984062 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9984062, 34.2652625 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1419, "felt:has_geometry": true, "felt:h3_index": 644721747467622673, "STATEFP": 6.0, "PLACEFP": 72654.0, "PLACENS": 2805261.0, "GEOID": 672654.0, "NAME": "Sonoma State University", "NAMELSAD": "Sonoma State University CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1081020.0, "AWATER": 0.0, "INTPTLAT": 38.3405648, "INTPTLON": -122.6728841 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6728841, 38.3405648 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1420, "felt:has_geometry": true, "felt:h3_index": 644722014844011915, "STATEFP": 6.0, "PLACEFP": 72688.0, "PLACENS": 2408757.0, "GEOID": 672688.0, "NAME": "Soquel", "NAMELSAD": "Soquel CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11905335.0, "AWATER": 0.0, "INTPTLAT": 36.9977624, "INTPTLON": -121.9482484 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9482484, 36.9977624 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1421, "felt:has_geometry": true, "felt:h3_index": 644722164767589404, "STATEFP": 6.0, "PLACEFP": 72772.0, "PLACENS": 2408758.0, "GEOID": 672772.0, "NAME": "Soulsbyville", "NAMELSAD": "Soulsbyville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7796211.0, "AWATER": 15737.0, "INTPTLAT": 37.9912891, "INTPTLON": -120.2627906 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2627906, 37.9912891 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1422, "felt:has_geometry": true, "felt:h3_index": 644747672872620166, "STATEFP": 6.0, "PLACEFP": 72954.0, "PLACENS": 2408762.0, "GEOID": 672954.0, "NAME": "South Dos Palos", "NAMELSAD": "South Dos Palos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3984072.0, "AWATER": 0.0, "INTPTLAT": 36.9707011, "INTPTLON": -120.6467311 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6467311, 36.9707011 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1423, "felt:has_geometry": true, "felt:h3_index": 644747148885649816, "STATEFP": 6.0, "PLACEFP": 73167.0, "PLACENS": 2629294.0, "GEOID": 673167.0, "NAME": "South Monrovia Island", "NAMELSAD": "South Monrovia Island CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1419511.0, "AWATER": 0.0, "INTPTLAT": 34.123421, "INTPTLON": -117.9958636 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9958636, 34.123421 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1424, "felt:has_geometry": true, "felt:h3_index": 644721958277101257, "STATEFP": 6.0, "PLACEFP": 73178.0, "PLACENS": 2408768.0, "GEOID": 673178.0, "NAME": "South Oroville", "NAMELSAD": "South Oroville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6825496.0, "AWATER": 0.0, "INTPTLAT": 39.4765534, "INTPTLON": -121.5438776 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5438776, 39.4765534 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1425, "felt:has_geometry": true, "felt:h3_index": 644747146064096371, "STATEFP": 6.0, "PLACEFP": 73276.0, "PLACENS": 2408771.0, "GEOID": 673276.0, "NAME": "South San Gabriel", "NAMELSAD": "South San Gabriel CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2160330.0, "AWATER": 685.0, "INTPTLAT": 34.0477943, "INTPTLON": -118.095678 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.095678, 34.0477943 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1426, "felt:has_geometry": true, "felt:h3_index": 644747065884993810, "STATEFP": 6.0, "PLACEFP": 73290.0, "PLACENS": 2408772.0, "GEOID": 673290.0, "NAME": "South San Jose Hills", "NAMELSAD": "South San Jose Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3878864.0, "AWATER": 0.0, "INTPTLAT": 34.0123323, "INTPTLON": -117.9043633 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9043633, 34.0123323 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1427, "felt:has_geometry": true, "felt:h3_index": 644747848723154774, "STATEFP": 6.0, "PLACEFP": 73388.0, "PLACENS": 2408774.0, "GEOID": 673388.0, "NAME": "South Taft", "NAMELSAD": "South Taft CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2786790.0, "AWATER": 0.0, "INTPTLAT": 35.1293084, "INTPTLON": -119.4575004 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4575004, 35.1293084 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1428, "felt:has_geometry": true, "felt:h3_index": 644747066239355906, "STATEFP": 6.0, "PLACEFP": 73430.0, "PLACENS": 2408778.0, "GEOID": 673430.0, "NAME": "South Whittier", "NAMELSAD": "South Whittier CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13824727.0, "AWATER": 22815.0, "INTPTLAT": 33.9330802, "INTPTLON": -118.0307712 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0307712, 33.9330802 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1429, "felt:has_geometry": true, "felt:h3_index": 644719585765267051, "STATEFP": 6.0, "PLACEFP": 73554.0, "PLACENS": 2583148.0, "GEOID": 673554.0, "NAME": "Spaulding", "NAMELSAD": "Spaulding CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8621924.0, "AWATER": 0.0, "INTPTLAT": 40.6556642, "INTPTLON": -120.7862597 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7862597, 40.6556642 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1430, "felt:has_geometry": true, "felt:h3_index": 644747684091471524, "STATEFP": 6.0, "PLACEFP": 73612.0, "PLACENS": 2408789.0, "GEOID": 673612.0, "NAME": "Spreckels", "NAMELSAD": "Spreckels CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 316377.0, "AWATER": 0.0, "INTPTLAT": 36.6247156, "INTPTLON": -121.646487 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.646487, 36.6247156 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1431, "felt:has_geometry": true, "felt:h3_index": 644719831833414045, "STATEFP": 6.0, "PLACEFP": 73654.0, "PLACENS": 2408792.0, "GEOID": 673654.0, "NAME": "Spring Garden", "NAMELSAD": "Spring Garden CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1692573.0, "AWATER": 0.0, "INTPTLAT": 39.891971, "INTPTLON": -120.7866168 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7866168, 39.891971 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1432, "felt:has_geometry": true, "felt:h3_index": 644721988312697257, "STATEFP": 6.0, "PLACEFP": 73690.0, "PLACENS": 2583149.0, "GEOID": 673690.0, "NAME": "Spring Valley", "NAMELSAD": "Spring Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12780930.0, "AWATER": 102405.0, "INTPTLAT": 39.0760533, "INTPTLON": -122.5845123 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5845123, 39.0760533 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1433, "felt:has_geometry": true, "felt:h3_index": 644747048544577545, "STATEFP": 6.0, "PLACEFP": 73700.0, "PLACENS": 2583150.0, "GEOID": 673700.0, "NAME": "Spring Valley Lake", "NAMELSAD": "Spring Valley Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7833090.0, "AWATER": 885216.0, "INTPTLAT": 34.4968183, "INTPTLON": -117.267587 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.267587, 34.4968183 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1434, "felt:has_geometry": true, "felt:h3_index": 644747995392888155, "STATEFP": 6.0, "PLACEFP": 73710.0, "PLACENS": 2408798.0, "GEOID": 673710.0, "NAME": "Springville", "NAMELSAD": "Springville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3933608.0, "AWATER": 35439.0, "INTPTLAT": 36.1208672, "INTPTLON": -118.822825 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.822825, 36.1208672 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1435, "felt:has_geometry": true, "felt:h3_index": 644747752687112604, "STATEFP": 6.0, "PLACEFP": 73794.0, "PLACENS": 2408799.0, "GEOID": 673794.0, "NAME": "Squaw Valley", "NAMELSAD": "Squaw Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 164758384.0, "AWATER": 142813.0, "INTPTLAT": 36.719141, "INTPTLON": -119.2026773 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2026773, 36.719141 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1436, "felt:has_geometry": true, "felt:h3_index": 644747983878400802, "STATEFP": 6.0, "PLACEFP": 73815.0, "PLACENS": 2408800.0, "GEOID": 673815.0, "NAME": "Squirrel Mountain Valley", "NAMELSAD": "Squirrel Mountain Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4663884.0, "AWATER": 0.0, "INTPTLAT": 35.6175244, "INTPTLON": -118.4046684 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4046684, 35.6175244 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1437, "felt:has_geometry": true, "felt:h3_index": 644748022420525610, "STATEFP": 6.0, "PLACEFP": 73868.0, "PLACENS": 2408801.0, "GEOID": 673868.0, "NAME": "Stallion Springs", "NAMELSAD": "Stallion Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35163160.0, "AWATER": 63046.0, "INTPTLAT": 35.0920157, "INTPTLON": -118.6576491 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6576491, 35.0920157 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1438, "felt:has_geometry": true, "felt:h3_index": 644722038728870165, "STATEFP": 6.0, "PLACEFP": 73906.0, "PLACENS": 2409994.0, "GEOID": 673906.0, "NAME": "Stanford", "NAMELSAD": "Stanford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7123691.0, "AWATER": 117653.0, "INTPTLAT": 37.4269331, "INTPTLON": -122.1677411 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1677411, 37.4269331 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1439, "felt:has_geometry": true, "felt:h3_index": 644747878718695588, "STATEFP": 6.0, "PLACEFP": 74021.0, "PLACENS": 2804431.0, "GEOID": 674021.0, "NAME": "Stebbins", "NAMELSAD": "Stebbins CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2588072.0, "AWATER": 0.0, "INTPTLAT": 35.4056497, "INTPTLON": -119.3141782 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3141782, 35.4056497 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1440, "felt:has_geometry": true, "felt:h3_index": 644747096375322634, "STATEFP": 6.0, "PLACEFP": 74130.0, "PLACENS": 2583151.0, "GEOID": 674130.0, "NAME": "Stevenson Ranch", "NAMELSAD": "Stevenson Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16607592.0, "AWATER": 2399.0, "INTPTLAT": 34.38772, "INTPTLON": -118.5843591 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.5843591, 34.38772 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1441, "felt:has_geometry": true, "felt:h3_index": 644722202595558940, "STATEFP": 6.0, "PLACEFP": 74144.0, "PLACENS": 2583152.0, "GEOID": 674144.0, "NAME": "Stevinson", "NAMELSAD": "Stevinson CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2927390.0, "AWATER": 0.0, "INTPTLAT": 37.3246643, "INTPTLON": -120.8496641 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8496641, 37.3246643 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1442, "felt:has_geometry": true, "felt:h3_index": 644721780791206956, "STATEFP": 6.0, "PLACEFP": 74172.0, "PLACENS": 2410001.0, "GEOID": 674172.0, "NAME": "Stinson Beach", "NAMELSAD": "Stinson Beach CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2311064.0, "AWATER": 0.0, "INTPTLAT": 37.902485, "INTPTLON": -122.6501156 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6501156, 37.902485 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1443, "felt:has_geometry": true, "felt:h3_index": 644719855523273364, "STATEFP": 6.0, "PLACEFP": 74186.0, "PLACENS": 2612488.0, "GEOID": 674186.0, "NAME": "Stirling City", "NAMELSAD": "Stirling City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3048650.0, "AWATER": 2150.0, "INTPTLAT": 39.9049706, "INTPTLON": -121.5372635 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5372635, 39.9049706 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6.0, "PLACEFP": 75122.0, "PLACENS": 2805901.0, "GEOID": 675122.0, "NAME": "Stones Landing", "NAMELSAD": "Stones Landing CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204.0, "AWATER": 0.0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7346283, 40.6915486 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1445, "felt:has_geometry": true, "felt:h3_index": 644721952581245840, "STATEFP": 6.0, "PLACEFP": 75154.0, "PLACENS": 2583153.0, "GEOID": 675154.0, "NAME": "Stonyford", "NAMELSAD": "Stonyford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3636119.0, "AWATER": 0.0, "INTPTLAT": 39.3694918, "INTPTLON": -122.5438083 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5438083, 39.3694918 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1446, "felt:has_geometry": true, "felt:h3_index": 644747573154620105, "STATEFP": 6.0, "PLACEFP": 75252.0, "PLACENS": 2410009.0, "GEOID": 675252.0, "NAME": "Stratford", "NAMELSAD": "Stratford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805595.0, "AWATER": 0.0, "INTPTLAT": 36.1884644, "INTPTLON": -119.8222466 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8222466, 36.1884644 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1447, "felt:has_geometry": true, "felt:h3_index": 644747595521508660, "STATEFP": 6.0, "PLACEFP": 75280.0, "PLACENS": 2410010.0, "GEOID": 675280.0, "NAME": "Strathmore", "NAMELSAD": "Strathmore CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3655054.0, "AWATER": 0.0, "INTPTLAT": 36.1461167, "INTPTLON": -119.064341 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.064341, 36.1461167 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1448, "felt:has_geometry": true, "felt:h3_index": 644721768605180544, "STATEFP": 6.0, "PLACEFP": 75315.0, "PLACENS": 2410013.0, "GEOID": 675315.0, "NAME": "Strawberry", "NAMELSAD": "Strawberry CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3445619.0, "AWATER": 1506465.0, "INTPTLAT": 37.8912497, "INTPTLON": -122.5091657 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5091657, 37.8912497 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1449, "felt:has_geometry": true, "felt:h3_index": 644745765491435668, "STATEFP": 6.0, "PLACEFP": 75322.0, "PLACENS": 2628792.0, "GEOID": 675322.0, "NAME": "Strawberry", "NAMELSAD": "Strawberry CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1350627.0, "AWATER": 21432.0, "INTPTLAT": 38.198384, "INTPTLON": -120.0103432 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0103432, 38.198384 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1450, "felt:has_geometry": true, "felt:h3_index": 644747999393235232, "STATEFP": 6.0, "PLACEFP": 75592.0, "PLACENS": 2585451.0, "GEOID": 675592.0, "NAME": "Sugarloaf Saw Mill", "NAMELSAD": "Sugarloaf Saw Mill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 252263.0, "AWATER": 0.0, "INTPTLAT": 35.8342994, "INTPTLON": -118.6165411 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6165411, 35.8342994 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1451, "felt:has_geometry": true, "felt:h3_index": 644747999395879349, "STATEFP": 6.0, "PLACEFP": 75596.0, "PLACENS": 2585452.0, "GEOID": 675596.0, "NAME": "Sugarloaf Village", "NAMELSAD": "Sugarloaf Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 173648.0, "AWATER": 0.0, "INTPTLAT": 35.8268512, "INTPTLON": -118.6354473 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6354473, 35.8268512 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1452, "felt:has_geometry": true, "felt:h3_index": 644747603887851874, "STATEFP": 6.0, "PLACEFP": 75672.0, "PLACENS": 2585453.0, "GEOID": 675672.0, "NAME": "Sultana", "NAMELSAD": "Sultana CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 972824.0, "AWATER": 0.0, "INTPTLAT": 36.5455109, "INTPTLON": -119.3377357 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3377357, 36.5455109 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1453, "felt:has_geometry": true, "felt:h3_index": 644737290639399523, "STATEFP": 6.0, "PLACEFP": 75714.0, "PLACENS": 2410016.0, "GEOID": 675714.0, "NAME": "Summerland", "NAMELSAD": "Summerland CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3618069.0, "AWATER": 15510365.0, "INTPTLAT": 34.4171823, "INTPTLON": -119.5874939 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5874939, 34.4171823 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1454, "felt:has_geometry": true, "felt:h3_index": 644747818749805856, "STATEFP": 6.0, "PLACEFP": 75994.0, "PLACENS": 2583154.0, "GEOID": 675994.0, "NAME": "Sunnyside", "NAMELSAD": "Sunnyside CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4954935.0, "AWATER": 0.0, "INTPTLAT": 36.7294192, "INTPTLON": -119.6945052 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6945052, 36.7294192 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1455, "felt:has_geometry": true, "felt:h3_index": 644745476582229400, "STATEFP": 6.0, "PLACEFP": 76015.0, "PLACENS": 2410030.0, "GEOID": 676015.0, "NAME": "Sunnyside-Tahoe City", "NAMELSAD": "Sunnyside-Tahoe City CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9016274.0, "AWATER": 858519.0, "INTPTLAT": 39.1483181, "INTPTLON": -120.1709376 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1709376, 39.1483181 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1456, "felt:has_geometry": true, "felt:h3_index": 644745685225301418, "STATEFP": 6.0, "PLACEFP": 76040.0, "PLACENS": 2583155.0, "GEOID": 676040.0, "NAME": "Sunny Slopes", "NAMELSAD": "Sunny Slopes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4879001.0, "AWATER": 0.0, "INTPTLAT": 37.5693764, "INTPTLON": -118.6758364 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6758364, 37.5693764 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1457, "felt:has_geometry": true, "felt:h3_index": 644722036202290506, "STATEFP": 6.0, "PLACEFP": 77042.0, "PLACENS": 2410033.0, "GEOID": 677042.0, "NAME": "Sunol", "NAMELSAD": "Sunol CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73192610.0, "AWATER": 864654.0, "INTPTLAT": 37.5859346, "INTPTLON": -121.8804556 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8804556, 37.5859346 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1458, "felt:has_geometry": true, "felt:h3_index": 644747107957582123, "STATEFP": 6.0, "PLACEFP": 77308.0, "PLACENS": 2583157.0, "GEOID": 677308.0, "NAME": "Sun Village", "NAMELSAD": "Sun Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27981975.0, "AWATER": 1222.0, "INTPTLAT": 34.5595244, "INTPTLON": -117.9567582 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9567582, 34.5595244 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1459, "felt:has_geometry": true, "felt:h3_index": 644721960940881587, "STATEFP": 6.0, "PLACEFP": 77378.0, "PLACENS": 2410039.0, "GEOID": 677378.0, "NAME": "Sutter", "NAMELSAD": "Sutter CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7835375.0, "AWATER": 0.0, "INTPTLAT": 39.1555962, "INTPTLON": -121.7492647 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7492647, 39.1555962 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1460, "felt:has_geometry": true, "felt:h3_index": 644745681934942805, "STATEFP": 6.0, "PLACEFP": 77430.0, "PLACENS": 2583158.0, "GEOID": 677430.0, "NAME": "Swall Meadows", "NAMELSAD": "Swall Meadows CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11555635.0, "AWATER": 0.0, "INTPTLAT": 37.5060596, "INTPTLON": -118.6426564 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6426564, 37.5060596 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1461, "felt:has_geometry": true, "felt:h3_index": 644747848720660534, "STATEFP": 6.0, "PLACEFP": 77588.0, "PLACENS": 2410047.0, "GEOID": 677588.0, "NAME": "Taft Heights", "NAMELSAD": "Taft Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 766308.0, "AWATER": 0.0, "INTPTLAT": 35.1337502, "INTPTLON": -119.4711401 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4711401, 35.1337502 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1462, "felt:has_geometry": true, "felt:h3_index": 644722158308899910, "STATEFP": 6.0, "PLACEFP": 77595.0, "PLACENS": 2410048.0, "GEOID": 677595.0, "NAME": "Taft Mosswood", "NAMELSAD": "Taft Mosswood CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1205538.0, "AWATER": 33968.0, "INTPTLAT": 37.9119543, "INTPTLON": -121.282166 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.282166, 37.9119543 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1463, "felt:has_geometry": true, "felt:h3_index": 644745478653642602, "STATEFP": 6.0, "PLACEFP": 77700.0, "PLACENS": 2410050.0, "GEOID": 677700.0, "NAME": "Tahoe Vista", "NAMELSAD": "Tahoe Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7033550.0, "AWATER": 359834.0, "INTPTLAT": 39.2467999, "INTPTLON": -120.058578 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.058578, 39.2467999 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1464, "felt:has_geometry": true, "felt:h3_index": 644745476924158866, "STATEFP": 6.0, "PLACEFP": 77728.0, "PLACENS": 2628793.0, "GEOID": 677728.0, "NAME": "Tahoma", "NAMELSAD": "Tahoma CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6717203.0, "AWATER": 529924.0, "INTPTLAT": 39.0582449, "INTPTLON": -120.1420674 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1420674, 39.0582449 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1465, "felt:has_geometry": true, "felt:h3_index": 644721830036626646, "STATEFP": 6.0, "PLACEFP": 77784.0, "PLACENS": 2410053.0, "GEOID": 677784.0, "NAME": "Talmage", "NAMELSAD": "Talmage CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4117638.0, "AWATER": 4089.0, "INTPTLAT": 39.131198, "INTPTLON": -123.1638376 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.1638376, 39.131198 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1466, "felt:has_geometry": true, "felt:h3_index": 644721768373348147, "STATEFP": 6.0, "PLACEFP": 77805.0, "PLACENS": 2410054.0, "GEOID": 677805.0, "NAME": "Tamalpais-Homestead Valley", "NAMELSAD": "Tamalpais-Homestead Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12135246.0, "AWATER": 159394.0, "INTPTLAT": 37.8791291, "INTPTLON": -122.5378885 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5378885, 37.8791291 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1467, "felt:has_geometry": true, "felt:h3_index": 644721980558279433, "STATEFP": 6.0, "PLACEFP": 77860.0, "PLACENS": 2805253.0, "GEOID": 677860.0, "NAME": "Tancred", "NAMELSAD": "Tancred CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4172360.0, "AWATER": 0.0, "INTPTLAT": 38.7618592, "INTPTLON": -122.1546958 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.1546958, 38.7618592 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1468, "felt:has_geometry": true, "felt:h3_index": 644721770786351401, "STATEFP": 6.0, "PLACEFP": 77924.0, "PLACENS": 2410059.0, "GEOID": 677924.0, "NAME": "Tara Hills", "NAMELSAD": "Tara Hills CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1727037.0, "AWATER": 0.0, "INTPTLAT": 37.9938448, "INTPTLON": -122.3187814 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.3187814, 37.9938448 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1469, "felt:has_geometry": true, "felt:h3_index": 644748033572608050, "STATEFP": 6.0, "PLACEFP": 77934.0, "PLACENS": 2804432.0, "GEOID": 677934.0, "NAME": "Tarina", "NAMELSAD": "Tarina CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11542573.0, "AWATER": 0.0, "INTPTLAT": 35.3807004, "INTPTLON": -118.8170881 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8170881, 35.3807004 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1470, "felt:has_geometry": true, "felt:h3_index": 644747818230253200, "STATEFP": 6.0, "PLACEFP": 77960.0, "PLACENS": 2583159.0, "GEOID": 677960.0, "NAME": "Tarpey Village", "NAMELSAD": "Tarpey Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2043494.0, "AWATER": 0.0, "INTPTLAT": 36.7940453, "INTPTLON": -119.7011976 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7011976, 36.7940453 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1471, "felt:has_geometry": true, "felt:h3_index": 644719811138119438, "STATEFP": 6.0, "PLACEFP": 78008.0, "PLACENS": 2410061.0, "GEOID": 678008.0, "NAME": "Taylorsville", "NAMELSAD": "Taylorsville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8409829.0, "AWATER": 0.0, "INTPTLAT": 40.0586616, "INTPTLON": -120.8386751 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.8386751, 40.0586616 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1472, "felt:has_geometry": true, "felt:h3_index": 644745098859169157, "STATEFP": 6.0, "PLACEFP": 78050.0, "PLACENS": 2410062.0, "GEOID": 678050.0, "NAME": "Tecopa", "NAMELSAD": "Tecopa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48145645.0, "AWATER": 177237.0, "INTPTLAT": 35.8205806, "INTPTLON": -116.2050514 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2050514, 35.8205806 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1473, "felt:has_geometry": true, "felt:h3_index": 644721746449361440, "STATEFP": 6.0, "PLACEFP": 78126.0, "PLACENS": 2410064.0, "GEOID": 678126.0, "NAME": "Temelec", "NAMELSAD": "Temelec CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4112404.0, "AWATER": 0.0, "INTPTLAT": 38.257755, "INTPTLON": -122.498198 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.498198, 38.257755 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1474, "felt:has_geometry": true, "felt:h3_index": 644747059181708180, "STATEFP": 6.0, "PLACEFP": 78138.0, "PLACENS": 2629134.0, "GEOID": 678138.0, "NAME": "Temescal Valley", "NAMELSAD": "Temescal Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50080852.0, "AWATER": 92242.0, "INTPTLAT": 33.7580032, "INTPTLON": -117.4671588 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.4671588, 33.7580032 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1475, "felt:has_geometry": true, "felt:h3_index": 644747917556128365, "STATEFP": 6.0, "PLACEFP": 78162.0, "PLACENS": 2410065.0, "GEOID": 678162.0, "NAME": "Templeton", "NAMELSAD": "Templeton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20484546.0, "AWATER": 0.0, "INTPTLAT": 35.5560235, "INTPTLON": -120.7181665 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7181665, 35.5560235 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6.0, "PLACEFP": 78176.0, "PLACENS": 2410067.0, "GEOID": 678176.0, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560.0, "AWATER": 1194.0, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9174644, 41.5788841 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1477, "felt:has_geometry": true, "felt:h3_index": 644722154726546531, "STATEFP": 6.0, "PLACEFP": 78232.0, "PLACENS": 2628794.0, "GEOID": 678232.0, "NAME": "Terminous", "NAMELSAD": "Terminous CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2531348.0, "AWATER": 0.0, "INTPTLAT": 38.1152563, "INTPTLON": -121.4895583 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4895583, 38.1152563 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1478, "felt:has_geometry": true, "felt:h3_index": 644747993753774225, "STATEFP": 6.0, "PLACEFP": 78288.0, "PLACENS": 2410068.0, "GEOID": 678288.0, "NAME": "Terra Bella", "NAMELSAD": "Terra Bella CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5668357.0, "AWATER": 0.0, "INTPTLAT": 35.9600114, "INTPTLON": -119.0385283 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0385283, 35.9600114 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1479, "felt:has_geometry": true, "felt:h3_index": 644747626851345653, "STATEFP": 6.0, "PLACEFP": 78336.0, "PLACENS": 2585460.0, "GEOID": 678336.0, "NAME": "Teviston", "NAMELSAD": "Teviston CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5657720.0, "AWATER": 0.0, "INTPTLAT": 35.9288721, "INTPTLON": -119.2783324 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2783324, 35.9288721 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1480, "felt:has_geometry": true, "felt:h3_index": 644747437216367403, "STATEFP": 6.0, "PLACEFP": 78456.0, "PLACENS": 2583161.0, "GEOID": 678456.0, "NAME": "Thermal", "NAMELSAD": "Thermal CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24307854.0, "AWATER": 0.0, "INTPTLAT": 33.6261951, "INTPTLON": -116.1308336 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.1308336, 33.6261951 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1481, "felt:has_geometry": true, "felt:h3_index": 644721958419747496, "STATEFP": 6.0, "PLACEFP": 78470.0, "PLACENS": 2410077.0, "GEOID": 678470.0, "NAME": "Thermalito", "NAMELSAD": "Thermalito CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32857219.0, "AWATER": 434050.0, "INTPTLAT": 39.508933, "INTPTLON": -121.6011162 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.6011162, 39.508933 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1482, "felt:has_geometry": true, "felt:h3_index": 644747442812498717, "STATEFP": 6.0, "PLACEFP": 78596.0, "PLACENS": 2409313.0, "GEOID": 678596.0, "NAME": "Thousand Palms", "NAMELSAD": "Thousand Palms CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61175435.0, "AWATER": 0.0, "INTPTLAT": 33.8150058, "INTPTLON": -116.3544809 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.3544809, 33.8150058 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1483, "felt:has_geometry": true, "felt:h3_index": 644747662055020099, "STATEFP": 6.0, "PLACEFP": 78652.0, "PLACENS": 2583162.0, "GEOID": 678652.0, "NAME": "Three Rocks", "NAMELSAD": "Three Rocks CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1941449.0, "AWATER": 0.0, "INTPTLAT": 36.5051483, "INTPTLON": -120.3935343 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3935343, 36.5051483 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1484, "felt:has_geometry": true, "felt:h3_index": 644721807929263001, "STATEFP": 6.0, "PLACEFP": 78715.0, "PLACENS": 2583163.0, "GEOID": 678715.0, "NAME": "Timber Cove", "NAMELSAD": "Timber Cove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14637533.0, "AWATER": 0.0, "INTPTLAT": 38.5410889, "INTPTLON": -123.258786 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.258786, 38.5410889 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1485, "felt:has_geometry": true, "felt:h3_index": 644747626384819344, "STATEFP": 6.0, "PLACEFP": 78750.0, "PLACENS": 2409325.0, "GEOID": 678750.0, "NAME": "Tipton", "NAMELSAD": "Tipton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4471210.0, "AWATER": 0.0, "INTPTLAT": 36.0572328, "INTPTLON": -119.3135247 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3135247, 36.0572328 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1486, "felt:has_geometry": true, "felt:h3_index": 644719810400699058, "STATEFP": 6.0, "PLACEFP": 78792.0, "PLACENS": 2409326.0, "GEOID": 678792.0, "NAME": "Tobin", "NAMELSAD": "Tobin CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13367665.0, "AWATER": 0.0, "INTPTLAT": 39.9357979, "INTPTLON": -121.2964913 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2964913, 39.9357979 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1487, "felt:has_geometry": true, "felt:h3_index": 644721859974432546, "STATEFP": 6.0, "PLACEFP": 78890.0, "PLACENS": 2409330.0, "GEOID": 678890.0, "NAME": "Tomales", "NAMELSAD": "Tomales CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 859286.0, "AWATER": 0.0, "INTPTLAT": 38.2470303, "INTPTLON": -122.9053554 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9053554, 38.2470303 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1488, "felt:has_geometry": true, "felt:h3_index": 644747588676380354, "STATEFP": 6.0, "PLACEFP": 78932.0, "PLACENS": 2585461.0, "GEOID": 678932.0, "NAME": "Tonyville", "NAMELSAD": "Tonyville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 130784.0, "AWATER": 0.0, "INTPTLAT": 36.247382, "INTPTLON": -119.0903523 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.0903523, 36.247382 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1489, "felt:has_geometry": true, "felt:h3_index": 644747588902402793, "STATEFP": 6.0, "PLACEFP": 78949.0, "PLACENS": 2585462.0, "GEOID": 678949.0, "NAME": "Tooleville", "NAMELSAD": "Tooleville CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 172928.0, "AWATER": 0.0, "INTPTLAT": 36.2877535, "INTPTLON": -119.115435 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.115435, 36.2877535 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1490, "felt:has_geometry": true, "felt:h3_index": 644747124543605603, "STATEFP": 6.0, "PLACEFP": 78960.0, "PLACENS": 2583164.0, "GEOID": 678960.0, "NAME": "Topanga", "NAMELSAD": "Topanga CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49538336.0, "AWATER": 19528.0, "INTPTLAT": 34.0967768, "INTPTLON": -118.6060209 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6060209, 34.0967768 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1491, "felt:has_geometry": true, "felt:h3_index": 644745748747336713, "STATEFP": 6.0, "PLACEFP": 79030.0, "PLACENS": 2583165.0, "GEOID": 679030.0, "NAME": "Topaz", "NAMELSAD": "Topaz CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31537286.0, "AWATER": 3359715.0, "INTPTLAT": 38.6380591, "INTPTLON": -119.5018074 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5018074, 38.6380591 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1492, "felt:has_geometry": true, "felt:h3_index": 644737293052450956, "STATEFP": 6.0, "PLACEFP": 79529.0, "PLACENS": 2409337.0, "GEOID": 679529.0, "NAME": "Toro Canyon", "NAMELSAD": "Toro Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24312959.0, "AWATER": 11403119.0, "INTPTLAT": 34.423004, "INTPTLON": -119.5607287 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5607287, 34.423004 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1493, "felt:has_geometry": true, "felt:h3_index": 644747057388603443, "STATEFP": 6.0, "PLACEFP": 80210.0, "PLACENS": 2812660.0, "GEOID": 680210.0, "NAME": "Trabuco Canyon", "NAMELSAD": "Trabuco Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18861606.0, "AWATER": 0.0, "INTPTLAT": 33.6782283, "INTPTLON": -117.5940094 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.5940094, 33.6782283 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1494, "felt:has_geometry": true, "felt:h3_index": 644747663648924314, "STATEFP": 6.0, "PLACEFP": 80266.0, "PLACENS": 2409347.0, "GEOID": 680266.0, "NAME": "Tranquillity", "NAMELSAD": "Tranquillity CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1599152.0, "AWATER": 0.0, "INTPTLAT": 36.6480071, "INTPTLON": -120.2525415 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2525415, 36.6480071 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1495, "felt:has_geometry": true, "felt:h3_index": 644747601725891606, "STATEFP": 6.0, "PLACEFP": 80280.0, "PLACENS": 2409348.0, "GEOID": 680280.0, "NAME": "Traver", "NAMELSAD": "Traver CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1735180.0, "AWATER": 0.0, "INTPTLAT": 36.4541114, "INTPTLON": -119.4837296 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4837296, 36.4541114 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1496, "felt:has_geometry": true, "felt:h3_index": 644747653026284737, "STATEFP": 6.0, "PLACEFP": 80364.0, "PLACENS": 2583166.0, "GEOID": 680364.0, "NAME": "Tres Pinos", "NAMELSAD": "Tres Pinos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9327895.0, "AWATER": 0.0, "INTPTLAT": 36.7903815, "INTPTLON": -121.3105643 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3105643, 36.7903815 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1497, "felt:has_geometry": true, "felt:h3_index": 644719642529950797, "STATEFP": 6.0, "PLACEFP": 80476.0, "PLACENS": 2583167.0, "GEOID": 680476.0, "NAME": "Trinity Center", "NAMELSAD": "Trinity Center CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13547616.0, "AWATER": 0.0, "INTPTLAT": 40.9840636, "INTPTLON": -122.7083246 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.7083246, 40.9840636 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1498, "felt:has_geometry": true, "felt:h3_index": 644718575734532462, "STATEFP": 6.0, "PLACEFP": 80483.0, "PLACENS": 2611452.0, "GEOID": 680483.0, "NAME": "Trinity Village", "NAMELSAD": "Trinity Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10394620.0, "AWATER": 0.0, "INTPTLAT": 40.8789159, "INTPTLON": -123.5132075 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.5132075, 40.8789159 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1499, "felt:has_geometry": true, "felt:h3_index": 644745206988314867, "STATEFP": 6.0, "PLACEFP": 80515.0, "PLACENS": 2583168.0, "GEOID": 680515.0, "NAME": "Trona", "NAMELSAD": "Trona CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24076929.0, "AWATER": 2011.0, "INTPTLAT": 35.8158211, "INTPTLON": -117.3473478 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3473478, 35.8158211 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1500, "felt:has_geometry": true, "felt:h3_index": 644721916703940980, "STATEFP": 6.0, "PLACEFP": 80560.0, "PLACENS": 2583169.0, "GEOID": 680560.0, "NAME": "Trowbridge", "NAMELSAD": "Trowbridge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17560536.0, "AWATER": 0.0, "INTPTLAT": 38.926385, "INTPTLON": -121.5148455 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5148455, 38.926385 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1501, "felt:has_geometry": true, "felt:h3_index": 644722164818028251, "STATEFP": 6.0, "PLACEFP": 80763.0, "PLACENS": 2409362.0, "GEOID": 680763.0, "NAME": "Tuolumne City", "NAMELSAD": "Tuolumne City CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6101298.0, "AWATER": 7243.0, "INTPTLAT": 37.9626517, "INTPTLON": -120.2419855 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2419855, 37.9626517 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1502, "felt:has_geometry": true, "felt:h3_index": 644747878871016280, "STATEFP": 6.0, "PLACEFP": 80784.0, "PLACENS": 2409363.0, "GEOID": 680784.0, "NAME": "Tupman", "NAMELSAD": "Tupman CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1367277.0, "AWATER": 0.0, "INTPTLAT": 35.2987427, "INTPTLON": -119.3576736 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.3576736, 35.2987427 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1503, "felt:has_geometry": true, "felt:h3_index": 644722203870640130, "STATEFP": 6.0, "PLACEFP": 80882.0, "PLACENS": 2583170.0, "GEOID": 680882.0, "NAME": "Tuttle", "NAMELSAD": "Tuttle CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4555442.0, "AWATER": 0.0, "INTPTLAT": 37.2965078, "INTPTLON": -120.3788671 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.3788671, 37.2965078 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1504, "felt:has_geometry": true, "felt:h3_index": 644722165472642858, "STATEFP": 6.0, "PLACEFP": 80896.0, "PLACENS": 2583171.0, "GEOID": 680896.0, "NAME": "Tuttletown", "NAMELSAD": "Tuttletown CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19038413.0, "AWATER": 16981.0, "INTPTLAT": 38.0104362, "INTPTLON": -120.4412463 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4412463, 38.0104362 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1505, "felt:has_geometry": true, "felt:h3_index": 644719812596426080, "STATEFP": 6.0, "PLACEFP": 80952.0, "PLACENS": 2409369.0, "GEOID": 680952.0, "NAME": "Twain", "NAMELSAD": "Twain CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18622693.0, "AWATER": 0.0, "INTPTLAT": 40.0355031, "INTPTLON": -121.0403629 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0403629, 40.0355031 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1506, "felt:has_geometry": true, "felt:h3_index": 644745763846636237, "STATEFP": 6.0, "PLACEFP": 80966.0, "PLACENS": 2409370.0, "GEOID": 680966.0, "NAME": "Twain Harte", "NAMELSAD": "Twain Harte CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9579417.0, "AWATER": 49580.0, "INTPTLAT": 38.0369433, "INTPTLON": -120.2339184 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.2339184, 38.0369433 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1507, "felt:has_geometry": true, "felt:h3_index": 644745771458388790, "STATEFP": 6.0, "PLACEFP": 81048.0, "PLACENS": 2804105.0, "GEOID": 681048.0, "NAME": "Twin Lakes", "NAMELSAD": "Twin Lakes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10798571.0, "AWATER": 2717491.0, "INTPTLAT": 38.1628855, "INTPTLON": -119.341063 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.341063, 38.1628855 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1508, "felt:has_geometry": true, "felt:h3_index": 644722014637688027, "STATEFP": 6.0, "PLACEFP": 81050.0, "PLACENS": 2409372.0, "GEOID": 681050.0, "NAME": "Twin Lakes", "NAMELSAD": "Twin Lakes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1789624.0, "AWATER": 1346290.0, "INTPTLAT": 36.9613777, "INTPTLON": -121.9917482 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9917482, 36.9613777 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1509, "felt:has_geometry": true, "felt:h3_index": 644721765277335765, "STATEFP": 6.0, "PLACEFP": 81302.0, "PLACENS": 2628819.0, "GEOID": 681302.0, "NAME": "University of California-Davis", "NAMELSAD": "University of California-Davis CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4473488.0, "AWATER": 0.0, "INTPTLAT": 38.5377038, "INTPTLON": -121.7578995 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.7578995, 38.5377038 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1510, "felt:has_geometry": true, "felt:h3_index": 644722203002484523, "STATEFP": 6.0, "PLACEFP": 81312.0, "PLACENS": 2583172.0, "GEOID": 681312.0, "NAME": "University of California-Merced", "NAMELSAD": "University of California-Merced CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1689900.0, "AWATER": 20798.0, "INTPTLAT": 37.3640832, "INTPTLON": -120.4188311 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4188311, 37.3640832 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1511, "felt:has_geometry": true, "felt:h3_index": 644747885518328852, "STATEFP": 6.0, "PLACEFP": 81316.0, "PLACENS": 2813356.0, "GEOID": 681316.0, "NAME": "University of California-Santa Barbara", "NAMELSAD": "University of California-Santa Barbara CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3363537.0, "AWATER": 300642.0, "INTPTLAT": 34.4183146, "INTPTLON": -119.8509598 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8509598, 34.4183146 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1512, "felt:has_geometry": true, "felt:h3_index": 644721983748748648, "STATEFP": 6.0, "PLACEFP": 81358.0, "PLACENS": 2409382.0, "GEOID": 681358.0, "NAME": "Upper Lake", "NAMELSAD": "Upper Lake CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4439947.0, "AWATER": 21212.0, "INTPTLAT": 39.1650498, "INTPTLON": -122.9051819 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9051819, 39.1650498 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1513, "felt:has_geometry": true, "felt:h3_index": 644747148798251203, "STATEFP": 6.0, "PLACEFP": 81638.0, "PLACENS": 2409392.0, "GEOID": 681638.0, "NAME": "Valinda", "NAMELSAD": "Valinda CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5213065.0, "AWATER": 0.0, "INTPTLAT": 34.0400329, "INTPTLON": -117.9300568 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9300568, 34.0400329 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1514, "felt:has_geometry": true, "felt:h3_index": 644745764755808921, "STATEFP": 6.0, "PLACEFP": 81652.0, "PLACENS": 2409394.0, "GEOID": 681652.0, "NAME": "Vallecito", "NAMELSAD": "Vallecito CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5406010.0, "AWATER": 0.0, "INTPTLAT": 38.0836081, "INTPTLON": -120.4652043 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4652043, 38.0836081 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1515, "felt:has_geometry": true, "felt:h3_index": 644747877064181579, "STATEFP": 6.0, "PLACEFP": 81722.0, "PLACENS": 2409395.0, "GEOID": 681722.0, "NAME": "Valley Acres", "NAMELSAD": "Valley Acres CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10677289.0, "AWATER": 0.0, "INTPTLAT": 35.2086679, "INTPTLON": -119.4106505 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4106505, 35.2086679 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1516, "felt:has_geometry": true, "felt:h3_index": 644721859628715141, "STATEFP": 6.0, "PLACEFP": 81778.0, "PLACENS": 2583173.0, "GEOID": 681778.0, "NAME": "Valley Ford", "NAMELSAD": "Valley Ford CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6842484.0, "AWATER": 0.0, "INTPTLAT": 38.3245599, "INTPTLON": -122.914733 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.914733, 38.3245599 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1517, "felt:has_geometry": true, "felt:h3_index": 644722149102032782, "STATEFP": 6.0, "PLACEFP": 81792.0, "PLACENS": 2583174.0, "GEOID": 681792.0, "NAME": "Valley Home", "NAMELSAD": "Valley Home CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2977464.0, "AWATER": 0.0, "INTPTLAT": 37.8272405, "INTPTLON": -120.9143428 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9143428, 37.8272405 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1518, "felt:has_geometry": true, "felt:h3_index": 644719862440640880, "STATEFP": 6.0, "PLACEFP": 81869.0, "PLACENS": 2409397.0, "GEOID": 681869.0, "NAME": "Valley Ranch", "NAMELSAD": "Valley Ranch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2945415.0, "AWATER": 0.0, "INTPTLAT": 39.7403417, "INTPTLON": -120.5648953 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5648953, 39.7403417 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1519, "felt:has_geometry": true, "felt:h3_index": 644722171019735662, "STATEFP": 6.0, "PLACEFP": 81890.0, "PLACENS": 2409398.0, "GEOID": 681890.0, "NAME": "Valley Springs", "NAMELSAD": "Valley Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10344077.0, "AWATER": 0.0, "INTPTLAT": 38.1694383, "INTPTLON": -120.825992 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.825992, 38.1694383 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1520, "felt:has_geometry": true, "felt:h3_index": 644745203285080905, "STATEFP": 6.0, "PLACEFP": 81925.0, "PLACENS": 2408400.0, "GEOID": 681925.0, "NAME": "Valley Wells", "NAMELSAD": "Valley Wells CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27631920.0, "AWATER": 177128.0, "INTPTLAT": 35.8807292, "INTPTLON": -117.3356757 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3356757, 35.8807292 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1521, "felt:has_geometry": true, "felt:h3_index": 644747095689222760, "STATEFP": 6.0, "PLACEFP": 81967.0, "PLACENS": 2409388.0, "GEOID": 681967.0, "NAME": "Val Verde", "NAMELSAD": "Val Verde CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6644174.0, "AWATER": 0.0, "INTPTLAT": 34.4504231, "INTPTLON": -118.6717843 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.6717843, 34.4504231 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1522, "felt:has_geometry": true, "felt:h3_index": 644737364235949963, "STATEFP": 6.0, "PLACEFP": 82072.0, "PLACENS": 2409501.0, "GEOID": 682072.0, "NAME": "Vandenberg AFB", "NAMELSAD": "Vandenberg AFB CDP", "LSAD": 57.0, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 57997811.0, "AWATER": 225536.0, "INTPTLAT": 34.7279857, "INTPTLON": -120.5064673 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5064673, 34.7279857 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1523, "felt:has_geometry": true, "felt:h3_index": 644737364338869332, "STATEFP": 6.0, "PLACEFP": 82086.0, "PLACENS": 2409502.0, "GEOID": 682086.0, "NAME": "Vandenberg Village", "NAMELSAD": "Vandenberg Village CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13649867.0, "AWATER": 1339.0, "INTPTLAT": 34.71174, "INTPTLON": -120.4619329 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.4619329, 34.71174 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1524, "felt:has_geometry": true, "felt:h3_index": 644745442198637355, "STATEFP": 6.0, "PLACEFP": 82334.0, "PLACENS": 2583175.0, "GEOID": 682334.0, "NAME": "Verdi", "NAMELSAD": "Verdi CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10808119.0, "AWATER": 34863.0, "INTPTLAT": 39.5269686, "INTPTLON": -120.0233943 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.0233943, 39.5269686 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1525, "felt:has_geometry": true, "felt:h3_index": 644722155952659043, "STATEFP": 6.0, "PLACEFP": 82562.0, "PLACENS": 2583176.0, "GEOID": 682562.0, "NAME": "Victor", "NAMELSAD": "Victor CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3270555.0, "AWATER": 0.0, "INTPTLAT": 38.1384653, "INTPTLON": -121.1987603 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1987603, 38.1384653 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1526, "felt:has_geometry": true, "felt:h3_index": 644747394208558448, "STATEFP": 6.0, "PLACEFP": 82667.0, "PLACENS": 2409512.0, "GEOID": 682667.0, "NAME": "View Park-Windsor Hills", "NAMELSAD": "View Park-Windsor Hills CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4768647.0, "AWATER": 1987.0, "INTPTLAT": 33.9944725, "INTPTLON": -118.3477617 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3477617, 33.9944725 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1527, "felt:has_geometry": true, "felt:h3_index": 644719935080401107, "STATEFP": 6.0, "PLACEFP": 82786.0, "PLACENS": 2628796.0, "GEOID": 682786.0, "NAME": "Vina", "NAMELSAD": "Vina CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3501362.0, "AWATER": 0.0, "INTPTLAT": 39.93418, "INTPTLON": -122.0517059 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0517059, 39.93418 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1528, "felt:has_geometry": true, "felt:h3_index": 644747148233723293, "STATEFP": 6.0, "PLACEFP": 82815.0, "PLACENS": 2409516.0, "GEOID": 682815.0, "NAME": "Vincent", "NAMELSAD": "Vincent CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3814588.0, "AWATER": 0.0, "INTPTLAT": 34.0982678, "INTPTLON": -117.9238011 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9238011, 34.0982678 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1529, "felt:has_geometry": true, "felt:h3_index": 644721785529753626, "STATEFP": 6.0, "PLACEFP": 82842.0, "PLACENS": 2409517.0, "GEOID": 682842.0, "NAME": "Vine Hill", "NAMELSAD": "Vine Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3890261.0, "AWATER": 0.0, "INTPTLAT": 38.0071169, "INTPTLON": -122.0872968 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.0872968, 38.0071169 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1530, "felt:has_geometry": true, "felt:h3_index": 644721905672497181, "STATEFP": 6.0, "PLACEFP": 82852.0, "PLACENS": 2409518.0, "GEOID": 682852.0, "NAME": "Vineyard", "NAMELSAD": "Vineyard CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48558204.0, "AWATER": 0.0, "INTPTLAT": 38.4740353, "INTPTLON": -121.3239951 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3239951, 38.4740353 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1531, "felt:has_geometry": true, "felt:h3_index": 644745773941054618, "STATEFP": 6.0, "PLACEFP": 82929.0, "PLACENS": 2804106.0, "GEOID": 682929.0, "NAME": "Virginia Lakes", "NAMELSAD": "Virginia Lakes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3741522.0, "AWATER": 216444.0, "INTPTLAT": 38.0434728, "INTPTLON": -119.2598767 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2598767, 38.0434728 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1532, "felt:has_geometry": true, "felt:h3_index": 644747449382634130, "STATEFP": 6.0, "PLACEFP": 83085.0, "PLACENS": 2583177.0, "GEOID": 683085.0, "NAME": "Vista Santa Rosa", "NAMELSAD": "Vista Santa Rosa CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41657100.0, "AWATER": 32133.0, "INTPTLAT": 33.6214513, "INTPTLON": -116.2088163 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.2088163, 33.6214513 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1533, "felt:has_geometry": true, "felt:h3_index": 644721926425664280, "STATEFP": 6.0, "PLACEFP": 83094.0, "PLACENS": 2583178.0, "GEOID": 683094.0, "NAME": "Volcano", "NAMELSAD": "Volcano CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3626954.0, "AWATER": 0.0, "INTPTLAT": 38.4506137, "INTPTLON": -120.6217679 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6217679, 38.4506137 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1534, "felt:has_geometry": true, "felt:h3_index": 644747666886413670, "STATEFP": 6.0, "PLACEFP": 83108.0, "PLACENS": 2583179.0, "GEOID": 683108.0, "NAME": "Volta", "NAMELSAD": "Volta CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11318388.0, "AWATER": 165270.0, "INTPTLAT": 37.0823527, "INTPTLON": -120.9144798 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9144798, 37.0823527 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1535, "felt:has_geometry": true, "felt:h3_index": 644745734758549548, "STATEFP": 6.0, "PLACEFP": 83262.0, "PLACENS": 2583180.0, "GEOID": 683262.0, "NAME": "Walker", "NAMELSAD": "Walker CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31473072.0, "AWATER": 0.0, "INTPTLAT": 38.518502, "INTPTLON": -119.4730506 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4730506, 38.518502 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1536, "felt:has_geometry": true, "felt:h3_index": 644722171893571600, "STATEFP": 6.0, "PLACEFP": 83304.0, "PLACENS": 2409523.0, "GEOID": 683304.0, "NAME": "Wallace", "NAMELSAD": "Wallace CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11114771.0, "AWATER": 6972905.0, "INTPTLAT": 38.2069018, "INTPTLON": -120.9569815 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.9569815, 38.2069018 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1537, "felt:has_geometry": true, "felt:h3_index": 644721756331221299, "STATEFP": 6.0, "PLACEFP": 83374.0, "PLACENS": 2409526.0, "GEOID": 683374.0, "NAME": "Walnut Grove", "NAMELSAD": "Walnut Grove CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26419421.0, "AWATER": 1883606.0, "INTPTLAT": 38.2505944, "INTPTLON": -121.5349734 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5349734, 38.2505944 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1538, "felt:has_geometry": true, "felt:h3_index": 644747394335378821, "STATEFP": 6.0, "PLACEFP": 83402.0, "PLACENS": 2409528.0, "GEOID": 683402.0, "NAME": "Walnut Park", "NAMELSAD": "Walnut Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1940966.0, "AWATER": 0.0, "INTPTLAT": 33.9682327, "INTPTLON": -118.2219479 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2219479, 33.9682327 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1539, "felt:has_geometry": true, "felt:h3_index": 644747059388097024, "STATEFP": 6.0, "PLACEFP": 83460.0, "PLACENS": 2583181.0, "GEOID": 683460.0, "NAME": "Warm Springs", "NAMELSAD": "Warm Springs CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3629535.0, "AWATER": 0.0, "INTPTLAT": 33.7066811, "INTPTLON": -117.3343467 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.3343467, 33.7066811 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1540, "felt:has_geometry": true, "felt:h3_index": 644719573066894226, "STATEFP": 6.0, "PLACEFP": 83494.0, "PLACENS": 2583182.0, "GEOID": 683494.0, "NAME": "Warner Valley", "NAMELSAD": "Warner Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45059297.0, "AWATER": 74958.0, "INTPTLAT": 40.4043546, "INTPTLON": -121.3405621 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3405621, 40.4043546 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1541, "felt:has_geometry": true, "felt:h3_index": 644721899962385070, "STATEFP": 6.0, "PLACEFP": 83570.0, "PLACENS": 2628797.0, "GEOID": 683570.0, "NAME": "Washington", "NAMELSAD": "Washington CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4922969.0, "AWATER": 0.0, "INTPTLAT": 39.3591578, "INTPTLON": -120.7904968 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.7904968, 39.3591578 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1542, "felt:has_geometry": true, "felt:h3_index": 644722156378857802, "STATEFP": 6.0, "PLACEFP": 83626.0, "PLACENS": 2628798.0, "GEOID": 683626.0, "NAME": "Waterloo", "NAMELSAD": "Waterloo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14076382.0, "AWATER": 0.0, "INTPTLAT": 38.0364521, "INTPTLON": -121.1845547 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.1845547, 38.0364521 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1543, "felt:has_geometry": true, "felt:h3_index": 644747578083830861, "STATEFP": 6.0, "PLACEFP": 83724.0, "PLACENS": 2585463.0, "GEOID": 683724.0, "NAME": "Waukena", "NAMELSAD": "Waukena CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 907531.0, "AWATER": 0.0, "INTPTLAT": 36.1391038, "INTPTLON": -119.5109733 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.5109733, 36.1391038 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1544, "felt:has_geometry": true, "felt:h3_index": 644720397144171416, "STATEFP": 6.0, "PLACEFP": 83730.0, "PLACENS": 2805900.0, "GEOID": 683730.0, "NAME": "Wautec", "NAMELSAD": "Wautec CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5973832.0, "AWATER": 0.0, "INTPTLAT": 41.3543145, "INTPTLON": -123.8622878 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.8622878, 41.3543145 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1545, "felt:has_geometry": true, "felt:h3_index": 644747807589428272, "STATEFP": 6.0, "PLACEFP": 83766.0, "PLACENS": 2583183.0, "GEOID": 683766.0, "NAME": "Wawona", "NAMELSAD": "Wawona CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2786953.0, "AWATER": 0.0, "INTPTLAT": 37.5446736, "INTPTLON": -119.6386738 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.6386738, 37.5446736 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1546, "felt:has_geometry": true, "felt:h3_index": 644747865746768664, "STATEFP": 6.0, "PLACEFP": 83863.0, "PLACENS": 2409538.0, "GEOID": 683863.0, "NAME": "Weedpatch", "NAMELSAD": "Weedpatch CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9212054.0, "AWATER": 11548.0, "INTPTLAT": 35.2358918, "INTPTLON": -118.9095605 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9095605, 35.2358918 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6.0, "PLACEFP": 83906.0, "PLACENS": 2805256.0, "GEOID": 683906.0, "NAME": "Weitchpec", "NAMELSAD": "Weitchpec CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744.0, "AWATER": 145898.0, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.6888465, 41.1945932 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1548, "felt:has_geometry": true, "felt:h3_index": 644747986326460268, "STATEFP": 6.0, "PLACEFP": 83948.0, "PLACENS": 2409540.0, "GEOID": 683948.0, "NAME": "Weldon", "NAMELSAD": "Weldon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69057891.0, "AWATER": 391674.0, "INTPTLAT": 35.6441026, "INTPTLON": -118.3090882 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3090882, 35.6441026 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1549, "felt:has_geometry": true, "felt:h3_index": 644718611563321866, "STATEFP": 6.0, "PLACEFP": 84004.0, "PLACENS": 2611454.0, "GEOID": 684004.0, "NAME": "Weott", "NAMELSAD": "Weott CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1946274.0, "AWATER": 48591.0, "INTPTLAT": 40.3227715, "INTPTLON": -123.9206222 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.9206222, 40.3227715 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1550, "felt:has_geometry": true, "felt:h3_index": 644747394142299509, "STATEFP": 6.0, "PLACEFP": 84116.0, "PLACENS": 2409544.0, "GEOID": 684116.0, "NAME": "West Athens", "NAMELSAD": "West Athens CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3462635.0, "AWATER": 0.0, "INTPTLAT": 33.923453, "INTPTLON": -118.3033012 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3033012, 33.923453 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1551, "felt:has_geometry": true, "felt:h3_index": 644745688699757342, "STATEFP": 6.0, "PLACEFP": 84120.0, "PLACENS": 2409545.0, "GEOID": 684120.0, "NAME": "West Bishop", "NAMELSAD": "West Bishop CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22684470.0, "AWATER": 2788.0, "INTPTLAT": 37.3627675, "INTPTLON": -118.4750461 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4750461, 37.3627675 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1552, "felt:has_geometry": true, "felt:h3_index": 644747391002831275, "STATEFP": 6.0, "PLACEFP": 84144.0, "PLACENS": 2409546.0, "GEOID": 684144.0, "NAME": "West Carson", "NAMELSAD": "West Carson CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5868539.0, "AWATER": 33313.0, "INTPTLAT": 33.8231392, "INTPTLON": -118.2936849 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2936849, 33.8231392 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1553, "felt:has_geometry": true, "felt:h3_index": 644747602129605221, "STATEFP": 6.0, "PLACEFP": 84345.0, "PLACENS": 2627938.0, "GEOID": 684345.0, "NAME": "West Goshen", "NAMELSAD": "West Goshen CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1734524.0, "AWATER": 0.0, "INTPTLAT": 36.3491827, "INTPTLON": -119.4573743 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.4573743, 36.3491827 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1554, "felt:has_geometry": true, "felt:h3_index": 644718582140418460, "STATEFP": 6.0, "PLACEFP": 84385.0, "PLACENS": 2409573.0, "GEOID": 684385.0, "NAME": "Westhaven-Moonstone", "NAMELSAD": "Westhaven-Moonstone CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20954630.0, "AWATER": 70662.0, "INTPTLAT": 41.0361167, "INTPTLON": -124.0908296 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -124.0908296, 41.0361167 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1555, "felt:has_geometry": true, "felt:h3_index": 644722194778856006, "STATEFP": 6.0, "PLACEFP": 84480.0, "PLACENS": 2409574.0, "GEOID": 684480.0, "NAME": "Westley", "NAMELSAD": "Westley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 879991.0, "AWATER": 0.0, "INTPTLAT": 37.5469077, "INTPTLON": -121.2009154 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2009154, 37.5469077 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1556, "felt:has_geometry": true, "felt:h3_index": 644722038909353122, "STATEFP": 6.0, "PLACEFP": 84536.0, "PLACENS": 2409555.0, "GEOID": 684536.0, "NAME": "West Menlo Park", "NAMELSAD": "West Menlo Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1256177.0, "AWATER": 0.0, "INTPTLAT": 37.4338243, "INTPTLON": -122.2034195 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.2034195, 37.4338243 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1557, "felt:has_geometry": true, "felt:h3_index": 644722149462787781, "STATEFP": 6.0, "PLACEFP": 84578.0, "PLACENS": 2409556.0, "GEOID": 684578.0, "NAME": "West Modesto", "NAMELSAD": "West Modesto CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3575972.0, "AWATER": 37065.0, "INTPTLAT": 37.6175188, "INTPTLON": -121.0328278 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0328278, 37.6175188 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1558, "felt:has_geometry": true, "felt:h3_index": 644747394755913550, "STATEFP": 6.0, "PLACEFP": 84592.0, "PLACENS": 2409575.0, "GEOID": 684592.0, "NAME": "Westmont", "NAMELSAD": "Westmont CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4784057.0, "AWATER": 0.0, "INTPTLAT": 33.9416817, "INTPTLON": -118.3018339 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3018339, 33.9416817 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1559, "felt:has_geometry": true, "felt:h3_index": 644747816066885171, "STATEFP": 6.0, "PLACEFP": 84680.0, "PLACENS": 2628799.0, "GEOID": 684680.0, "NAME": "West Park", "NAMELSAD": "West Park CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4640398.0, "AWATER": 0.0, "INTPTLAT": 36.7055261, "INTPTLON": -119.8515482 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.8515482, 36.7055261 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1560, "felt:has_geometry": true, "felt:h3_index": 644721926267803176, "STATEFP": 6.0, "PLACEFP": 84732.0, "PLACENS": 2409563.0, "GEOID": 684732.0, "NAME": "West Point", "NAMELSAD": "West Point CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7677757.0, "AWATER": 0.0, "INTPTLAT": 38.4060578, "INTPTLON": -120.5364802 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5364802, 38.4060578 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1561, "felt:has_geometry": true, "felt:h3_index": 644747148707437168, "STATEFP": 6.0, "PLACEFP": 84774.0, "PLACENS": 2409564.0, "GEOID": 684774.0, "NAME": "West Puente Valley", "NAMELSAD": "West Puente Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4842002.0, "AWATER": 2700.0, "INTPTLAT": 34.0522802, "INTPTLON": -117.9667167 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.9667167, 34.0522802 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1562, "felt:has_geometry": true, "felt:h3_index": 644747394123115086, "STATEFP": 6.0, "PLACEFP": 84780.0, "PLACENS": 2409548.0, "GEOID": 684780.0, "NAME": "West Rancho Dominguez", "NAMELSAD": "West Rancho Dominguez CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10284759.0, "AWATER": 13545.0, "INTPTLAT": 33.9043316, "INTPTLON": -118.2677765 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.2677765, 33.9043316 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1563, "felt:has_geometry": true, "felt:h3_index": 644747580572327337, "STATEFP": 6.0, "PLACEFP": 84863.0, "PLACENS": 2628800.0, "GEOID": 684863.0, "NAME": "Westside", "NAMELSAD": "Westside CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5740778.0, "AWATER": 0.0, "INTPTLAT": 36.4042015, "INTPTLON": -120.1343258 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1343258, 36.4042015 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1564, "felt:has_geometry": true, "felt:h3_index": 644747146907812582, "STATEFP": 6.0, "PLACEFP": 84921.0, "PLACENS": 2409570.0, "GEOID": 684921.0, "NAME": "West Whittier-Los Nietos", "NAMELSAD": "West Whittier-Los Nietos CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6527742.0, "AWATER": 0.0, "INTPTLAT": 33.975998, "INTPTLON": -118.0689295 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.0689295, 33.975998 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1565, "felt:has_geometry": true, "felt:h3_index": 644719835009731402, "STATEFP": 6.0, "PLACEFP": 84928.0, "PLACENS": 2409578.0, "GEOID": 684928.0, "NAME": "Westwood", "NAMELSAD": "Westwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14392892.0, "AWATER": 182548.0, "INTPTLAT": 40.3052197, "INTPTLON": -121.0035026 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.0035026, 40.3052197 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1566, "felt:has_geometry": true, "felt:h3_index": 644719862260292932, "STATEFP": 6.0, "PLACEFP": 85086.0, "PLACENS": 2409587.0, "GEOID": 685086.0, "NAME": "Whitehawk", "NAMELSAD": "Whitehawk CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693778.0, "AWATER": 0.0, "INTPTLAT": 39.7206086, "INTPTLON": -120.5535831 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5535831, 39.7206086 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1567, "felt:has_geometry": true, "felt:h3_index": 644747043445762675, "STATEFP": 6.0, "PLACEFP": 85208.0, "PLACENS": 2583184.0, "GEOID": 685208.0, "NAME": "Whitewater", "NAMELSAD": "Whitewater CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25581193.0, "AWATER": 0.0, "INTPTLAT": 33.9355902, "INTPTLON": -116.687212 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.687212, 33.9355902 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1568, "felt:has_geometry": true, "felt:h3_index": 644747933888473602, "STATEFP": 6.0, "PLACEFP": 85222.0, "PLACENS": 2583185.0, "GEOID": 685222.0, "NAME": "Whitley Gardens", "NAMELSAD": "Whitley Gardens CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3396918.0, "AWATER": 28851.0, "INTPTLAT": 35.6563222, "INTPTLON": -120.5081122 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5081122, 35.6563222 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1569, "felt:has_geometry": true, "felt:h3_index": 644719895961197813, "STATEFP": 6.0, "PLACEFP": 85250.0, "PLACENS": 2813357.0, "GEOID": 685250.0, "NAME": "Whitmore", "NAMELSAD": "Whitmore CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16909590.0, "AWATER": 14380.0, "INTPTLAT": 40.61251, "INTPTLON": -121.9359064 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.9359064, 40.61251 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1570, "felt:has_geometry": true, "felt:h3_index": 644747738387940234, "STATEFP": 6.0, "PLACEFP": 85551.0, "PLACENS": 2409595.0, "GEOID": 685551.0, "NAME": "Wilkerson", "NAMELSAD": "Wilkerson CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14833037.0, "AWATER": 1906.0, "INTPTLAT": 37.2773387, "INTPTLON": -118.3915877 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.3915877, 37.2773387 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1571, "felt:has_geometry": true, "felt:h3_index": 644747071474133585, "STATEFP": 6.0, "PLACEFP": 85587.0, "PLACENS": 2812659.0, "GEOID": 685587.0, "NAME": "Williams Canyon", "NAMELSAD": "Williams Canyon CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1465500.0, "AWATER": 0.0, "INTPTLAT": 33.7289126, "INTPTLON": -117.6394381 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6394381, 33.7289126 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1572, "felt:has_geometry": true, "felt:h3_index": 644747394159926670, "STATEFP": 6.0, "PLACEFP": 85614.0, "PLACENS": 2409601.0, "GEOID": 685614.0, "NAME": "Willowbrook", "NAMELSAD": "Willowbrook CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4341865.0, "AWATER": 7356.0, "INTPTLAT": 33.9208339, "INTPTLON": -118.236915 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.236915, 33.9208339 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1573, "felt:has_geometry": true, "felt:h3_index": 644718575030985218, "STATEFP": 6.0, "PLACEFP": 85642.0, "PLACENS": 2409598.0, "GEOID": 685642.0, "NAME": "Willow Creek", "NAMELSAD": "Willow Creek CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78501415.0, "AWATER": 777004.0, "INTPTLAT": 40.9393305, "INTPTLON": -123.6410997 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.6410997, 40.9393305 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1574, "felt:has_geometry": true, "felt:h3_index": 644747755709400800, "STATEFP": 6.0, "PLACEFP": 85866.0, "PLACENS": 2585464.0, "GEOID": 685866.0, "NAME": "Wilsonia", "NAMELSAD": "Wilsonia CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 705824.0, "AWATER": 0.0, "INTPTLAT": 36.734598, "INTPTLON": -118.9558466 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.9558466, 36.734598 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1575, "felt:has_geometry": true, "felt:h3_index": 644721905207916763, "STATEFP": 6.0, "PLACEFP": 85880.0, "PLACENS": 2409604.0, "GEOID": 685880.0, "NAME": "Wilton", "NAMELSAD": "Wilton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75115869.0, "AWATER": 0.0, "INTPTLAT": 38.4129769, "INTPTLON": -121.2127181 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.2127181, 38.4129769 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1576, "felt:has_geometry": true, "felt:h3_index": 644747074141280538, "STATEFP": 6.0, "PLACEFP": 85894.0, "PLACENS": 2409606.0, "GEOID": 685894.0, "NAME": "Winchester", "NAMELSAD": "Winchester CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20773790.0, "AWATER": 0.0, "INTPTLAT": 33.71463, "INTPTLON": -117.0773979 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.0773979, 33.71463 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1577, "felt:has_geometry": true, "felt:h3_index": 644722197092022646, "STATEFP": 6.0, "PLACEFP": 86076.0, "PLACENS": 2409616.0, "GEOID": 686076.0, "NAME": "Winton", "NAMELSAD": "Winton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7875727.0, "AWATER": 0.0, "INTPTLAT": 37.3854272, "INTPTLON": -120.6173641 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.6173641, 37.3854272 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1578, "felt:has_geometry": true, "felt:h3_index": 644747987398547217, "STATEFP": 6.0, "PLACEFP": 86174.0, "PLACENS": 2409619.0, "GEOID": 686174.0, "NAME": "Wofford Heights", "NAMELSAD": "Wofford Heights CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16579394.0, "AWATER": 460.0, "INTPTLAT": 35.714951, "INTPTLON": -118.4726643 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.4726643, 35.714951 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1579, "felt:has_geometry": true, "felt:h3_index": 644721782782027036, "STATEFP": 6.0, "PLACEFP": 86216.0, "PLACENS": 2409620.0, "GEOID": 686216.0, "NAME": "Woodacre", "NAMELSAD": "Woodacre CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4653150.0, "AWATER": 0.0, "INTPTLAT": 38.0051738, "INTPTLON": -122.6383098 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.6383098, 38.0051738 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1580, "felt:has_geometry": true, "felt:h3_index": 644747027188063325, "STATEFP": 6.0, "PLACEFP": 86244.0, "PLACENS": 2409622.0, "GEOID": 686244.0, "NAME": "Woodcrest", "NAMELSAD": "Woodcrest CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29539146.0, "AWATER": 0.0, "INTPTLAT": 33.8789457, "INTPTLON": -117.368671 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.368671, 33.8789457 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1581, "felt:has_geometry": true, "felt:h3_index": 644747971418579338, "STATEFP": 6.0, "PLACEFP": 86380.0, "PLACENS": 2583186.0, "GEOID": 686380.0, "NAME": "Woodlands", "NAMELSAD": "Woodlands CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4279720.0, "AWATER": 0.0, "INTPTLAT": 35.0288731, "INTPTLON": -120.5523934 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.5523934, 35.0288731 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1582, "felt:has_geometry": true, "felt:h3_index": 644747592708875594, "STATEFP": 6.0, "PLACEFP": 86482.0, "PLACENS": 2409628.0, "GEOID": 686482.0, "NAME": "Woodville", "NAMELSAD": "Woodville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2584379.0, "AWATER": 0.0, "INTPTLAT": 36.0926804, "INTPTLON": -119.2012255 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2012255, 36.0926804 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1583, "felt:has_geometry": true, "felt:h3_index": 644747592732424484, "STATEFP": 6.0, "PLACEFP": 86489.0, "PLACENS": 2813334.0, "GEOID": 686489.0, "NAME": "Woodville Farm Labor Camp", "NAMELSAD": "Woodville Farm Labor Camp CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 491823.0, "AWATER": 0.0, "INTPTLAT": 36.0831506, "INTPTLON": -119.1479227 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.1479227, 36.0831506 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1584, "felt:has_geometry": true, "felt:h3_index": 644747997053888913, "STATEFP": 6.0, "PLACEFP": 86496.0, "PLACENS": 2804433.0, "GEOID": 686496.0, "NAME": "Woody", "NAMELSAD": "Woody CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10453539.0, "AWATER": 0.0, "INTPTLAT": 35.7081483, "INTPTLON": -118.8143965 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8143965, 35.7081483 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1585, "felt:has_geometry": true, "felt:h3_index": 644747030219340659, "STATEFP": 6.0, "PLACEFP": 86594.0, "PLACENS": 2409630.0, "GEOID": 686594.0, "NAME": "Wrightwood", "NAMELSAD": "Wrightwood CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15414197.0, "AWATER": 8669.0, "INTPTLAT": 34.3459882, "INTPTLON": -117.6275788 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.6275788, 34.3459882 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1586, "felt:has_geometry": true, "felt:h3_index": 644719858703730989, "STATEFP": 6.0, "PLACEFP": 86678.0, "PLACENS": 2612489.0, "GEOID": 686678.0, "NAME": "Yankee Hill", "NAMELSAD": "Yankee Hill CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15609188.0, "AWATER": 0.0, "INTPTLAT": 39.7007088, "INTPTLON": -121.5146882 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.5146882, 39.7007088 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1587, "felt:has_geometry": true, "felt:h3_index": 644747281532308337, "STATEFP": 6.0, "PLACEFP": 86720.0, "PLACENS": 2805257.0, "GEOID": 686720.0, "NAME": "Yermo", "NAMELSAD": "Yermo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1680240.0, "AWATER": 12788.0, "INTPTLAT": 34.9066556, "INTPTLON": -116.8232743 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.8232743, 34.9066556 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1588, "felt:has_geometry": true, "felt:h3_index": 644747603801825306, "STATEFP": 6.0, "PLACEFP": 86734.0, "PLACENS": 2585465.0, "GEOID": 686734.0, "NAME": "Yettem", "NAMELSAD": "Yettem CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 284865.0, "AWATER": 0.0, "INTPTLAT": 36.4856842, "INTPTLON": -119.2556893 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.2556893, 36.4856842 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1589, "felt:has_geometry": true, "felt:h3_index": 644721914917295448, "STATEFP": 6.0, "PLACEFP": 86804.0, "PLACENS": 2583187.0, "GEOID": 686804.0, "NAME": "Yolo", "NAMELSAD": "Yolo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3556737.0, "AWATER": 0.0, "INTPTLAT": 38.7404633, "INTPTLON": -121.8093244 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.8093244, 38.7404633 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1590, "felt:has_geometry": true, "felt:h3_index": 644747778000791921, "STATEFP": 6.0, "PLACEFP": 86878.0, "PLACENS": 2409637.0, "GEOID": 686878.0, "NAME": "Yosemite Lakes", "NAMELSAD": "Yosemite Lakes CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54136050.0, "AWATER": 250537.0, "INTPTLAT": 37.1853582, "INTPTLON": -119.7721217 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7721217, 37.1853582 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1591, "felt:has_geometry": true, "felt:h3_index": 644747807012362256, "STATEFP": 6.0, "PLACEFP": 86912.0, "PLACENS": 2409638.0, "GEOID": 686912.0, "NAME": "Yosemite Valley", "NAMELSAD": "Yosemite Valley CDP", "LSAD": 57.0, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5330276.0, "AWATER": 158738.0, "INTPTLAT": 37.7425227, "INTPTLON": -119.577626 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.577626, 37.7425227 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1592, "felt:has_geometry": true, "felt:h3_index": 644747808967637762, "STATEFP": 6.0, "PLACEFP": 86916.0, "PLACENS": 2813254.0, "GEOID": 686916.0, "NAME": "Yosemite West", "NAMELSAD": "Yosemite West CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 708714.0, "AWATER": 0.0, "INTPTLAT": 37.6481932, "INTPTLON": -119.7182169 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -119.7182169, 37.6481932 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1593, "felt:has_geometry": true, "felt:h3_index": 644722014164797872, "STATEFP": 6.0, "PLACEFP": 87090.0, "PLACENS": 2583188.0, "GEOID": 687090.0, "NAME": "Zayante", "NAMELSAD": "Zayante CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7308969.0, "AWATER": 0.0, "INTPTLAT": 37.0892135, "INTPTLON": -122.040862 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.040862, 37.0892135 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1594, "felt:has_geometry": true, "felt:h3_index": 644722156921635881, "STATEFP": 6.0, "PLACEFP": 86230.0, "PLACENS": 2629783.0, "GEOID": 686230.0, "NAME": "Woodbridge", "NAMELSAD": "Woodbridge CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7806489.0, "AWATER": 276560.0, "INTPTLAT": 38.1720647, "INTPTLON": -121.3089147 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3089147, 38.1720647 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1595, "felt:has_geometry": true, "felt:h3_index": 644721745632768365, "STATEFP": 6.0, "PLACEFP": 30028.0, "PLACENS": 2408299.0, "GEOID": 630028.0, "NAME": "Glen Ellen", "NAMELSAD": "Glen Ellen CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5438518.0, "AWATER": 2744.0, "INTPTLAT": 38.3553229, "INTPTLON": -122.5433057 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.5433057, 38.3553229 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1596, "felt:has_geometry": true, "felt:h3_index": 644721855211045576, "STATEFP": 6.0, "PLACEFP": 30812.0, "PLACENS": 2408322.0, "GEOID": 630812.0, "NAME": "Graton", "NAMELSAD": "Graton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4090304.0, "AWATER": 0.0, "INTPTLAT": 38.4375168, "INTPTLON": -122.8659876 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8659876, 38.4375168 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1597, "felt:has_geometry": true, "felt:h3_index": 644721856552297374, "STATEFP": 6.0, "PLACEFP": 31470.0, "PLACENS": 2408341.0, "GEOID": 631470.0, "NAME": "Guerneville", "NAMELSAD": "Guerneville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25147194.0, "AWATER": 440242.0, "INTPTLAT": 38.5171652, "INTPTLON": -122.989897 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.989897, 38.5171652 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1598, "felt:has_geometry": true, "felt:h3_index": 644718625962206297, "STATEFP": 6.0, "PLACEFP": 32562.0, "PLACENS": 2408361.0, "GEOID": 632562.0, "NAME": "Hayfork", "NAMELSAD": "Hayfork CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 186854161.0, "AWATER": 58222.0, "INTPTLAT": 40.5758706, "INTPTLON": -123.123629 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -123.123629, 40.5758706 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1599, "felt:has_geometry": true, "felt:h3_index": 644719887281349729, "STATEFP": 6.0, "PLACEFP": 41278.0, "PLACENS": 2408603.0, "GEOID": 641278.0, "NAME": "Lewiston", "NAMELSAD": "Lewiston CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 51843522.0, "AWATER": 0.0, "INTPTLAT": 40.6969309, "INTPTLON": -122.8225094 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.8225094, 40.6969309 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6.0, "PLACEFP": 83794.0, "PLACENS": 2409537.0, "GEOID": 683794.0, "NAME": "Weaverville", "NAMELSAD": "Weaverville CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065.0, "AWATER": 0.0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.9290224, 40.7406549 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1601, "felt:has_geometry": true, "felt:h3_index": 644737351806519010, "STATEFP": 6.0, "PLACEFP": 44168.0, "PLACENS": 2583064.0, "GEOID": 644168.0, "NAME": "Los Olivos", "NAMELSAD": "Los Olivos CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778819.0, "AWATER": 1039.0, "INTPTLAT": 34.6615061, "INTPTLON": -120.1174358 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -120.1174358, 34.6615061 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1602, "felt:has_geometry": true, "felt:h3_index": 644747026134867075, "STATEFP": 6.0, "PLACEFP": 52624.0, "PLACENS": 2408960.0, "GEOID": 652624.0, "NAME": "Nuevo", "NAMELSAD": "Nuevo CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17531432.0, "AWATER": 0.0, "INTPTLAT": 33.8011366, "INTPTLON": -117.1413818 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.1413818, 33.8011366 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1603, "felt:has_geometry": true, "felt:h3_index": 644747076862430301, "STATEFP": 6.0, "PLACEFP": 81708.0, "PLACENS": 2409393.0, "GEOID": 681708.0, "NAME": "Valle Vista", "NAMELSAD": "Valle Vista CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17860487.0, "AWATER": 453010.0, "INTPTLAT": 33.7433625, "INTPTLON": -116.888783 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.888783, 33.7433625 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1604, "felt:has_geometry": true, "felt:h3_index": 644747654733703281, "STATEFP": 6.0, "PLACEFP": 60706.0, "PLACENS": 2409168.0, "GEOID": 660706.0, "NAME": "Ridgemark", "NAMELSAD": "Ridgemark CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6656246.0, "AWATER": 0.0, "INTPTLAT": 36.8082406, "INTPTLON": -121.3622802 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.3622802, 36.8082406 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1605, "felt:has_geometry": true, "felt:h3_index": 645287528099885134, "STATEFP": 6.0, "PLACEFP": 70798.0, "PLACENS": 2409303.0, "GEOID": 670798.0, "NAME": "Seeley", "NAMELSAD": "Seeley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3660150.0, "AWATER": 78319.0, "INTPTLAT": 32.7904047, "INTPTLON": -115.685047 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -115.685047, 32.7904047 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1606, "felt:has_geometry": true, "felt:h3_index": 645287644837329651, "STATEFP": 6.0, "PLACEFP": 86020.0, "PLACENS": 2409615.0, "GEOID": 686020.0, "NAME": "Winterhaven", "NAMELSAD": "Winterhaven CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 630958.0, "AWATER": 0.0, "INTPTLAT": 32.7371834, "INTPTLON": -114.6377979 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -114.6377979, 32.7371834 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1607, "felt:has_geometry": true, "felt:h3_index": 644747351250961776, "STATEFP": 6.0, "PLACEFP": 73696.0, "PLACENS": 2408796.0, "GEOID": 673696.0, "NAME": "Spring Valley", "NAMELSAD": "Spring Valley CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19015909.0, "AWATER": 88959.0, "INTPTLAT": 32.7299478, "INTPTLON": -116.9764015 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9764015, 32.7299478 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1608, "felt:has_geometry": true, "felt:h3_index": 644747322470885632, "STATEFP": 6.0, "PLACEFP": 81736.0, "PLACENS": 2409396.0, "GEOID": 681736.0, "NAME": "Valley Center", "NAMELSAD": "Valley Center CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71083460.0, "AWATER": 0.0, "INTPTLAT": 33.2329944, "INTPTLON": -117.015763 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -117.015763, 33.2329944 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1609, "felt:has_geometry": true, "felt:h3_index": 644747318909765468, "STATEFP": 6.0, "PLACEFP": 85992.0, "PLACENS": 2409614.0, "GEOID": 685992.0, "NAME": "Winter Gardens", "NAMELSAD": "Winter Gardens CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11447561.0, "AWATER": 1027.0, "INTPTLAT": 32.8375118, "INTPTLON": -116.9265552 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -116.9265552, 32.8375118 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1610, "felt:has_geometry": true, "felt:h3_index": 644721756662407266, "STATEFP": 6.0, "PLACEFP": 78568.0, "PLACENS": 2628795.0, "GEOID": 678568.0, "NAME": "Thornton", "NAMELSAD": "Thornton CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5524658.0, "AWATER": 130915.0, "INTPTLAT": 38.2296592, "INTPTLON": -121.4260627 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -121.4260627, 38.2296592 ] ] } }, +{ "type": "Feature", "properties": { "felt:feature": 1611, "felt:has_geometry": true, "felt:h3_index": 644747744295196939, "STATEFP": 6.0, "PLACEFP": 78638.0, "PLACENS": 2409316.0, "GEOID": 678638.0, "NAME": "Three Rivers", "NAMELSAD": "Three Rivers CDP", "LSAD": 57.0, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80245468.0, "AWATER": 268932.0, "INTPTLAT": 36.440041, "INTPTLON": -118.8802803 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.8802803, 36.440041 ] ] } } +] +} diff --git a/tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json b/tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json new file mode 100644 index 000000000..cfdb7d9a2 --- /dev/null +++ b/tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json @@ -0,0 +1,8320 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-124.261247,32.569140,-114.264962,41.987270", +"bounds": "-124.261247,32.569140,-114.264962,41.987270", +"center": "-123.750000,32.569140,4", +"description": "tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json.check.mbtiles -z4 -B32 -r999 --use-h3-index felt:h3_index --retain-points-multiplier 2 --preserve-multiplier-density-bits-by-zoom 19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52 --accumulate-attribute NAME:comma tests/ca-places-h3/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":4,\"fields\":{\"ALAND\":\"Number\",\"AWATER\":\"Number\",\"CLASSFP\":\"String\",\"FUNCSTAT\":\"String\",\"GEOID\":\"Number\",\"INTPTLAT\":\"Number\",\"INTPTLON\":\"Number\",\"LSAD\":\"Number\",\"MTFCC\":\"String\",\"NAME\":\"String\",\"NAMELSAD\":\"String\",\"PCICBSA\":\"String\",\"PCINECTA\":\"String\",\"PLACEFP\":\"Number\",\"PLACENS\":\"Number\",\"STATEFP\":\"Number\",\"felt:feature\":\"Number\",\"felt:h3_index\":\"Number\",\"felt:has_geometry\":\"Boolean\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":1611,\"geometry\":\"Point\",\"attributeCount\":21,\"attributes\":[{\"attribute\":\"ALAND\",\"count\":1000,\"type\":\"number\",\"values\":[100221605,10040503,10045731,100658842,100685639,10070209,1007403,1007621,10115840,101210495,10127780,10164976,1016538,101679451,10171003,1017555,10189493,10199669,1020818,10284759,10294401,10312458,103161847,10328922,103320711,10344077,1036205,10370555,10373861,10380819,10384180,10393370,10394620,1040220,10426487,10430292,10446983,10453539,10455849,10536176,1054819,1056404,10569744,10600543,1060201,1061321,1061683,10648134,10651128,10677289,106883484,106964252,10732387,107601139,1076095,10762229,107707592,10798571,10808119,1081020,1082490,1082836,10855446,10879066,10888685,10939488,1094556,10955540,10965026,10970686,10985561,10998147,110141809,1101654,11022981,110336008,11060967,1109244,11112520,11114771,111214683,1113098,11132191,11139877,1114550,11146719,111620408,1118795,1119279,11194524,112089027,112422778,11271636,11281691,112854,1128791,11289069,11290203,11295870,11318388],\"min\":18565,\"max\":1218634998},{\"attribute\":\"AWATER\",\"count\":854,\"type\":\"number\",\"values\":[0,100699,1008457,100959,1009641,101085,1021066,102405,102525,10258,1027,1032543,10389,1039,104147,105845,10607454,10614,1062655,10648,10741,10759202,107779,108688,108930,10948,1098346,11013,1101656,110309,111658,111696,11185,112301,112922,113009,1130139,11338,113638,113833,11387,1139030,11403119,11429,11431,1143505,11513,11548,11652,1165902,1166,1167608,116762,1170287,11716,1172452,11735,117653,1178,1178472,118011,118590,11878,11902,1194,119504,119779,120019,120532755,122068,122096,1222,12228,12263,122877,12349954,12359,12376,12381,123913,124504,124597,12551,125676,12617,12670,12740,1276883,12780,12788,1283585,1289442,12914764,1292,12981958,130737,13084,130868,130915,131179],\"min\":0,\"max\":479608103},{\"attribute\":\"CLASSFP\",\"count\":4,\"type\":\"string\",\"values\":[\"C1\",\"M2\",\"U1\",\"U2\"]},{\"attribute\":\"FUNCSTAT\",\"count\":2,\"type\":\"string\",\"values\":[\"A\",\"S\"]},{\"attribute\":\"GEOID\",\"count\":1000,\"type\":\"number\",\"values\":[600135,600156,600212,600296,600310,600394,600450,600464,600478,600535,600562,600618,600674,600716,600786,600884,600898,600947,600982,600996,601010,601094,601150,601164,601192,601228,601276,601290,601358,601360,601416,601444,601458,601514,601518,601640,601651,602000,602028,602042,602112,602168,602210,602252,602294,602364,602378,602382,602420,602462,602476,602553,602700,602770,602812,602868,602896,602910,602924,602980,603026,603064,603092,603162,603190,603204,603205,603209,603274,603302,603316,603330,603344,603386,603512,603526,603546,603666,603694,603708,603792,603820,604030,604198,604415,604470,604478,604549,604576,604632,604716,604730,604734,604758,604772,604856,604870,604926,604938,604982],\"min\":600135,\"max\":687090},{\"attribute\":\"INTPTLAT\",\"count\":1000,\"type\":\"number\",\"values\":[32.5691398,32.6130891,32.6276701,32.6364781,32.6409655,32.6576246,32.6640221,32.6658617,32.673217,32.6849313,32.7123147,32.71841,32.7299478,32.7324941,32.7330712,32.7371834,32.7431265,32.762405,32.763962,32.7694947,32.7863511,32.7904047,32.8000203,32.8016733,32.8032801,32.8137812,32.814977,32.8189845,32.8252316,32.8272739,32.8375118,32.8388748,32.841513,32.842487,32.8549903,32.856617,32.8695654,32.871105,32.8851767,32.9639446,32.9783547,32.9876765,32.9913002,32.9915955,33.0093755,33.025814,33.038922,33.0458112,33.0506323,33.0735017,33.0756817,33.0812315,33.1007172,33.1223616,33.1292841,33.1325674,33.1330533,33.1688054,33.1896819,33.2236343,33.2246006,33.2318244,33.2329944,33.2387079,33.2409651,33.2748761,33.299426,33.3072088,33.3433354,33.3556097,33.3639256,33.3742351,33.3758448,33.4038032,33.4098728,33.4278429,33.4491433,33.4522463,33.475452,33.4930728,33.5008888,33.5140033,33.5145756,33.518735,33.5237876,33.5275314,33.5286538,33.54337,33.5491462,33.5615903,33.5721337,33.5767084,33.57921,33.5838362,33.5912164,33.594066,33.5956999,33.5970366,33.597332,33.5994608],\"min\":32.5691398,\"max\":41.9872704},{\"attribute\":\"INTPTLON\",\"count\":1000,\"type\":\"number\",\"values\":[-114.2649617,-114.3620987,-114.6218227,-114.6266387,-114.6377979,-114.6529919,-114.7270947,-114.7316045,-115.3666216,-115.3783188,-115.4856694,-115.4943572,-115.5144396,-115.5286723,-115.5293983,-115.5602059,-115.5718415,-115.6223136,-115.6680724,-115.685047,-115.7269018,-115.8972354,-115.9109591,-115.9609466,-116.0018794,-116.0113755,-116.0392059,-116.0645275,-116.0659586,-116.071735,-116.12611389999999,-116.1308336,-116.1431282,-116.190706,-116.2050514,-116.2088163,-116.2359705,-116.2484731,-116.275297,-116.2873354,-116.2896012,-116.2982193,-116.3087698,-116.3128622,-116.3258978,-116.3544809,-116.3550396,-116.3571189,-116.3641448,-116.4145486,-116.4215573,-116.4246869,-116.4303875,-116.4400922,-116.4631031,-116.4745158,-116.479609,-116.5107062,-116.5382801,-116.5422837,-116.5627267,-116.588883,-116.6068146,-116.6278783,-116.6834115,-116.687212,-116.6960661,-116.7233115,-116.7306896,-116.7559106,-116.7828306,-116.7873141,-116.7963779,-116.8121026,-116.8232743,-116.8380698,-116.8554705,-116.8670776,-116.870862,-116.8746901,-116.8775465,-116.888783,-116.8938931,-116.8990441,-116.9020927,-116.9042369,-116.9056101,-116.9103847,-116.9196906,-116.9265552,-116.9410012,-116.942264,-116.9449826,-116.9530089,-116.9604685,-116.9623071,-116.9688085,-116.9693705,-116.9764015,-116.9860556],\"min\":-124.261247,\"max\":-114.2649617},{\"attribute\":\"LSAD\",\"count\":3,\"type\":\"number\",\"values\":[25,43,57],\"min\":25,\"max\":57},{\"attribute\":\"MTFCC\",\"count\":2,\"type\":\"string\",\"values\":[\"G4110\",\"G4210\"]},{\"attribute\":\"NAME\",\"count\":1000,\"type\":\"string\",\"values\":[\"Acalanes Ridge\",\"Acalanes Ridge,Lafayette,Saranap\",\"Acampo\",\"Acton\",\"Adelanto\",\"Adelanto,Victorville,Mountain View Acres\",\"Adin\",\"Agoura Hills\",\"Agua Dulce\",\"Aguanga\",\"Ahwahnee\",\"Airport\",\"Airport,Bystrom\",\"Alameda\",\"Alamo\",\"Albany\",\"Albion\",\"Albion,Little River\",\"Alderpoint\",\"Alderpoint,Ruth\",\"Alhambra\",\"Alhambra Valley\",\"Alhambra,Monterey Park\",\"Aliso Viejo\",\"Alleghany\",\"Alleghany,Washington\",\"Allendale\",\"Allensworth\",\"Allensworth,Delano\",\"Allensworth,Delano,Alpaugh,Earlimart,Tipton,Pixley,Teviston,McFarland,Wasco,Jovista,Richgrove,Rodriguez Camp\",\"Almanor\",\"Alondra Park\",\"Alondra Park,Lawndale,Redondo Beach\",\"Alpaugh\",\"Alpine\",\"Alpine Village\",\"Alpine,Ramona,San Diego Country Estates,Winter Gardens,Lakeside,Granite Hills,Eucalyptus Hills,Harbison Canyon,Rancho San Diego,El Cajon,Bostonia,Crest,Descanso,Pine Valley\",\"Alta\",\"Alta Sierra\",\"Alta Sierra,Colfax\",\"Altadena\",\"Altadena,San Marino,San Pasqual,South Pasadena,Pasadena,Sierra Madre,East Pasadena,Arcadia\",\"Alto\",\"Alturas\",\"Alum Rock\",\"Alum Rock,East Foothills\",\"Alum Rock,East Foothills,Milpitas\",\"Amador City\",\"Amador City,Plymouth,Fiddletown,Drytown,Sutter Creek\",\"Amador Pines\",\"Amador Pines,Buckhorn\",\"American Canyon\",\"Amesti\",\"Amesti,Corralitos,Freedom\",\"Amesti,Corralitos,Freedom,Day Valley,Watsonville,Rio del Mar,Aptos Hills-Larkin Valley,La Selva Beach,Interlaken,Pajaro\",\"Anaheim\",\"Anchor Bay\",\"Anderson\",\"Angels\",\"Angwin\",\"Angwin,Deer Park\",\"Antelope\",\"Antelope,Foothill Farms\",\"Antioch\",\"Anza\",\"Apple Valley\",\"Aptos\",\"Aptos Hills-Larkin Valley\",\"Aptos,Soquel,Seacliff\",\"Arbuckle\",\"Arbuckle,College City\",\"Arbuckle,College City,Meridian,Grimes,Dunnigan,Robbins\",\"Arcadia\",\"Arcata\",\"Arden-Arcade\",\"Arden-Arcade,La Riviera\",\"Armona\",\"Armona,Grangeville,Hanford,Home Garden,Lemoore\",\"Arnold\",\"Arnold,Avery\",\"Aromas\",\"Aromas,San Juan Bautista\",\"Arroyo Grande\",\"Artesia\",\"Artesia,Cerritos,Lakewood\",\"Artesia,Cerritos,Lakewood,Paramount,Bellflower,La Mirada,Buena Park,Santa Fe Springs,Norwalk,Cypress,Hawaiian Gardens,La Palma,Los Alamitos\",\"Artois\",\"Artois,Orland,Nord,Hamilton City,Willows\",\"Arvin\",\"Ashland\",\"Ashland,San Lorenzo,Cherryland\",\"Aspen Springs\",\"Atascadero\",\"Atascadero,Garden Farms,Santa Margarita\",\"Atherton\",\"Atherton,North Fair Oaks,West Menlo Park\",\"Atwater\",\"Atwater,McSwain,Franklin\",\"Auberry\",\"Auburn\"]},{\"attribute\":\"NAMELSAD\",\"count\":1000,\"type\":\"string\",\"values\":[\"Acalanes Ridge CDP\",\"Acampo CDP\",\"Acton CDP\",\"Adelanto city\",\"Adin CDP\",\"Agoura Hills city\",\"Agua Dulce CDP\",\"Aguanga CDP\",\"Ahwahnee CDP\",\"Airport CDP\",\"Alameda city\",\"Alamo CDP\",\"Albany city\",\"Albion CDP\",\"Alderpoint CDP\",\"Alhambra Valley CDP\",\"Alhambra city\",\"Aliso Viejo city\",\"Alleghany CDP\",\"Allendale CDP\",\"Allensworth CDP\",\"Almanor CDP\",\"Alondra Park CDP\",\"Alpaugh CDP\",\"Alpine CDP\",\"Alpine Village CDP\",\"Alta CDP\",\"Alta Sierra CDP\",\"Altadena CDP\",\"Alto CDP\",\"Alturas city\",\"Alum Rock CDP\",\"Amador City city\",\"Amador Pines CDP\",\"American Canyon city\",\"Amesti CDP\",\"Anaheim city\",\"Anchor Bay CDP\",\"Anderson city\",\"Angels city\",\"Angwin CDP\",\"Antelope CDP\",\"Antioch city\",\"Anza CDP\",\"Apple Valley town\",\"Aptos CDP\",\"Aptos Hills-Larkin Valley CDP\",\"Arbuckle CDP\",\"Arcadia city\",\"Arcata city\",\"Arden-Arcade CDP\",\"Armona CDP\",\"Arnold CDP\",\"Aromas CDP\",\"Arroyo Grande city\",\"Artesia city\",\"Artois CDP\",\"Arvin city\",\"Ashland CDP\",\"Aspen Springs CDP\",\"Atascadero city\",\"Atherton town\",\"Atwater city\",\"Auberry CDP\",\"Auburn Lake Trails CDP\",\"Auburn city\",\"August CDP\",\"Avalon city\",\"Avenal city\",\"Avery CDP\",\"Avila Beach CDP\",\"Avocado Heights CDP\",\"Azusa city\",\"Baker CDP\",\"Bakersfield Country Club CDP\",\"Bakersfield city\",\"Baldwin Park city\",\"Ballard CDP\",\"Ballico CDP\",\"Bangor CDP\",\"Banning city\",\"Barstow city\",\"Bass Lake CDP\",\"Bay Point CDP\",\"Bayview CDP\",\"Baywood Park CDP\",\"Beale AFB CDP\",\"Bear Creek CDP\",\"Bear Valley CDP\",\"Bear Valley Springs CDP\",\"Beaumont city\",\"Beckwourth CDP\",\"Belden CDP\",\"Bell Canyon CDP\",\"Bell Gardens city\",\"Bell city\",\"Bella Vista CDP\",\"Bellflower city\",\"Belmont city\",\"Belvedere city\"]},{\"attribute\":\"PCICBSA\",\"count\":1,\"type\":\"string\",\"values\":[\"\"]},{\"attribute\":\"PCINECTA\",\"count\":1,\"type\":\"string\",\"values\":[\"\"]},{\"attribute\":\"PLACEFP\",\"count\":1000,\"type\":\"number\",\"values\":[10004,10032,10042,10044,10046,10074,10088,1010,10256,10270,10301,10345,10494,10508,10554,10561,10676,10732,10816,10914,10928,1094,11040,11166,11194,11250,11324,11376,11390,11418,11446,11481,1150,11530,11600,11614,1164,11656,11691,11696,11754,11768,11782,11796,11824,11915,1192,11964,11978,12048,12062,12132,12146,12216,1228,12300,12314,12328,12412,12415,12524,12552,12594,12612,12669,12730,12734,1276,12818,12860,1290,12902,12916,12930,13014,13077,13157,13182,13210,13214,13278,13294,13364,13392,135,13560,1358,13588,1360,13756,13784,13854,13882,13910,13945,13966,13985,14008,14106,14148],\"min\":135,\"max\":87090},{\"attribute\":\"PLACENS\",\"count\":1000,\"type\":\"number\",\"values\":[2015546,2407612,2407624,2407631,2407637,2407641,2407643,2407648,2407652,2407658,2407664,2407666,2407668,2407672,2407675,2407679,2407680,2407681,2407682,2407683,2407684,2407697,2407707,2407722,2407724,2407725,2407726,2407729,2407731,2407732,2407736,2407740,2407744,2407750,2407751,2407755,2407756,2407762,2407763,2407764,2407773,2407779,2407781,2407784,2407785,2407808,2407810,2407812,2407813,2407814,2407815,2407819,2407822,2407827,2407831,2407832,2407834,2407838,2407839,2407843,2407844,2407849,2407857,2407859,2407861,2407863,2407869,2407872,2407873,2407875,2407878,2407882,2407884,2407885,2407886,2407887,2407888,2407889,2407892,2407895,2407898,2407899,2407902,2407907,2407918,2407924,2407926,2407932,2407934,2407935,2407936,2407941,2407942,2407944,2407946,2407947,2407954,2407959,2407962,2407966],\"min\":2015546,\"max\":2830231},{\"attribute\":\"STATEFP\",\"count\":1,\"type\":\"number\",\"values\":[6],\"min\":6,\"max\":6},{\"attribute\":\"felt:feature\",\"count\":1000,\"type\":\"number\",\"values\":[1,10,100,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,101,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,102,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,103,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,104,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,105,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,106,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,107,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,108,1080,1081,1082,1083,1084,1085,1086,1087,1088],\"min\":1,\"max\":1611},{\"attribute\":\"felt:h3_index\",\"count\":1000,\"type\":\"number\",\"values\":[644718571927151218,644718575030985218,644718575706457891,644718575734532462,644718581673278022,644718581837530794,644718582140418460,644718585258590224,644718585915844358,644718585930130026,644718593154745173,644718599181999498,644718603466353835,644718607586712357,644718609011754920,644718610944688716,644718611024692944,644718611563321866,644718612146034330,644718615170754393,644718615895212352,644718615998629462,644718617862603099,644718617907779420,644718618129342877,644718618271660166,644718618362166534,644718618387504037,644718618447979912,644718618483436825,644718618494440300,644718618509053075,644718618917114405,644718618930635532,644718619252568853,644718619950247158,644718620356135345,644718624365990196,644718625962206297,644718627603356904,644718664269433441,644718847372672021,644718856146322332,644718857436889222,644718857983963529,644718859124743401,644718862050317412,644718869174552388,644718873994931008,644718875946399144,644718881748979876,644718882019752066,644718882313740706,644718882790408492,644718883285586088,644718886539187978,644718886715590917,644718896773775600,644718902778063776,644718902978996387,644718903551286291,644719535431090306,644719536896074354,644719537632617362,644719539417787625,644719554914367770,644719557509073669,644719562283701620,644719563810683392,644719565413754960,644719569396630731,644719573066894226,644719576860681504,644719577030895305,644719579180700011,644719579505466404,644719583149349674,644719585220727168,644719585765267051,644719602400139557,644719602563303620,644719602869519795,644719603752455388,644719606499957170,644719609596492310,644719613690727203,644719614003651185,644719616714914477,644719617245522853,644719617777944278,644719619704741017,644719631186676889,644719635111010990,644719637833025609,644719642529950797,644719643816705163,644719648604727949,644719655223859273,644719655508391001,644719655759495833],\"min\":644718571927151200,\"max\":645287686372214700},{\"attribute\":\"felt:has_geometry\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":1000,\"type\":\"number\",\"values\":[0,1,10,100,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,101,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,102,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,103,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,104,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,105,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,106,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,107,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,108,1080,1081,1082,1083,1084,1085,1086,1087],\"min\":0,\"max\":1545}]}]}}", +"maxzoom": "4", +"minzoom": "0", +"name": "tests/ca-places-h3/out/-z4_-B32_-r999_--use-h3-index_felt%3ah3%5findex_--retain-points-multiplier_2_--preserve-multiplier-density-bits-by-zoom_19,19,22,25,28,28,31,34,34,37,40,40,43,46,49,49,52,52,52,52,52,52,52,52_--accumulate-attribute_NAME%3acomma.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":1408},{\"dropped_by_rate\":1408},{\"dropped_by_rate\":930},{\"dropped_by_rate\":318},{\"dropped_by_rate\":28}]", +"tippecanoe_decisions": "{\"basezoom\":32,\"droprate\":999,\"retain_points_multiplier\":2}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "NAME": "Burnt Ranch,Willow Creek,Salyer,Trinity Village", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "NAME": "Big Lagoon,Trinidad,Westhaven-Moonstone,Blue Lake,McKinleyville,Fieldbrook", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -124.101562, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -123.046875, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "NAME": "Weitchpec,Hoopa", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -123.662109, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6, "PLACEFP": 59906, "PLACENS": 2628781, "GEOID": 659906, "NAMELSAD": "Redcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190, "AWATER": 0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151, "NAME": "Redcrest,Mad River,Miranda,Phillipsville,Weott,Myers Flat", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -123.925781, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6, "PLACEFP": 25296, "PLACENS": 2410532, "GEOID": 625296, "NAMELSAD": "Fortuna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391, "AWATER": 7169, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161, "NAME": "Fortuna,Fields Landing,Humboldt Hill,Myrtletown,Manila,Indianola,Arcata,Cutten,Pine Hills,Fairhaven,Eureka,Samoa,Bayview,Scotia,Rio Dell,Hydesville,Ferndale,Loleta", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -124.101562, 40.580585 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6, "PLACEFP": 36098, "PLACENS": 2583038, "GEOID": 636098, "NAMELSAD": "Hyampom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399, "AWATER": 0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298, "NAME": "Hyampom,Hayfork,Post Mountain", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.647304 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -124.101562, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1040, "felt:has_geometry": true, "felt:h3_index": 644718847372672021, "STATEFP": 6, "PLACEFP": 40928, "PLACENS": 2408589, "GEOID": 640928, "NAME": "Laytonville", "NAMELSAD": "Laytonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13908641, "AWATER": 163478, "INTPTLAT": 39.662256, "INTPTLON": -123.4950147, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 39.639538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1396, "felt:has_geometry": true, "felt:h3_index": 644718856146322332, "STATEFP": 6, "PLACEFP": 71372, "PLACENS": 2611448, "GEOID": 671372, "NAMELSAD": "Shelter Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15098010, "AWATER": 0, "INTPTLAT": 40.0389543, "INTPTLON": -124.0558247, "NAME": "Shelter Cove,Garberville,Benbow,Redway,Leggett", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -124.013672, 40.044438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 707, "felt:has_geometry": true, "felt:h3_index": 644718869174552388, "STATEFP": 6, "PLACEFP": 16728, "PLACENS": 2407675, "GEOID": 616728, "NAME": "Covelo", "NAMELSAD": "Covelo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18377116, "AWATER": 111658, "INTPTLAT": 39.8001872, "INTPTLON": -123.2526012, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -123.222656, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 493, "felt:has_geometry": true, "felt:h3_index": 644718873994931008, "STATEFP": 6, "PLACEFP": 786, "PLACENS": 2611374, "GEOID": 600786, "NAMELSAD": "Alderpoint CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6288254, "AWATER": 0, "INTPTLAT": 40.1613467, "INTPTLON": -123.6157293, "NAME": "Alderpoint,Ruth", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 695, "felt:has_geometry": true, "felt:h3_index": 644718881748979876, "STATEFP": 6, "PLACEFP": 15030, "PLACENS": 2628722, "GEOID": 615030, "NAMELSAD": "Comptche CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987584, "AWATER": 0, "INTPTLAT": 39.2651343, "INTPTLON": -123.5897145, "NAME": "Comptche,Caspar,Fort Bragg,Mendocino,Brooktrails,Albion,Little River", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 680, "felt:has_geometry": true, "felt:h3_index": 644718896773775600, "STATEFP": 6, "PLACEFP": 14008, "PLACENS": 2628718, "GEOID": 614008, "NAME": "Cleone", "NAMELSAD": "Cleone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4126679, "AWATER": 62762, "INTPTLAT": 39.4901542, "INTPTLON": -123.7756919, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 39.504041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1298, "felt:has_geometry": true, "felt:h3_index": 644718902778063776, "STATEFP": 6, "PLACEFP": 58506, "PLACENS": 2628779, "GEOID": 658506, "NAMELSAD": "Potter Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10430292, "AWATER": 73557, "INTPTLAT": 39.3171408, "INTPTLON": -123.10986, "NAME": "Potter Valley,Redwood Valley,Willits", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 39.300299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "NAME": "McArthur,Bieber,Nubieber,Little Valley", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "NAME": "Likely,Madeline", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 41.244772 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6, "PLACEFP": 10732, "PLACENS": 2582963, "GEOID": 610732, "NAMELSAD": "Canby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540, "AWATER": 76979, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186, "NAME": "Canby,Adin,Lookout", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "NAME": "Old Station,Warner Valley", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 40.647304 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "NAME": "Burney,Johnson Park,Fall River Mills,Cassel,Hat Creek", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 40.913513 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "NAME": "Stones Landing,Spaulding", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -120.761719, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6, "PLACEFP": 83850, "PLACENS": 2412201, "GEOID": 683850, "NAMELSAD": "Weed city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111, "AWATER": 13340, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655, "NAME": "Weed,Edgewood,Carrick,Gazelle,Lake Shastina,Mount Shasta", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 314, "felt:has_geometry": true, "felt:h3_index": 644719613690727203, "STATEFP": 6, "PLACEFP": 86944, "PLACENS": 2412324, "GEOID": 686944, "NAMELSAD": "Yreka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25861889, "AWATER": 188154, "INTPTLAT": 41.7240335, "INTPTLON": -122.6315699, "NAME": "Yreka,Montague,Fort Jones,Greenview,Grenada", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6, "PLACEFP": 78176, "PLACENS": 2410067, "GEOID": 678176, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560, "AWATER": 1194, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1093, "felt:has_geometry": true, "felt:h3_index": 644719631186676889, "STATEFP": 6, "PLACEFP": 44812, "PLACENS": 2408156, "GEOID": 644812, "NAMELSAD": "Macdoel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 432723, "AWATER": 0, "INTPTLAT": 41.8261734, "INTPTLON": -122.0058849, "NAME": "Macdoel,Mount Hebron", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "NAME": "Coffee Creek,Trinity Center,Lakehead", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6, "PLACEFP": 22972, "PLACENS": 2410458, "GEOID": 622972, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757, "AWATER": 2444, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "NAME": "Dunsmuir,McCloud,Castella,Big Bend", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 41.244772 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1187, "felt:has_geometry": true, "felt:h3_index": 644719683479093780, "STATEFP": 6, "PLACEFP": 51168, "PLACENS": 2583092, "GEOID": 651168, "NAMELSAD": "New Pine Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5870148, "AWATER": 0, "INTPTLAT": 41.9872704, "INTPTLON": -120.3009638, "NAME": "New Pine Creek,Fort Bidwell", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -120.322266, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6, "PLACEFP": 20424, "PLACENS": 2628727, "GEOID": 620424, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306, "AWATER": 0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6, "PLACEFP": 17995, "PLACENS": 2582990, "GEOID": 617995, "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441, "AWATER": 4621, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069, "NAME": "Daphnedale Park,Alturas,Lake City,Cedarville,California Pines", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1186, "felt:has_geometry": true, "felt:h3_index": 644719745745081189, "STATEFP": 6, "PLACEFP": 51042, "PLACENS": 2583091, "GEOID": 651042, "NAME": "Newell", "NAMELSAD": "Newell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6233913, "AWATER": 14912, "INTPTLAT": 41.8887312, "INTPTLON": -121.3602488, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 299, "felt:has_geometry": true, "felt:h3_index": 644719784625908842, "STATEFP": 6, "PLACEFP": 19584, "PLACENS": 2410347, "GEOID": 619584, "NAMELSAD": "Dorris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1819374, "AWATER": 40653, "INTPTLAT": 41.9649654, "INTPTLON": -121.9203865, "NAME": "Dorris,Tulelake", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1120, "felt:has_geometry": true, "felt:h3_index": 644719808794191718, "STATEFP": 6, "PLACEFP": 46618, "PLACENS": 2408809, "GEOID": 646618, "NAMELSAD": "Meadow Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22066143, "AWATER": 0, "INTPTLAT": 39.9323117, "INTPTLON": -121.0830864, "NAME": "Meadow Valley,Quincy,Belden,Tobin,Taylorsville,East Quincy,Keddie,Indian Falls,Twain,Paxton,Bucks Lake", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 668, "felt:has_geometry": true, "felt:h3_index": 644719819322821830, "STATEFP": 6, "PLACEFP": 12930, "PLACENS": 2408021, "GEOID": 612930, "NAMELSAD": "Chester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18874561, "AWATER": 209672, "INTPTLAT": 40.3016748, "INTPTLON": -121.2325025, "NAME": "Chester,Lake Almanor West,Butte Meadows,Caribou", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1137, "felt:has_geometry": true, "felt:h3_index": 644719828371281477, "STATEFP": 6, "PLACEFP": 47472, "PLACENS": 2628757, "GEOID": 647472, "NAMELSAD": "Milford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13705685, "AWATER": 14513, "INTPTLAT": 40.1494665, "INTPTLON": -120.3701964, "NAME": "Milford,Lake Davis,Portola,Delleker,Cromberg,Spring Garden,Greenhorn", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1565, "felt:has_geometry": true, "felt:h3_index": 644719835009731402, "STATEFP": 6, "PLACEFP": 84928, "PLACENS": 2409578, "GEOID": 684928, "NAMELSAD": "Westwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14392892, "AWATER": 182548, "INTPTLAT": 40.3052197, "INTPTLON": -121.0035026, "NAME": "Westwood,Clear Creek,Crescent Mills,Greenville,East Shore,Lake Almanor Country Club,Hamilton Branch,Lake Almanor Peninsula,Canyondam,Prattville,Almanor", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -121.025391, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 843, "felt:has_geometry": true, "felt:h3_index": 644719843107942596, "STATEFP": 6, "PLACEFP": 24750, "PLACENS": 2612480, "GEOID": 624750, "NAMELSAD": "Forbestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16250437, "AWATER": 15370, "INTPTLAT": 39.5275837, "INTPTLON": -121.2662224, "NAME": "Forbestown,Clipper Mills,Challenge-Brownsville,Robinson Mill,Berry Creek,Kelly Ridge,La Porte,Dobbins,North San Juan,Rackerby,Bangor,Camptonville,Pike", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 39.504041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1103, "felt:has_geometry": true, "felt:h3_index": 644719851742904618, "STATEFP": 6, "PLACEFP": 45120, "PLACENS": 2408161, "GEOID": 645120, "NAMELSAD": "Magalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36313238, "AWATER": 10648, "INTPTLAT": 39.8187523, "INTPTLON": -121.6077477, "NAME": "Magalia,Paradise,Concow,Forest Ranch,Cohasset,Stirling City,Butte Valley,Cherokee,Chico,Butte Creek Canyon,Durham,Yankee Hill", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 39.842286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1402, "felt:has_geometry": true, "felt:h3_index": 644719861002316968, "STATEFP": 6, "PLACEFP": 71778, "PLACENS": 2583139, "GEOID": 671778, "NAMELSAD": "Sierra City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569937, "AWATER": 728, "INTPTLAT": 39.5726584, "INTPTLON": -120.6276165, "NAME": "Sierra City,Little Grass Valley,Whitehawk,Clio,Mabie,C-Road,Valley Ranch,Iron Horse,Gold Mountain,Calpine,Johnsville,Plumas Eureka,Mohawk Vista,Blairsden,Graeagle,Graniteville,Goodyears Bar,Downieville", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 39.571822 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6, "PLACEFP": 16630, "PLACENS": 2407668, "GEOID": 616630, "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530, "AWATER": 0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307, "NAME": "Cottonwood,Happy Valley,Anderson,Red Bluff,Lake California,Dales,Bend", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "NAME": "Weaverville,Lewiston,Douglas City,French Gulch,Ono,Shasta,Keswick,Igo,Centerville", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.958984, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6, "PLACEFP": 71568, "PLACENS": 2408728, "GEOID": 671568, "NAMELSAD": "Shingletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619, "AWATER": 177508, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646, "NAME": "Shingletown,Manton,Whitmore,Paynes Creek,Mineral", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 40.513799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "NAME": "Jones Valley,Montgomery Creek,Round Mountain,Millville,Palo Cedro,Shasta Lake,Bella Vista,Mountain Gate,Redding,Oak Run", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1316, "felt:has_geometry": true, "felt:h3_index": 644719912127851366, "STATEFP": 6, "PLACEFP": 59604, "PLACENS": 2409139, "GEOID": 659604, "NAMELSAD": "Rancho Tehama Reserve CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30267928, "AWATER": 200213, "INTPTLAT": 40.0040029, "INTPTLON": -122.4283397, "NAME": "Rancho Tehama Reserve,Flournoy,Paskenta,Corning", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 39.977120 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6, "PLACEFP": 57666, "PLACENS": 2813355, "GEOID": 657666, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433, "AWATER": 0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1036, "felt:has_geometry": true, "felt:h3_index": 644719930425005838, "STATEFP": 6, "PLACEFP": 40536, "PLACENS": 2628748, "GEOID": 640536, "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 926091, "AWATER": 0, "INTPTLAT": 40.072141, "INTPTLON": -122.1573122, "NAME": "Las Flores,Gerber,Proberta,Los Molinos,Tehama,Richfield,Vina", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 40.044438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1254, "felt:has_geometry": true, "felt:h3_index": 644719982062547848, "STATEFP": 6, "PLACEFP": 56140, "PLACENS": 2583109, "GEOID": 656140, "NAMELSAD": "Patton Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9040567, "AWATER": 0, "INTPTLAT": 40.1407242, "INTPTLON": -120.178123, "NAME": "Patton Village,Herlong,Doyle", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 40.111689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6, "PLACEFP": 41782, "PLACENS": 2628751, "GEOID": 641782, "NAMELSAD": "Litchfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458, "AWATER": 0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054, "NAME": "Litchfield,Susanville,Johnstonville,Janesville", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 910, "felt:has_geometry": true, "felt:h3_index": 644720381597798566, "STATEFP": 6, "PLACEFP": 32030, "PLACENS": 2611423, "GEOID": 632030, "NAME": "Happy Camp", "NAMELSAD": "Happy Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31357295, "AWATER": 618829, "INTPTLAT": 41.8158932, "INTPTLON": -123.3927961, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -123.398438, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "NAME": "Kep'el,Wautec", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -123.837891, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 157, "felt:has_geometry": true, "felt:h3_index": 644720401678927874, "STATEFP": 6, "PLACEFP": 17022, "PLACENS": 2410262, "GEOID": 617022, "NAMELSAD": "Crescent City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084451, "AWATER": 1170287, "INTPTLAT": 41.7645143, "INTPTLON": -124.2007785, "NAME": "Crescent City,Bertsch-Oceanview,Gasquet,Hiouchi,Fort Dick,Smith River,Klamath", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -124.189453, 41.771312 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 939, "felt:has_geometry": true, "felt:h3_index": 644720535259223248, "STATEFP": 6, "PLACEFP": 34694, "PLACENS": 2408401, "GEOID": 634694, "NAME": "Hornbrook", "NAMELSAD": "Hornbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3017332, "AWATER": 29395, "INTPTLAT": 41.9045054, "INTPTLON": -122.5583187, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 899, "felt:has_geometry": true, "felt:h3_index": 644721733138311369, "STATEFP": 6, "PLACEFP": 31099, "PLACENS": 2408330, "GEOID": 631099, "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21678078, "AWATER": 3847, "INTPTLAT": 38.2638424, "INTPTLON": -122.162496, "NAME": "Green Valley,American Canyon,Sonoma,Napa,Fairfield,Vacaville,Suisun City,Silverado Resort,Port Costa,Crockett,Benicia,Hercules,Rodeo,Martinez,Mountain View,Alhambra Valley,Vallejo", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 38.272689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 355, "felt:has_geometry": true, "felt:h3_index": 644721741584868253, "STATEFP": 6, "PLACEFP": 64140, "PLACENS": 2411758, "GEOID": 664140, "NAMELSAD": "St. Helena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12838322, "AWATER": 327737, "INTPTLAT": 38.5128518, "INTPTLON": -122.4680218, "NAME": "St. Helena,Kenwood,Fulton,Larkfield-Wikiup,Windsor,Angwin,Deer Park,Calistoga,Glen Ellen,Boyes Hot Springs,Eldridge,Fetters Hot Springs-Agua Caliente,El Verano,Temelec,Santa Rosa,Sonoma State University,Rohnert Park,Cotati,Yountville,Rutherford,Oakville", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 916, "felt:has_geometry": true, "felt:h3_index": 644721751107046290, "STATEFP": 6, "PLACEFP": 32340, "PLACENS": 2583031, "GEOID": 632340, "NAMELSAD": "Hartley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16763354, "AWATER": 65391, "INTPTLAT": 38.4203928, "INTPTLON": -121.9508422, "NAME": "Hartley,Dixon,Elmira,Hood,Clarksburg,Freeport,Courtland,Franklin,El Macero,Rio Vista,Isleton,Walnut Grove,Thornton", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 297, "felt:has_geometry": true, "felt:h3_index": 644721759376263982, "STATEFP": 6, "PLACEFP": 86034, "PLACENS": 2412288, "GEOID": 686034, "NAMELSAD": "Winters city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7601165, "AWATER": 64542, "INTPTLAT": 38.5332708, "INTPTLON": -121.975473, "NAME": "Winters,Monument Hills,Madison,Brooks,Esparto,Allendale,Moskowite Corner,University of California-Davis", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 346, "felt:has_geometry": true, "felt:h3_index": 644721767494091681, "STATEFP": 6, "PLACEFP": 6000, "PLACENS": 2409837, "GEOID": 606000, "NAMELSAD": "Berkeley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27018309, "AWATER": 18712737, "INTPTLAT": 37.8656733, "INTPTLON": -122.2987247, "NAME": "Berkeley,Emeryville,Alameda,Sausalito,Marin City,Mill Valley,Tamalpais-Homestead Valley,Tiburon,Belvedere,Corte Madera,Strawberry,Alto,Muir Beach,Orinda,Acalanes Ridge,Lafayette,Saranap,Piedmont,Moraga,Richmond,San Pablo,Rollingwood,North Richmond,El Sobrante,East Richmond Heights,Bayview,Montalvin Manor,Pinole,Tara Hills,El Cerrito,Albany,Kensington,Brisbane,South San Francisco,Burlingame,Hillsborough,San Bruno,Millbrae,Broadmoor,Daly City,Colma,San Leandro,Oakland,Ashland,San Lorenzo,Cherryland", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1188, "felt:has_geometry": true, "felt:h3_index": 644721775715343254, "STATEFP": 6, "PLACEFP": 51280, "PLACENS": 2628764, "GEOID": 651280, "NAMELSAD": "Nicasio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3379839, "AWATER": 0, "INTPTLAT": 38.0606215, "INTPTLON": -122.7008217, "NAME": "Nicasio,San Geronimo,Lagunitas-Forest Knolls,Inverness,Point Reyes Station,Novato,Black Point-Green Point,Petaluma Center,Petaluma,Penngrove,Bolinas,Stinson Beach,Santa Venetia,Lucas Valley-Marinwood,Ross,Kentfield,Larkspur,Fairfax,Woodacre,Sleepy Hollow,San Anselmo,San Rafael", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 394, "felt:has_geometry": true, "felt:h3_index": 644721784669758060, "STATEFP": 6, "PLACEFP": 2252, "PLACENS": 2409715, "GEOID": 602252, "NAMELSAD": "Antioch city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75552859, "AWATER": 1995937, "INTPTLAT": 37.978336, "INTPTLON": -121.7960638, "NAME": "Antioch,Concord,Clyde,Pacheco,Vine Hill,Bay Point,Shell Ridge,Contra Costa Centre,San Miguel,Walnut Creek,North Gate,Pleasant Hill,Reliez Valley,Clayton,Oakley,Bethel Island,Brentwood,Knightsen,Pittsburg,Camino Tassajara,Dublin,Livermore,Danville,Castle Hill,Diablo,Blackhawk,Alamo,Norris Canyon,San Ramon,Byron", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1387, "felt:has_geometry": true, "felt:h3_index": 644721805181993804, "STATEFP": 6, "PLACEFP": 70712, "PLACENS": 2583133, "GEOID": 670712, "NAMELSAD": "Sea Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41742090, "AWATER": 277559, "INTPTLAT": 38.7252743, "INTPTLON": -123.458314, "NAME": "Sea Ranch,Timber Cove", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1105, "felt:has_geometry": true, "felt:h3_index": 644721812890509963, "STATEFP": 6, "PLACEFP": 45386, "PLACENS": 2628754, "GEOID": 645386, "NAMELSAD": "Manchester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6780881, "AWATER": 0, "INTPTLAT": 38.9743844, "INTPTLON": -123.6909611, "NAME": "Manchester,Point Arena,Anchor Bay", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -123.662109, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 878, "felt:has_geometry": true, "felt:h3_index": 644721819421902640, "STATEFP": 6, "PLACEFP": 29420, "PLACENS": 2583024, "GEOID": 629420, "NAMELSAD": "Geyserville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11690104, "AWATER": 0, "INTPTLAT": 38.7173139, "INTPTLON": -122.9034234, "NAME": "Geyserville,Cloverdale,Cobb,Healdsburg", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 582, "felt:has_geometry": true, "felt:h3_index": 644721827939161384, "STATEFP": 6, "PLACEFP": 7512, "PLACENS": 2628712, "GEOID": 607512, "NAMELSAD": "Boonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14355353, "AWATER": 0, "INTPTLAT": 39.0114745, "INTPTLON": -123.3740428, "NAME": "Boonville,Philo,Talmage,Calpella,Ukiah,Hopland", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -123.398438, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1390, "felt:has_geometry": true, "felt:h3_index": 644721853001019636, "STATEFP": 6, "PLACEFP": 71000, "PLACENS": 2583134, "GEOID": 671000, "NAMELSAD": "Sereno del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1909750, "AWATER": 0, "INTPTLAT": 38.3836712, "INTPTLON": -123.0731482, "NAME": "Sereno del Mar,Carmet,Salmon Creek,Bodega Bay,Graton,Forestville,Occidental,Sebastopol,Cazadero,Guerneville,Jenner,Monte Rio,Dillon Beach,Bodega,Valley Ford,Bloomfield,Tomales", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -123.046875, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 526, "felt:has_geometry": true, "felt:h3_index": 644721870536811062, "STATEFP": 6, "PLACEFP": 3205, "PLACENS": 2582982, "GEOID": 603205, "NAMELSAD": "Auburn Lake Trails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32963739, "AWATER": 56719, "INTPTLAT": 38.8862376, "INTPTLON": -120.9796991, "NAME": "Auburn Lake Trails,Auburn,Lincoln,Penryn,Newcastle,Georgetown,Lake of the Pines,Meadow Vista,North Auburn,Cameron Park,Shingle Springs,El Dorado Hills,Granite Bay,Loomis,Orangevale,Citrus Heights,Folsom,Coloma,Diamond Springs,Cold Springs,Placerville", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 797, "felt:has_geometry": true, "felt:h3_index": 644721878823036244, "STATEFP": 6, "PLACEFP": 4576, "PLACENS": 2407813, "GEOID": 604576, "NAMELSAD": "Beale AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26139571, "AWATER": 25614, "INTPTLAT": 39.1080613, "INTPTLON": -121.3512148, "NAME": "Beale AFB,Wheatland,Linda,Marysville,Yuba City,Penn Valley,Lake Wildwood,Rough and Ready,Smartsville,Loma Rica,Sheridan,Olivehurst,Plumas Lake,Rio Oso", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 39.095963 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1289, "felt:has_geometry": true, "felt:h3_index": 644721892361966609, "STATEFP": 6, "PLACEFP": 58030, "PLACENS": 2409086, "GEOID": 658030, "NAME": "Pollock Pines", "NAMELSAD": "Pollock Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22335059, "AWATER": 83617, "INTPTLAT": 38.7576414, "INTPTLON": -120.5909566, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 763, "felt:has_geometry": true, "felt:h3_index": 644721896008771724, "STATEFP": 6, "PLACEFP": 20298, "PLACENS": 2628726, "GEOID": 620298, "NAMELSAD": "Dutch Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1534848, "AWATER": 0, "INTPTLAT": 39.2080078, "INTPTLON": -120.834476, "NAME": "Dutch Flat,Alta,Nevada City,Grass Valley,Alleghany,Washington,Foresthill,Alta Sierra,Colfax", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1575, "felt:has_geometry": true, "felt:h3_index": 644721905207916763, "STATEFP": 6, "PLACEFP": 85880, "PLACENS": 2409604, "GEOID": 685880, "NAMELSAD": "Wilton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75115869, "AWATER": 0, "INTPTLAT": 38.4129769, "INTPTLON": -121.2127181, "NAME": "Wilton,Vineyard,Rosemont,Elk Grove,Florin,Rancho Murieta,Gold River,Rancho Cordova,Mather,Herald,Clay,Dogtown,Galt,Ione,Buena Vista", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 817, "felt:has_geometry": true, "felt:h3_index": 644721913361409796, "STATEFP": 6, "PLACEFP": 22524, "PLACENS": 2583010, "GEOID": 622524, "NAMELSAD": "Elverta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22900221, "AWATER": 0, "INTPTLAT": 38.7184638, "INTPTLON": -121.4454754, "NAME": "Elverta,Rio Linda,Knights Landing,Yolo,Rocklin,Roseville,Nicolaus,Trowbridge,East Nicolaus,West Sacramento,Sacramento,Lemon Hill,Fruitridge Pocket,Parkway,Woodland,Davis,Carmichael,McClellan Park,North Highlands,Fair Oaks,Antelope,Foothill Farms,Arden-Arcade,La Riviera", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1065, "felt:has_geometry": true, "felt:h3_index": 644721922483215114, "STATEFP": 6, "PLACEFP": 42142, "PLACENS": 2812656, "GEOID": 642142, "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082298, "AWATER": 0, "INTPTLAT": 38.4866914, "INTPTLON": -120.6034249, "NAME": "Lockwood,River Pines,Grizzly Flats,Camino,Pine Grove,West Point,Volcano,Red Corral,Pioneer,Amador City,Plymouth,Fiddletown,Drytown,Sutter Creek,Amador Pines,Buckhorn", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1116, "felt:has_geometry": true, "felt:h3_index": 644721939188048516, "STATEFP": 6, "PLACEFP": 46338, "PLACENS": 2583074, "GEOID": 646338, "NAMELSAD": "Maxwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569332, "AWATER": 0, "INTPTLAT": 39.2770782, "INTPTLON": -122.1946759, "NAME": "Maxwell,Lodoga,Princeton,Colusa,Williams", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 39.300299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 805, "felt:has_geometry": true, "felt:h3_index": 644721950334265260, "STATEFP": 6, "PLACEFP": 22006, "PLACENS": 2628728, "GEOID": 622006, "NAMELSAD": "Elk Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3820501, "AWATER": 81504, "INTPTLAT": 39.5986779, "INTPTLON": -122.5323198, "NAME": "Elk Creek,Stonyford", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 39.571822 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 413, "felt:has_geometry": true, "felt:h3_index": 644721956063023726, "STATEFP": 6, "PLACEFP": 6560, "PLACENS": 2409848, "GEOID": 606560, "NAMELSAD": "Biggs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2317099, "AWATER": 0, "INTPTLAT": 39.4101867, "INTPTLON": -121.7133215, "NAME": "Biggs,Gridley,Oroville,South Oroville,Thermalito,Oroville East,Palermo,Richvale,Live Oak,Sutter,Honcut", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 39.436193 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 522, "felt:has_geometry": true, "felt:h3_index": 644721965368679813, "STATEFP": 6, "PLACEFP": 2910, "PLACENS": 2628707, "GEOID": 602910, "NAMELSAD": "Artois CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7458262, "AWATER": 0, "INTPTLAT": 39.6331786, "INTPTLON": -122.1897577, "NAME": "Artois,Orland,Nord,Hamilton City,Willows", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 39.639538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 382, "felt:has_geometry": true, "felt:h3_index": 644721974489566092, "STATEFP": 6, "PLACEFP": 13945, "PLACENS": 2409479, "GEOID": 613945, "NAMELSAD": "Clearlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26235110, "AWATER": 1167608, "INTPTLAT": 38.9600452, "INTPTLON": -122.6332316, "NAME": "Clearlake,Lower Lake,Rumsey,Hidden Valley Lake,Middletown,Guinda,Tancred", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1189, "felt:has_geometry": true, "felt:h3_index": 644721982539041578, "STATEFP": 6, "PLACEFP": 51294, "PLACENS": 2408925, "GEOID": 651294, "NAMELSAD": "Nice CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4472124, "AWATER": 12228, "INTPTLAT": 39.1261812, "INTPTLON": -122.8553295, "NAME": "Nice,Upper Lake,Soda Bay,Lucerne,Kelseyville,Clearlake Riviera,North Lakeport,Lakeport,Spring Valley,Clearlake Oaks", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 39.095963 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 517, "felt:has_geometry": true, "felt:h3_index": 644721992046339372, "STATEFP": 6, "PLACEFP": 2420, "PLACENS": 2407755, "GEOID": 602420, "NAMELSAD": "Arbuckle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4559938, "AWATER": 0, "INTPTLAT": 39.0141947, "INTPTLON": -122.0610427, "NAME": "Arbuckle,College City,Meridian,Grimes,Dunnigan,Robbins", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 595, "felt:has_geometry": true, "felt:h3_index": 644722007611057680, "STATEFP": 6, "PLACEFP": 8478, "PLACENS": 2582951, "GEOID": 608478, "NAMELSAD": "Brookdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9963087, "AWATER": 0, "INTPTLAT": 37.1057317, "INTPTLON": -122.110623, "NAME": "Brookdale,Lompico,Boulder Creek,Bonny Doon,Ben Lomond,Felton,Mount Hermon,Monte Sereno,Cambrian Park,Los Gatos,Lexington Hills,Santa Cruz,Davenport,Zayante,Scotts Valley,Live Oak,Twin Lakes,Capitola,Pleasure Point,Pasatiempo,Paradise Park,Aptos,Soquel,Seacliff", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 76, "felt:has_geometry": true, "felt:h3_index": 644722016601598709, "STATEFP": 6, "PLACEFP": 31708, "PLACENS": 2410685, "GEOID": 631708, "NAMELSAD": "Half Moon Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16166728, "AWATER": 28378, "INTPTLAT": 37.467319, "INTPTLON": -122.4404845, "NAME": "Half Moon Bay,Highlands,San Carlos,Emerald Lake Hills,San Mateo,Belmont,Baywood Park,Woodside,Montara,Moss Beach,Pacifica,El Granada,Portola Valley,La Honda,Pescadero,Loma Mar", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.439974 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 114, "felt:has_geometry": true, "felt:h3_index": 644722025354083556, "STATEFP": 6, "PLACEFP": 49278, "PLACENS": 2411162, "GEOID": 649278, "NAMELSAD": "Morgan Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33509082, "AWATER": 0, "INTPTLAT": 37.132495, "INTPTLON": -121.6418905, "NAME": "Morgan Hill,San Jose,San Martin,Gilroy", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 350, "felt:has_geometry": true, "felt:h3_index": 644722034050507336, "STATEFP": 6, "PLACEFP": 50916, "PLACENS": 2411238, "GEOID": 650916, "NAMELSAD": "Newark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36051023, "AWATER": 60526, "INTPTLAT": 37.5042533, "INTPTLON": -122.0319104, "NAME": "Newark,Fremont,Redwood City,Foster City,Sunol,Castro Valley,Fairview,Pleasanton,Union City,Hayward,Santa Clara,Sunnyvale,Saratoga,Cupertino,Fruitdale,Burbank,Campbell,Stanford,Palo Alto,Atherton,North Fair Oaks,West Menlo Park,Mountain View,East Palo Alto,Menlo Park,Los Altos Hills,Ladera,Los Altos,Loyola,Alum Rock,East Foothills,Milpitas", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1166, "felt:has_geometry": true, "felt:h3_index": 644722059118655296, "STATEFP": 6, "PLACEFP": 49488, "PLACENS": 2408874, "GEOID": 649488, "NAMELSAD": "Moss Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1016538, "AWATER": 544792, "INTPTLAT": 36.8053889, "INTPTLON": -121.786577, "NAME": "Moss Landing,Pajaro Dunes,Elkhorn,Las Lomas,Castroville,Aromas,San Juan Bautista,Amesti,Corralitos,Freedom,Day Valley,Watsonville,Rio del Mar,Aptos Hills-Larkin Valley,La Selva Beach,Interlaken,Pajaro,Marina,Sand City,Seaside,Prunedale,Salinas,Boronda", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 474, "felt:has_geometry": true, "felt:h3_index": 644722094550163509, "STATEFP": 6, "PLACEFP": 67000, "PLACENS": 2411786, "GEOID": 667000, "NAME": "San Francisco", "NAMELSAD": "San Francisco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 121045788, "AWATER": 479608103, "INTPTLAT": 37.7272391, "INTPTLON": -123.0322294, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -123.046875, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 160, "felt:has_geometry": true, "felt:h3_index": 644722145110743462, "STATEFP": 6, "PLACEFP": 61068, "PLACENS": 2410962, "GEOID": 661068, "NAMELSAD": "Riverbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12201597, "AWATER": 68157, "INTPTLAT": 37.7260221, "INTPTLON": -120.9448404, "NAME": "Riverbank,Escalon,Del Rio,Oakdale,Ripon,Manteca,East Oakdale,Farmington,Valley Home,Cowan,Rouse,West Modesto,Airport,Bystrom,Modesto,Bret Harte,Riverdale Park,Parklawn,Ceres,Hughson,Empire,Monterey Park Tract,Keyes,Salida,Grayson,Waterford,Hickman", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1053, "felt:has_geometry": true, "felt:h3_index": 644722153686720537, "STATEFP": 6, "PLACEFP": 41558, "PLACENS": 2408612, "GEOID": 641558, "NAMELSAD": "Lincoln Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1903792, "AWATER": 0, "INTPTLAT": 38.0054709, "INTPTLON": -121.3338427, "NAME": "Lincoln Village,Morada,Country Club,Stockton,August,Terminous,Victor,Lockeford,Waterloo,Woodbridge,Collierville,Acampo,Lodi,French Camp,Taft Mosswood,Lathrop,Discovery Bay,Peters,Linden,Garden Acres,Kennedy", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 671, "felt:has_geometry": true, "felt:h3_index": 644722162245424841, "STATEFP": 6, "PLACEFP": 13182, "PLACENS": 2408028, "GEOID": 613182, "NAMELSAD": "Chinese Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2325639, "AWATER": 6504, "INTPTLAT": 37.8702154, "INTPTLON": -120.444225, "NAME": "Chinese Camp,Copperopolis,East Sonora,Soulsbyville,Tuolumne City,Tuttletown,Columbia,Jamestown,Sonora,La Grange,Lake Don Pedro,Orange Blossom,Knights Ferry,Groveland,Coulterville", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1519, "felt:has_geometry": true, "felt:h3_index": 644722171019735662, "STATEFP": 6, "PLACEFP": 81890, "PLACENS": 2409398, "GEOID": 681890, "NAMELSAD": "Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10344077, "AWATER": 0, "INTPTLAT": 38.1694383, "INTPTLON": -120.825992, "NAME": "Valley Springs,Rancho Calaveras,Wallace,Camanche Village,Camanche North Shore,San Andreas,Mokelumne Hill,Jackson,Martell,Angels", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 718, "felt:has_geometry": true, "felt:h3_index": 644722179814613913, "STATEFP": 6, "PLACEFP": 17428, "PLACENS": 2582988, "GEOID": 617428, "NAMELSAD": "Crows Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4282672, "AWATER": 0, "INTPTLAT": 37.3944426, "INTPTLON": -121.0751665, "NAME": "Crows Landing,Diablo Grande,Patterson,Newman,Gustine", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1169, "felt:has_geometry": true, "felt:h3_index": 644722191894960664, "STATEFP": 6, "PLACEFP": 49582, "PLACENS": 2628761, "GEOID": 649582, "NAMELSAD": "Mountain House CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11804529, "AWATER": 0, "INTPTLAT": 37.7673008, "INTPTLON": -121.5449342, "NAME": "Mountain House,Tracy,Westley", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1577, "felt:has_geometry": true, "felt:h3_index": 644722197092022646, "STATEFP": 6, "PLACEFP": 86076, "PLACENS": 2409616, "GEOID": 686076, "NAMELSAD": "Winton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7875727, "AWATER": 0, "INTPTLAT": 37.3854272, "INTPTLON": -120.6173641, "NAME": "Winton,Cressey,Denair,Delhi,Turlock,Ballico,Snelling,Atwater,McSwain,Franklin,Hilmar-Irwin,Livingston,Stevinson,University of California-Merced,Merced,Bear Creek,Tuttle", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 32, "felt:has_geometry": true, "felt:h3_index": 644737283856424154, "STATEFP": 6, "PLACEFP": 54652, "PLACENS": 2411347, "GEOID": 654652, "NAME": "Oxnard", "NAMELSAD": "Oxnard city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68707177, "AWATER": 32677585, "INTPTLAT": 34.1994364, "INTPTLON": -119.2075154, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -119.179688, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 425, "felt:has_geometry": true, "felt:h3_index": 644737290365243523, "STATEFP": 6, "PLACEFP": 69070, "PLACENS": 2411815, "GEOID": 669070, "NAMELSAD": "Santa Barbara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50517342, "AWATER": 58271494, "INTPTLAT": 34.4006009, "INTPTLON": -119.7129545, "NAME": "Santa Barbara,Montecito,Summerland,Oak View,Meiners Oaks,Ojai,Mira Monte,Carpinteria,Toro Canyon,San Buenaventura (Ventura),Channel Islands Beach,Port Hueneme", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 424, "felt:has_geometry": true, "felt:h3_index": 644737350721453443, "STATEFP": 6, "PLACEFP": 42524, "PLACENS": 2410860, "GEOID": 642524, "NAMELSAD": "Lompoc city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30103860, "AWATER": 201559, "INTPTLAT": 34.6626889, "INTPTLON": -120.470837, "NAME": "Lompoc,Solvang,Buellton,Santa Ynez,Los Olivos,Ballard,Los Alamos", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 34.669359 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 426, "felt:has_geometry": true, "felt:h3_index": 644737360445248156, "STATEFP": 6, "PLACEFP": 69196, "PLACENS": 2411824, "GEOID": 669196, "NAMELSAD": "Santa Maria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59078450, "AWATER": 1575636, "INTPTLAT": 34.9330764, "INTPTLON": -120.443559, "NAME": "Santa Maria,Casmalia,Orcutt,Guadalupe,Vandenberg AFB,Vandenberg Village,Mission Hills", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 34.957995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 634, "felt:has_geometry": true, "felt:h3_index": 644737841012000498, "STATEFP": 6, "PLACEFP": 11324, "PLACENS": 2407966, "GEOID": 611324, "NAMELSAD": "Carmel Valley Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49166228, "AWATER": 507112, "INTPTLAT": 36.5006267, "INTPTLON": -121.7318199, "NAME": "Carmel Valley Village,Del Monte Forest,Carmel-by-the-Sea,Del Rey Oaks,Pacific Grove,Monterey", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1472, "felt:has_geometry": true, "felt:h3_index": 644745098859169157, "STATEFP": 6, "PLACEFP": 78050, "PLACENS": 2410062, "GEOID": 678050, "NAME": "Tecopa", "NAMELSAD": "Tecopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48145645, "AWATER": 177237, "INTPTLAT": 35.8205806, "INTPTLON": -116.2050514, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -116.191406, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1400, "felt:has_geometry": true, "felt:h3_index": 644745112573895528, "STATEFP": 6, "PLACEFP": 71680, "PLACENS": 2408733, "GEOID": 671680, "NAME": "Shoshone", "NAMELSAD": "Shoshone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 74361294, "AWATER": 618, "INTPTLAT": 35.9672297, "INTPTLON": -116.3087698, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -116.279297, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 662, "felt:has_geometry": true, "felt:h3_index": 644745127400902894, "STATEFP": 6, "PLACEFP": 12730, "PLACENS": 2804104, "GEOID": 612730, "NAME": "Charleston View", "NAMELSAD": "Charleston View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1949194, "AWATER": 0, "INTPTLAT": 35.9646291, "INTPTLON": -115.8972354, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -115.927734, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 531, "felt:has_geometry": true, "felt:h3_index": 644745138290378516, "STATEFP": 6, "PLACEFP": 3512, "PLACENS": 2628708, "GEOID": 603512, "NAME": "Baker", "NAMELSAD": "Baker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6961528, "AWATER": 0, "INTPTLAT": 35.2769184, "INTPTLON": -116.071735, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -116.103516, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 974, "felt:has_geometry": true, "felt:h3_index": 644745180210314029, "STATEFP": 6, "PLACEFP": 37918, "PLACENS": 2408466, "GEOID": 637918, "NAME": "Keeler", "NAMELSAD": "Keeler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987188, "AWATER": 0, "INTPTLAT": 36.4867184, "INTPTLON": -117.87333, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 36.456636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 868, "felt:has_geometry": true, "felt:h3_index": 644745184571321434, "STATEFP": 6, "PLACEFP": 28021, "PLACENS": 2408270, "GEOID": 628021, "NAME": "Furnace Creek", "NAMELSAD": "Furnace Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 81487361, "AWATER": 0, "INTPTLAT": 36.4276693, "INTPTLON": -116.8746901, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 36.456636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 934, "felt:has_geometry": true, "felt:h3_index": 644745200841135824, "STATEFP": 6, "PLACEFP": 34405, "PLACENS": 2583036, "GEOID": 634405, "NAMELSAD": "Homewood Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26546375, "AWATER": 0, "INTPTLAT": 35.8900404, "INTPTLON": -117.3864139, "NAME": "Homewood Canyon,Searles Valley,Valley Wells,Trona", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -117.421875, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1222, "felt:has_geometry": true, "felt:h3_index": 644745210226968732, "STATEFP": 6, "PLACEFP": 53490, "PLACENS": 2408982, "GEOID": 653490, "NAMELSAD": "Olancha CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20311991, "AWATER": 79710, "INTPTLAT": 36.2697874, "INTPTLON": -118.0012577, "NAME": "Olancha,Darwin", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 36.244273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1524, "felt:has_geometry": true, "felt:h3_index": 644745442198637355, "STATEFP": 6, "PLACEFP": 82334, "PLACENS": 2583175, "GEOID": 682334, "NAMELSAD": "Verdi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10808119, "AWATER": 34863, "INTPTLAT": 39.5269686, "INTPTLON": -120.0233943, "NAME": "Verdi,Floriston", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 39.504041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 669, "felt:has_geometry": true, "felt:h3_index": 644745449965964333, "STATEFP": 6, "PLACEFP": 13077, "PLACENS": 2408024, "GEOID": 613077, "NAMELSAD": "Chilcoot-Vinton CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34207854, "AWATER": 0, "INTPTLAT": 39.806744, "INTPTLON": -120.1388608, "NAME": "Chilcoot-Vinton,Beckwourth,Sierra Brooks,Loyalton,Sierraville,Sattley", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1455, "felt:has_geometry": true, "felt:h3_index": 644745476582229400, "STATEFP": 6, "PLACEFP": 76015, "PLACENS": 2410030, "GEOID": 676015, "NAMELSAD": "Sunnyside-Tahoe City CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9016274, "AWATER": 858519, "INTPTLAT": 39.1483181, "INTPTLON": -120.1709376, "NAME": "Sunnyside-Tahoe City,Dollar Point,Tahoma,Kings Beach,Tahoe Vista,South Lake Tahoe,Meyers", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 39.164141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1417, "felt:has_geometry": true, "felt:h3_index": 644745484573366443, "STATEFP": 6, "PLACEFP": 72492, "PLACENS": 2628790, "GEOID": 672492, "NAMELSAD": "Soda Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 872163, "AWATER": 0, "INTPTLAT": 39.3247879, "INTPTLON": -120.3786654, "NAME": "Soda Springs,Truckee,Kingvale,Carnelian Bay,Cedar Flat", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 39.300299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 552, "felt:has_geometry": true, "felt:h3_index": 644745647903540376, "STATEFP": 6, "PLACEFP": 5346, "PLACENS": 2582943, "GEOID": 605346, "NAME": "Benton", "NAMELSAD": "Benton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73732744, "AWATER": 52423, "INTPTLAT": 37.8224379, "INTPTLON": -118.4876873, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1245, "felt:has_geometry": true, "felt:h3_index": 644745681741189878, "STATEFP": 6, "PLACEFP": 55528, "PLACENS": 2583105, "GEOID": 655528, "NAMELSAD": "Paradise CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11271636, "AWATER": 0, "INTPTLAT": 37.4828526, "INTPTLON": -118.602213, "NAME": "Paradise,Swall Meadows,McGee Creek,Crowley Lake,Sunny Slopes,Aspen Springs,Round Valley,Mesa,Dixon Lane-MeadowCreek,West Bishop", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -118.564453, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 972, "felt:has_geometry": true, "felt:h3_index": 644745690741369476, "STATEFP": 6, "PLACEFP": 37624, "PLACENS": 2583044, "GEOID": 637624, "NAMELSAD": "June Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26694795, "AWATER": 2048342, "INTPTLAT": 37.7617827, "INTPTLON": -119.1147288, "NAME": "June Lake,Lee Vining,Mammoth Lakes", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 660, "felt:has_geometry": true, "felt:h3_index": 644745704178587667, "STATEFP": 6, "PLACEFP": 12594, "PLACENS": 2582973, "GEOID": 612594, "NAME": "Chalfant", "NAMELSAD": "Chalfant CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 72616470, "AWATER": 73304, "INTPTLAT": 37.4921149, "INTPTLON": -118.3904081, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 990, "felt:has_geometry": true, "felt:h3_index": 644745724699489955, "STATEFP": 6, "PLACEFP": 38646, "PLACENS": 2408489, "GEOID": 638646, "NAMELSAD": "Kirkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11290203, "AWATER": 2525431, "INTPTLAT": 38.689265, "INTPTLON": -120.0549795, "NAME": "Kirkwood,Bear Valley", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 690, "felt:has_geometry": true, "felt:h3_index": 644745734195958914, "STATEFP": 6, "PLACEFP": 14484, "PLACENS": 2582978, "GEOID": 614484, "NAMELSAD": "Coleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49897132, "AWATER": 0, "INTPTLAT": 38.5805614, "INTPTLON": -119.502863, "NAME": "Coleville,Walker,Bridgeport", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -119.531250, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1130, "felt:has_geometry": true, "felt:h3_index": 644745742716440576, "STATEFP": 6, "PLACEFP": 47086, "PLACENS": 2408820, "GEOID": 647086, "NAMELSAD": "Mesa Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12627546, "AWATER": 0, "INTPTLAT": 38.8102875, "INTPTLON": -119.8032665, "NAME": "Mesa Vista,Alpine Village,Markleeville,Topaz", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 38.822591 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1403, "felt:has_geometry": true, "felt:h3_index": 644745751414771748, "STATEFP": 6, "PLACEFP": 71834, "PLACENS": 2583140, "GEOID": 671834, "NAMELSAD": "Sierra Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6661587, "AWATER": 9750, "INTPTLAT": 38.0756273, "INTPTLON": -120.1593364, "NAME": "Sierra Village,Mi-Wuk Village,Pine Mountain Lake,Buck Meadows", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 753, "felt:has_geometry": true, "felt:h3_index": 644745759144041310, "STATEFP": 6, "PLACEFP": 19570, "PLACENS": 2408683, "GEOID": 619570, "NAMELSAD": "Dorrington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10600543, "AWATER": 12551, "INTPTLAT": 38.304479, "INTPTLON": -120.2663205, "NAME": "Dorrington,Arnold,Avery,Rail Road Flat,Cedar Ridge,Phoenix Lake,Mono Vista,Twain Harte,Murphys,Mountain Ranch,Forest Meadows,Vallecito,Strawberry,Long Barn,Cold Springs", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 38.272689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1507, "felt:has_geometry": true, "felt:h3_index": 644745771458388790, "STATEFP": 6, "PLACEFP": 81048, "PLACENS": 2804105, "GEOID": 681048, "NAMELSAD": "Twin Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10798571, "AWATER": 2717491, "INTPTLAT": 38.1628855, "INTPTLON": -119.341063, "NAME": "Twin Lakes,Virginia Lakes,Mono City", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 925, "felt:has_geometry": true, "felt:h3_index": 644747021604116150, "STATEFP": 6, "PLACEFP": 33574, "PLACENS": 2408383, "GEOID": 633574, "NAMELSAD": "Highgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8332742, "AWATER": 0, "INTPTLAT": 34.0105771, "INTPTLON": -117.3098172, "NAME": "Highgrove,Grand Terrace,Loma Linda,March ARB,Moreno Valley,Bloomington,Fontana,Colton,Rialto,Jurupa Valley,Mentone,Redlands,Yucaipa,Calimesa,Highland,San Bernardino,Perris,Mead Valley,Nuevo,Good Hope,Meadowbrook,Woodcrest,Riverside,Home Gardens,El Sobrante,Lake Mathews,Lakeview", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1585, "felt:has_geometry": true, "felt:h3_index": 644747030219340659, "STATEFP": 6, "PLACEFP": 86594, "PLACENS": 2409630, "GEOID": 686594, "NAMELSAD": "Wrightwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15414197, "AWATER": 8669, "INTPTLAT": 34.3459882, "INTPTLON": -117.6275788, "NAME": "Wrightwood,Oak Hills,Hesperia,Piñon Hills,Phelan,Rancho Cucamonga,San Antonio Heights,Ontario,Upland,La Verne,Claremont,Lytle Creek,Muscoy", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1163, "felt:has_geometry": true, "felt:h3_index": 644747041432004253, "STATEFP": 6, "PLACEFP": 49348, "PLACENS": 2408870, "GEOID": 649348, "NAMELSAD": "Morongo Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 65317007, "AWATER": 0, "INTPTLAT": 34.0723774, "INTPTLON": -116.5627267, "NAME": "Morongo Valley,Big Bear City,Cabazon,Whitewater,Banning,Oak Glen,Cherry Valley,Desert Hot Springs", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1433, "felt:has_geometry": true, "felt:h3_index": 644747048544577545, "STATEFP": 6, "PLACEFP": 73700, "PLACENS": 2583150, "GEOID": 673700, "NAMELSAD": "Spring Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7833090, "AWATER": 885216, "INTPTLAT": 34.4968183, "INTPTLON": -117.267587, "NAME": "Spring Valley Lake,Apple Valley,Lucerne Valley,Running Springs,Crestline,Lake Arrowhead,Big Bear Lake", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -117.246094, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 224, "felt:has_geometry": true, "felt:h3_index": 644747056982330284, "STATEFP": 6, "PLACEFP": 59587, "PLACENS": 2411517, "GEOID": 659587, "NAMELSAD": "Rancho Santa Margarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33483309, "AWATER": 122877, "INTPTLAT": 33.6323319, "INTPTLON": -117.5990075, "NAME": "Rancho Santa Margarita,Modjeska,Trabuco Canyon,Las Flores,Coto de Caza,Mission Viejo,Wildomar,Canyon Lake,Menifee,Murrieta,Temescal Valley,Warm Springs,Lake Elsinore,Lakeland Village,San Clemente,Ladera Ranch,San Juan Capistrano,Rancho Mission Viejo", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 263, "felt:has_geometry": true, "felt:h3_index": 644747064429065921, "STATEFP": 6, "PLACEFP": 86832, "PLACENS": 2412321, "GEOID": 686832, "NAMELSAD": "Yorba Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51676743, "AWATER": 52602, "INTPTLAT": 33.8890375, "INTPTLON": -117.7720695, "NAME": "Yorba Linda,Anaheim,Chino Hills,Villa Park,Placentia,La Habra Heights,La Habra,Hacienda Heights,Rowland Heights,South San Jose Hills,Fullerton,South Whittier,East Whittier,Brea,Eastvale,Coronita,Chino,Norco,Pomona,San Dimas,Montclair,Walnut,Diamond Bar,North Tustin,Tustin,Irvine,Lake Forest,Garden Grove,Orange,Fountain Valley,Stanton,Westminster,Midway City,Santa Ana,El Cerrito,Corona,Silverado,Williams Canyon", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1357, "felt:has_geometry": true, "felt:h3_index": 644747073577834850, "STATEFP": 6, "PLACEFP": 64056, "PLACENS": 2812661, "GEOID": 664056, "NAMELSAD": "Sage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 176786860, "AWATER": 15601, "INTPTLAT": 33.594066, "INTPTLON": -116.9103847, "NAME": "Sage,Green Acres,Winchester,Homeland,Romoland,Hemet,Idyllwild-Pine Cove,Mountain Center,Beaumont,East Hemet,Valle Vista,San Jacinto,Lake Riverside,Aguanga,French Valley,Temecula,Anza", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1050, "felt:has_geometry": true, "felt:h3_index": 644747092349047627, "STATEFP": 6, "PLACEFP": 41208, "PLACENS": 2583056, "GEOID": 641208, "NAMELSAD": "Leona Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48155344, "AWATER": 70714, "INTPTLAT": 34.608144, "INTPTLON": -118.3013217, "NAME": "Leona Valley,Lake Hughes,Elizabeth Lake,Green Valley,Santa Clarita,San Fernando,Val Verde,Hasley Canyon,Castaic,Stevenson Ranch,Agua Dulce", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 34.597042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1019, "felt:has_geometry": true, "felt:h3_index": 644747100381466922, "STATEFP": 6, "PLACEFP": 39696, "PLACENS": 2408548, "GEOID": 639696, "NAMELSAD": "Lake of the Woods CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9166577, "AWATER": 1509, "INTPTLAT": 34.8271377, "INTPTLON": -118.997304, "NAME": "Lake of the Woods,Frazier Park,Lebec", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1458, "felt:has_geometry": true, "felt:h3_index": 644747107957582123, "STATEFP": 6, "PLACEFP": 77308, "PLACENS": 2583157, "GEOID": 677308, "NAMELSAD": "Sun Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27981975, "AWATER": 1222, "INTPTLAT": 34.5595244, "INTPTLON": -117.9567582, "NAME": "Sun Village,Littlerock,Lancaster,Quartz Hill,Lake Los Angeles,Desert View Highlands,Palmdale,Acton", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1343, "felt:has_geometry": true, "felt:h3_index": 644747116795790004, "STATEFP": 6, "PLACEFP": 62826, "PLACENS": 2409208, "GEOID": 662826, "NAMELSAD": "Rosamond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 134995228, "AWATER": 551690, "INTPTLAT": 34.8656273, "INTPTLON": -118.2147671, "NAME": "Rosamond,Mojave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1490, "felt:has_geometry": true, "felt:h3_index": 644747124543605603, "STATEFP": 6, "PLACEFP": 78960, "PLACENS": 2583164, "GEOID": 678960, "NAMELSAD": "Topanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49538336, "AWATER": 19528, "INTPTLAT": 34.0967768, "INTPTLON": -118.6060209, "NAME": "Topanga,Calabasas,Hidden Hills,Oak Park,Agoura Hills,Lake Sherwood,Westlake Village,Santa Susana,Bell Canyon,Pepperdine University,Malibu,Los Angeles,Ladera Heights,Culver City,Beverly Hills,Marina del Rey,Santa Monica", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -118.564453, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 31, "felt:has_geometry": true, "felt:h3_index": 644747133490056433, "STATEFP": 6, "PLACEFP": 24092, "PLACENS": 2410504, "GEOID": 624092, "NAMELSAD": "Fillmore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8553766, "AWATER": 0, "INTPTLAT": 34.3989578, "INTPTLON": -118.9174598, "NAME": "Fillmore,Piru,Somis,Moorpark,Santa Rosa Valley,Casa Conejo,Camarillo,Thousand Oaks,Santa Paula,Saticoy,El Rio,Simi Valley", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 504, "felt:has_geometry": true, "felt:h3_index": 644747141745695387, "STATEFP": 6, "PLACEFP": 1290, "PLACENS": 2407732, "GEOID": 601290, "NAMELSAD": "Altadena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21924372, "AWATER": 40734, "INTPTLAT": 34.1922117, "INTPTLON": -118.1355893, "NAME": "Altadena,San Marino,San Pasqual,South Pasadena,Pasadena,Sierra Madre,East Pasadena,Arcadia,Burbank,La Crescenta-Montrose,La Cañada Flintridge,South San Gabriel,Montebello,Alhambra,Monterey Park,South El Monte,Avocado Heights,San Gabriel,Temple City,East San Gabriel,Rosemead,Pico Rivera,Downey,Bell Gardens,East Los Angeles,Maywood,Commerce,Rose Hills,West Whittier-Los Nietos,Whittier,Glendale,West Hollywood,Vincent,Monrovia,Bradbury,Duarte,Glendora,Charter Oak,Citrus,Azusa,West Puente Valley,La Puente,Industry,Valinda,North El Monte,Irwindale,South Monrovia Island,Mayflower Village,El Monte,Baldwin Park,Covina,West Covina", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -118.125000, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 968, "felt:has_geometry": true, "felt:h3_index": 644747194024372355, "STATEFP": 6, "PLACEFP": 37554, "PLACENS": 2408454, "GEOID": 637554, "NAMELSAD": "Joshua Tree CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 93463461, "AWATER": 0, "INTPTLAT": 34.1236329, "INTPTLON": -116.3128622, "NAME": "Joshua Tree,Homestead Valley,Twentynine Palms,Yucca Valley", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -116.279297, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 963, "felt:has_geometry": true, "felt:h3_index": 644747236764377309, "STATEFP": 6, "PLACEFP": 37400, "PLACENS": 2408446, "GEOID": 637400, "NAMELSAD": "Johannesburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6354495, "AWATER": 0, "INTPTLAT": 35.3718756, "INTPTLON": -117.6418025, "NAME": "Johannesburg,Randsburg,Ridgecrest", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 853, "felt:has_geometry": true, "felt:h3_index": 644747245305307165, "STATEFP": 6, "PLACEFP": 25114, "PLACENS": 2628733, "GEOID": 625114, "NAME": "Fort Irwin", "NAMELSAD": "Fort Irwin CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18040432, "AWATER": 0, "INTPTLAT": 35.2477015, "INTPTLON": -116.6834115, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -116.718750, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1408, "felt:has_geometry": true, "felt:h3_index": 644747264891429038, "STATEFP": 6, "PLACEFP": 71964, "PLACENS": 2583143, "GEOID": 671964, "NAMELSAD": "Silver Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13552756, "AWATER": 1165902, "INTPTLAT": 34.7478201, "INTPTLON": -117.3449658, "NAME": "Silver Lakes,Adelanto,Victorville,Mountain View Acres", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1197, "felt:has_geometry": true, "felt:h3_index": 644747270804527410, "STATEFP": 6, "PLACEFP": 51812, "PLACENS": 2408937, "GEOID": 651812, "NAMELSAD": "North Edwards CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33012003, "AWATER": 0, "INTPTLAT": 35.0473324, "INTPTLON": -117.8093616, "NAME": "North Edwards,Boron,California City,Edwards AFB", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1049, "felt:has_geometry": true, "felt:h3_index": 644747280253347606, "STATEFP": 6, "PLACEFP": 41194, "PLACENS": 2408601, "GEOID": 641194, "NAMELSAD": "Lenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5389420, "AWATER": 0, "INTPTLAT": 34.8860557, "INTPTLON": -117.1077727, "NAME": "Lenwood,Barstow,Yermo", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 342, "felt:has_geometry": true, "felt:h3_index": 644747298923432365, "STATEFP": 6, "PLACEFP": 58520, "PLACENS": 2411480, "GEOID": 658520, "NAMELSAD": "Poway city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 101210495, "AWATER": 223435, "INTPTLAT": 32.9876765, "INTPTLON": -117.0218144, "NAME": "Poway,Santee,Solana Beach,Encinitas,Fairbanks Ranch,Rancho Santa Fe,Del Mar,Coronado,Lemon Grove,San Diego,La Mesa,Casa de Oro-Mount Helix,National City,La Presa,Bonita", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -116.982422, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 629, "felt:has_geometry": true, "felt:h3_index": 644747307116790155, "STATEFP": 6, "PLACEFP": 10561, "PLACENS": 2407947, "GEOID": 610561, "NAMELSAD": "Camp Pendleton South CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17965903, "AWATER": 1062655, "INTPTLAT": 33.2318244, "INTPTLON": -117.391998, "NAME": "Camp Pendleton South,Oceanside", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -117.421875, 33.211116 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 501, "felt:has_geometry": true, "felt:h3_index": 644747314123622017, "STATEFP": 6, "PLACEFP": 1192, "PLACENS": 2407726, "GEOID": 601192, "NAMELSAD": "Alpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69374324, "AWATER": 1475, "INTPTLAT": 32.842487, "INTPTLON": -116.7559106, "NAME": "Alpine,Ramona,San Diego Country Estates,Winter Gardens,Lakeside,Granite Hills,Eucalyptus Hills,Harbison Canyon,Rancho San Diego,El Cajon,Bostonia,Crest,Descanso,Pine Valley", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -116.718750, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1608, "felt:has_geometry": true, "felt:h3_index": 644747322470885632, "STATEFP": 6, "PLACEFP": 81736, "PLACENS": 2409396, "GEOID": 681736, "NAMELSAD": "Valley Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71083460, "AWATER": 0, "INTPTLAT": 33.2329944, "INTPTLON": -117.015763, "NAME": "Valley Center,Hidden Meadows,Fallbrook,Camp Pendleton Mainside,Bonsall,Pala,Rainbow,Harmony Grove,Escondido,Elfin Forest,Del Dios,San Marcos,Vista,Carlsbad,Lake San Marcos", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -116.982422, 33.211116 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 319, "felt:has_geometry": true, "felt:h3_index": 644747349465553050, "STATEFP": 6, "PLACEFP": 13392, "PLACENS": 2409461, "GEOID": 613392, "NAMELSAD": "Chula Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 128560729, "AWATER": 6360807, "INTPTLAT": 32.6276701, "INTPTLON": -117.0151696, "NAME": "Chula Vista,Imperial Beach,Spring Valley,Jamul", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -116.982422, 32.620870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 415, "felt:has_geometry": true, "felt:h3_index": 644747371654271030, "STATEFP": 6, "PLACEFP": 3274, "PLACENS": 2409763, "GEOID": 603274, "NAME": "Avalon", "NAMELSAD": "Avalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7473920, "AWATER": 12349954, "INTPTLAT": 33.3433354, "INTPTLON": -118.3176149, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 236, "felt:has_geometry": true, "felt:h3_index": 644747384394364529, "STATEFP": 6, "PLACEFP": 39178, "PLACENS": 2411595, "GEOID": 639178, "NAMELSAD": "Laguna Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23037592, "AWATER": 2512773, "INTPTLAT": 33.54337, "INTPTLON": -117.7618013, "NAME": "Laguna Beach,Laguna Woods,Aliso Viejo,Laguna Hills,Laguna Niguel,Dana Point,Costa Mesa,Newport Beach", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1552, "felt:has_geometry": true, "felt:h3_index": 644747391002831275, "STATEFP": 6, "PLACEFP": 84144, "PLACENS": 2409546, "GEOID": 684144, "NAMELSAD": "West Carson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5868539, "AWATER": 33313, "INTPTLAT": 33.8231392, "INTPTLON": -118.2936849, "NAME": "West Carson,Lomita,Signal Hill,Long Beach,Carson,Rolling Hills,Rolling Hills Estates,Hermosa Beach,Alondra Park,Lawndale,Redondo Beach,El Segundo,Manhattan Beach,Palos Verdes Estates,Torrance,Artesia,Cerritos,Lakewood,Paramount,Bellflower,La Mirada,Buena Park,Santa Fe Springs,Norwalk,Cypress,Hawaiian Gardens,La Palma,Los Alamitos,West Rancho Dominguez,West Athens,Willowbrook,View Park-Windsor Hills,South Gate,Walnut Park,Cudahy,Bell,Lynwood,Vernon,Florence-Graham,Huntington Park,Gardena,Lennox,Westmont,Inglewood,Del Aire,Hawthorne,Compton,East Rancho Dominguez,Rancho Palos Verdes,Huntington Beach,Seal Beach,Rossmoor", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 741, "felt:has_geometry": true, "felt:h3_index": 644747433847119077, "STATEFP": 6, "PLACEFP": 19024, "PLACENS": 2408665, "GEOID": 619024, "NAMELSAD": "Desert Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1809312, "AWATER": 294345, "INTPTLAT": 33.4038032, "INTPTLON": -116.0392059, "NAME": "Desert Shores,Salton Sea Beach,Oasis,North Shore,Mecca,Thermal,Salton City", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -116.015625, 33.431441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 108, "felt:has_geometry": true, "felt:h3_index": 644747442472890388, "STATEFP": 6, "PLACEFP": 55184, "PLACENS": 2411356, "GEOID": 655184, "NAMELSAD": "Palm Desert city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69352308, "AWATER": 528740, "INTPTLAT": 33.7376353, "INTPTLON": -116.3641448, "NAME": "Palm Desert,Rancho Mirage,Bermuda Dunes,Thousand Palms,Indian Wells,Palm Springs,Cathedral City,Indio Hills,Desert Palms,Desert Edge,Garnet,Sky Valley,Coachella,Indio,Vista Santa Rosa,La Quinta", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -116.367188, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 577, "felt:has_geometry": true, "felt:h3_index": 644747456934429382, "STATEFP": 6, "PLACEFP": 7372, "PLACENS": 2407878, "GEOID": 607372, "NAME": "Bombay Beach", "NAMELSAD": "Bombay Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1719105, "AWATER": 0, "INTPTLAT": 33.3556097, "INTPTLON": -115.7269018, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -115.751953, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1178, "felt:has_geometry": true, "felt:h3_index": 644747474043667859, "STATEFP": 6, "PLACEFP": 49810, "PLACENS": 2628763, "GEOID": 649810, "NAME": "Mount Laguna", "NAMELSAD": "Mount Laguna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4395332, "AWATER": 0, "INTPTLAT": 32.871105, "INTPTLON": -116.4246869, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -116.455078, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 970, "felt:has_geometry": true, "felt:h3_index": 644747481633020677, "STATEFP": 6, "PLACEFP": 37582, "PLACENS": 2408455, "GEOID": 637582, "NAMELSAD": "Julian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20424527, "AWATER": 0, "INTPTLAT": 33.0735017, "INTPTLON": -116.588883, "NAME": "Julian,Borrego Springs", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 33.063924 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1191, "felt:has_geometry": true, "felt:h3_index": 644747487865806163, "STATEFP": 6, "PLACEFP": 51392, "PLACENS": 2408926, "GEOID": 651392, "NAMELSAD": "Niland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1040220, "AWATER": 0, "INTPTLAT": 33.2387079, "INTPTLON": -115.5144396, "NAME": "Niland,Calipatria,Westmorland,Brawley", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -115.488281, 33.211116 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1047, "felt:has_geometry": true, "felt:h3_index": 644747572466202214, "STATEFP": 6, "PLACEFP": 41166, "PLACENS": 2408599, "GEOID": 641166, "NAMELSAD": "Lemoore Station CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10965026, "AWATER": 0, "INTPTLAT": 36.2632777, "INTPTLON": -119.9048364, "NAME": "Lemoore Station,Stratford,Armona,Grangeville,Hanford,Home Garden,Lemoore,Kettleman City,Corcoran,Waukena", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -119.882812, 36.244273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1029, "felt:has_geometry": true, "felt:h3_index": 644747580186125331, "STATEFP": 6, "PLACEFP": 40116, "PLACENS": 2408570, "GEOID": 640116, "NAMELSAD": "Lanare CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5232743, "AWATER": 0, "INTPTLAT": 36.4377234, "INTPTLON": -119.9321988, "NAME": "Lanare,Westside,Cantua Creek,Caruthers,Huron,Riverdale", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -119.970703, 36.456636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 406, "felt:has_geometry": true, "felt:h3_index": 644747588564558930, "STATEFP": 6, "PLACEFP": 23616, "PLACENS": 2410485, "GEOID": 623616, "NAMELSAD": "Farmersville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5860074, "AWATER": 0, "INTPTLAT": 36.3047394, "INTPTLON": -119.2086052, "NAME": "Farmersville,Linnell Camp,Hypericum,Tonyville,Exeter,Tooleville,East Tulare Villa,Lindsay,Visalia,Goshen,Patterson Tract,Lemon Cove,Lindcove,Ivanhoe,Woodlake,Woodville,Woodville Farm Labor Camp,Poplar-Cotton Center,Plainview,Matheny,Tulare,El Rancho,Strathmore", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -119.179688, 36.315125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 460, "felt:has_geometry": true, "felt:h3_index": 644747597079579664, "STATEFP": 6, "PLACEFP": 38562, "PLACENS": 2411548, "GEOID": 638562, "NAMELSAD": "Kingsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9627176, "AWATER": 0, "INTPTLAT": 36.5251925, "INTPTLON": -119.5665645, "NAME": "Kingsburg,Selma,El Monte Mobile Village,Parlier,Delft Colony,London,Fowler,Easton,Monmouth,Bowles,Orange Cove,Reedley,Sanger,Minkler,Centerville,Del Rey,Traver,West Goshen,Laton,Hardwick,Monson,Dinuba,Yettem,Orosi,Sultana", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -119.531250, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1081, "felt:has_geometry": true, "felt:h3_index": 644747612084539746, "STATEFP": 6, "PLACEFP": 44280, "PLACENS": 2408143, "GEOID": 644280, "NAME": "Lost Hills", "NAMELSAD": "Lost Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14378327, "AWATER": 30536, "INTPTLAT": 35.6327212, "INTPTLON": -119.6778893, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 35.603719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 225, "felt:has_geometry": true, "felt:h3_index": 644747614544475188, "STATEFP": 6, "PLACEFP": 3302, "PLACENS": 2409764, "GEOID": 603302, "NAMELSAD": "Avenal city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50459974, "AWATER": 0, "INTPTLAT": 36.0311072, "INTPTLON": -120.1161739, "NAME": "Avenal,Coalinga", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 497, "felt:has_geometry": true, "felt:h3_index": 644747622956296557, "STATEFP": 6, "PLACEFP": 1010, "PLACENS": 2585402, "GEOID": 601010, "NAMELSAD": "Allensworth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8035085, "AWATER": 0, "INTPTLAT": 35.8498779, "INTPTLON": -119.389209, "NAME": "Allensworth,Delano,Alpaugh,Earlimart,Tipton,Pixley,Teviston,McFarland,Wasco,Jovista,Richgrove,Rodriguez Camp", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1496, "felt:has_geometry": true, "felt:h3_index": 644747653026284737, "STATEFP": 6, "PLACEFP": 80364, "PLACENS": 2583166, "GEOID": 680364, "NAMELSAD": "Tres Pinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9327895, "AWATER": 0, "INTPTLAT": 36.7903815, "INTPTLON": -121.3105643, "NAME": "Tres Pinos,Hollister,Ridgemark", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 465, "felt:has_geometry": true, "felt:h3_index": 644747657149768426, "STATEFP": 6, "PLACEFP": 46828, "PLACENS": 2411078, "GEOID": 646828, "NAMELSAD": "Mendota city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8788278, "AWATER": 8333, "INTPTLAT": 36.7575951, "INTPTLON": -120.3804737, "NAME": "Mendota,Firebaugh,Three Rocks,Tranquillity,San Joaquin", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 36.738884 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 198, "felt:has_geometry": true, "felt:h3_index": 644747665924608198, "STATEFP": 6, "PLACEFP": 44028, "PLACENS": 2410878, "GEOID": 644028, "NAMELSAD": "Los Banos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25891767, "AWATER": 320639, "INTPTLAT": 37.0631841, "INTPTLON": -120.8403045, "NAME": "Los Banos,Volta,Santa Nella,El Nido,Dos Palos Y,Dos Palos,South Dos Palos", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 356, "felt:has_geometry": true, "felt:h3_index": 644747675028637091, "STATEFP": 6, "PLACEFP": 38520, "PLACENS": 2411544, "GEOID": 638520, "NAMELSAD": "King City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9833874, "AWATER": 342510, "INTPTLAT": 36.2162833, "INTPTLON": -121.1319616, "NAME": "King City,Greenfield,San Lucas,Pine Canyon", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 36.244273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 292, "felt:has_geometry": true, "felt:h3_index": 644747682967826784, "STATEFP": 6, "PLACEFP": 30392, "PLACENS": 2410617, "GEOID": 630392, "NAMELSAD": "Gonzales city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4955568, "AWATER": 98218, "INTPTLAT": 36.505979, "INTPTLON": -121.442918, "NAME": "Gonzales,Spreckels,Chualar,Soledad", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 948, "felt:has_geometry": true, "felt:h3_index": 644747731397256489, "STATEFP": 6, "PLACEFP": 36350, "PLACENS": 2408418, "GEOID": 636350, "NAME": "Independence", "NAMELSAD": "Independence CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12590232, "AWATER": 7190, "INTPTLAT": 36.8303101, "INTPTLON": -118.207855, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 563, "felt:has_geometry": true, "felt:h3_index": 644747734461914507, "STATEFP": 6, "PLACEFP": 6616, "PLACENS": 2407843, "GEOID": 606616, "NAMELSAD": "Big Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7636605, "AWATER": 4831, "INTPTLAT": 37.1655071, "INTPTLON": -118.2962618, "NAME": "Big Pine,Bishop,Wilkerson", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1611, "felt:has_geometry": true, "felt:h3_index": 644747744295196939, "STATEFP": 6, "PLACEFP": 78638, "PLACENS": 2409316, "GEOID": 678638, "NAMELSAD": "Three Rivers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80245468, "AWATER": 268932, "INTPTLAT": 36.440041, "INTPTLON": -118.8802803, "NAME": "Three Rivers,Silver City,Sequoia Crest,Camp Nelson,Pierpoint,Cedar Slope", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 36.456636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 915, "felt:has_geometry": true, "felt:h3_index": 644747751962263715, "STATEFP": 6, "PLACEFP": 32324, "PLACENS": 2585423, "GEOID": 632324, "NAMELSAD": "Hartland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 599099, "AWATER": 0, "INTPTLAT": 36.6538667, "INTPTLON": -118.9588124, "NAME": "Hartland,Squaw Valley,Wilsonia,Seville,East Orosi,Cutler", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 36.668419 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1073, "felt:has_geometry": true, "felt:h3_index": 644747764256103088, "STATEFP": 6, "PLACEFP": 42580, "PLACENS": 2408123, "GEOID": 642580, "NAMELSAD": "Lone Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49299705, "AWATER": 468049, "INTPTLAT": 36.5744471, "INTPTLON": -118.0806101, "NAME": "Lone Pine,Cartago", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 36.597889 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 684, "felt:has_geometry": true, "felt:h3_index": 644747777473030838, "STATEFP": 6, "PLACEFP": 14288, "PLACENS": 2628719, "GEOID": 614288, "NAMELSAD": "Coarsegold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44620400, "AWATER": 172119, "INTPTLAT": 37.2391838, "INTPTLON": -119.7009723, "NAME": "Coarsegold,Yosemite Lakes,Bass Lake,Oakhurst,Nipinnawasee,Ahwahnee,North Fork", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 543, "felt:has_geometry": true, "felt:h3_index": 644747786170317588, "STATEFP": 6, "PLACEFP": 4730, "PLACENS": 2582941, "GEOID": 604730, "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6318984, "AWATER": 3006, "INTPTLAT": 37.5747403, "INTPTLON": -120.1360978, "NAME": "Bear Valley,Mt. Bullion,Midpines,Greeley Hill,Catheys Valley,Hornitos,Bootjack,Mariposa", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 561, "felt:has_geometry": true, "felt:h3_index": 644747799558897750, "STATEFP": 6, "PLACEFP": 6518, "PLACENS": 2628711, "GEOID": 606518, "NAME": "Big Creek", "NAMELSAD": "Big Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1191495, "AWATER": 0, "INTPTLAT": 37.2035645, "INTPTLON": -119.2484886, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 845, "felt:has_geometry": true, "felt:h3_index": 644747804294008897, "STATEFP": 6, "PLACEFP": 24792, "PLACENS": 2830231, "GEOID": 624792, "NAMELSAD": "Foresta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 958026, "AWATER": 0, "INTPTLAT": 37.6987793, "INTPTLON": -119.7482741, "NAME": "Foresta,El Portal,Yosemite Valley,Wawona,Fish Camp,Yosemite West", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1224, "felt:has_geometry": true, "felt:h3_index": 644747812644395803, "STATEFP": 6, "PLACEFP": 53505, "PLACENS": 2583103, "GEOID": 653505, "NAMELSAD": "Old Fig Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4317800, "AWATER": 0, "INTPTLAT": 36.7988446, "INTPTLON": -119.8051281, "NAME": "Old Fig Garden,Parkwood,Madera,Parksdale,La Vina,Friant,Millerton,Fort Washington,Rolling Hills,Bonadelle Ranchos,Madera Ranchos,West Park,Raisin City,Kerman,Biola,Tarpey Village,Clovis,Calwa,Sunnyside,Malaga,Mayfair,Fresno", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 199, "felt:has_geometry": true, "felt:h3_index": 644747820390188740, "STATEFP": 6, "PLACEFP": 13294, "PLACENS": 2409459, "GEOID": 613294, "NAMELSAD": "Chowchilla city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28713589, "AWATER": 119504, "INTPTLAT": 37.1161043, "INTPTLON": -120.2419783, "NAME": "Chowchilla,Fairmead,Le Grand,Planada,Madera Acres", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1394, "felt:has_geometry": true, "felt:h3_index": 644747832495626590, "STATEFP": 6, "PLACEFP": 71246, "PLACENS": 2408722, "GEOID": 671246, "NAMELSAD": "Shaver Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83623481, "AWATER": 5897217, "INTPTLAT": 37.0991842, "INTPTLON": -119.3256772, "NAME": "Shaver Lake,Auberry", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1185, "felt:has_geometry": true, "felt:h3_index": 644747846698677542, "STATEFP": 6, "PLACEFP": 51028, "PLACENS": 2583090, "GEOID": 651028, "NAMELSAD": "New Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1637550, "AWATER": 0, "INTPTLAT": 34.9430572, "INTPTLON": -119.6820182, "NAME": "New Cuyama,Fellows,Taft,Ford City,Taft Heights,South Taft,Maricopa,Derby Acres,Cuyama", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 34.957995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 762, "felt:has_geometry": true, "felt:h3_index": 644747864549918555, "STATEFP": 6, "PLACEFP": 20284, "PLACENS": 2408697, "GEOID": 620284, "NAMELSAD": "Dustin Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9521683, "AWATER": 0, "INTPTLAT": 35.2159286, "INTPTLON": -119.3749872, "NAME": "Dustin Acres,Greenfield,Pumpkin Center,Weedpatch,El Adobe,Old River,Lakeside,Mettler", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 608, "felt:has_geometry": true, "felt:h3_index": 644747872724656994, "STATEFP": 6, "PLACEFP": 9332, "PLACENS": 2407932, "GEOID": 609332, "NAMELSAD": "Buttonwillow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17941128, "AWATER": 0, "INTPTLAT": 35.4092286, "INTPTLON": -119.4406682, "NAME": "Buttonwillow,Mexican Colony,Cherokee Strip,Smith Corner,Valley Acres,McKittrick,Stebbins,Tupman", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 767, "felt:has_geometry": true, "felt:h3_index": 644747884789663564, "STATEFP": 6, "PLACEFP": 20574, "PLACENS": 2813349, "GEOID": 620574, "NAMELSAD": "Eastern Goleta Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42981068, "AWATER": 755520, "INTPTLAT": 34.4439133, "INTPTLON": -119.7854766, "NAME": "Eastern Goleta Valley,Mission Canyon,Goleta,University of California-Santa Barbara,Isla Vista", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 872, "felt:has_geometry": true, "felt:h3_index": 644747894815397417, "STATEFP": 6, "PLACEFP": 29070, "PLACENS": 2583023, "GEOID": 629070, "NAMELSAD": "Garey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3275825, "AWATER": 9827, "INTPTLAT": 34.8858212, "INTPTLON": -120.3137504, "NAME": "Garey,Sisquoc", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -120.322266, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1275, "felt:has_geometry": true, "felt:h3_index": 644747899956521396, "STATEFP": 6, "PLACEFP": 57240, "PLACENS": 2409069, "GEOID": 657240, "NAME": "Pine Mountain Club", "NAMELSAD": "Pine Mountain Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43647394, "AWATER": 16918, "INTPTLAT": 34.8408949, "INTPTLON": -119.1685406, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -119.179688, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 652, "felt:has_geometry": true, "felt:h3_index": 644747915418359645, "STATEFP": 6, "PLACEFP": 12132, "PLACENS": 2407994, "GEOID": 612132, "NAMELSAD": "Cayucos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8028952, "AWATER": 2418782, "INTPTLAT": 35.4395808, "INTPTLON": -120.8898281, "NAME": "Cayucos,Cambria,El Paso de Robles (Paso Robles),Templeton,Lake Nacimiento,Morro Bay,Los Osos,Atascadero,Garden Farms,Santa Margarita", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 35.460670 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1066, "felt:has_geometry": true, "felt:h3_index": 644747925786418421, "STATEFP": 6, "PLACEFP": 42146, "PLACENS": 2583058, "GEOID": 642146, "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28157116, "AWATER": 86923, "INTPTLAT": 35.9400827, "INTPTLON": -121.078282, "NAME": "Lockwood,Fort Hunter Liggett,San Simeon,Oak Shores", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1392, "felt:has_geometry": true, "felt:h3_index": 644747932226194357, "STATEFP": 6, "PLACEFP": 71134, "PLACENS": 2408721, "GEOID": 671134, "NAMELSAD": "Shandon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639224, "AWATER": 113009, "INTPTLAT": 35.6536085, "INTPTLON": -120.3831476, "NAME": "Shandon,Whitley Gardens,Creston", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1366, "felt:has_geometry": true, "felt:h3_index": 644747941889770099, "STATEFP": 6, "PLACEFP": 64476, "PLACENS": 2409249, "GEOID": 664476, "NAMELSAD": "San Ardo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1163657, "AWATER": 0, "INTPTLAT": 36.023699, "INTPTLON": -120.9073068, "NAME": "San Ardo,San Miguel,Bradley", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 789, "felt:has_geometry": true, "felt:h3_index": 644747967039661315, "STATEFP": 6, "PLACEFP": 21565, "PLACENS": 2583005, "GEOID": 621565, "NAMELSAD": "Edna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3158448, "AWATER": 0, "INTPTLAT": 35.2107858, "INTPTLON": -120.6059679, "NAME": "Edna,San Luis Obispo,California Polytechnic State University,Los Ranchos,Nipomo,Los Berros,Blacklake,Callender,Woodlands,Pismo Beach,Avila Beach,Grover Beach,Arroyo Grande,Oceano", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1013, "felt:has_geometry": true, "felt:h3_index": 644747983533164040, "STATEFP": 6, "PLACEFP": 39570, "PLACENS": 2408538, "GEOID": 639570, "NAMELSAD": "Lake Isabella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56239883, "AWATER": 1098346, "INTPTLAT": 35.6370977, "INTPTLON": -118.4826097, "NAME": "Lake Isabella,Mountain Mesa,Squirrel Mountain Valley,Bodfish,Glennville,Alta Sierra,Weldon,Onyx,Wofford Heights,Kernville", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 35.603719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 207, "felt:has_geometry": true, "felt:h3_index": 644747993372731018, "STATEFP": 6, "PLACEFP": 58240, "PLACENS": 2411470, "GEOID": 658240, "NAMELSAD": "Porterville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48294868, "AWATER": 141831, "INTPTLAT": 36.063542, "INTPTLON": -119.0336003, "NAME": "Porterville,East Porterville,Terra Bella,Springville,Woody,Ducor,California Hot Springs,Pine Flat,Idlewild,Posey,McClenney Tract,Poso Park,Sugarloaf Saw Mill,Sugarloaf Village,Panorama Heights", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1257, "felt:has_geometry": true, "felt:h3_index": 644748003553121640, "STATEFP": 6, "PLACEFP": 56294, "PLACENS": 2409043, "GEOID": 656294, "NAMELSAD": "Pearsonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10648134, "AWATER": 210748, "INTPTLAT": 35.8229451, "INTPTLON": -117.87825, "NAME": "Pearsonville,China Lake Acres,Inyokern,Ridgecrest Heights", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1290, "felt:has_geometry": true, "felt:h3_index": 644748011080167693, "STATEFP": 6, "PLACEFP": 58134, "PLACENS": 2585440, "GEOID": 658134, "NAMELSAD": "Ponderosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2099863, "AWATER": 9090, "INTPTLAT": 36.1046931, "INTPTLON": -118.5319148, "NAME": "Ponderosa,Kennedy Meadows", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -118.564453, 36.102376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 975, "felt:has_geometry": true, "felt:h3_index": 644748017925478132, "STATEFP": 6, "PLACEFP": 37946, "PLACENS": 2408467, "GEOID": 637946, "NAMELSAD": "Keene CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24459682, "AWATER": 13903, "INTPTLAT": 35.2317801, "INTPTLON": -118.6130668, "NAME": "Keene,Bear Valley Springs,Edison,Edmundson Acres,Di Giorgio,Lamont,Stallion Springs,Arvin,Tehachapi,Golden Hills,Mountain Meadows", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 927, "felt:has_geometry": true, "felt:h3_index": 644748030809134761, "STATEFP": 6, "PLACEFP": 33689, "PLACENS": 2804409, "GEOID": 633689, "NAMELSAD": "Hillcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3569985, "AWATER": 0, "INTPTLAT": 35.3789699, "INTPTLON": -118.9578535, "NAME": "Hillcrest,La Cresta,East Bakersfield,Cottonwood,Potomac Park,Oildale,Bakersfield Country Club,East Niles,Goodmanville,Rivergrove,Rexland Acres,Casa Loma,Bakersfield,Old Stine,Olde Stockdale,Benton Park,Fairfax,Fuller Acres,Shafter,Rosedale,Greenacres,Tarina,Choctaw Valley", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 331, "felt:has_geometry": true, "felt:h3_index": 644748247045125961, "STATEFP": 6, "PLACEFP": 50734, "PLACENS": 2411220, "GEOID": 650734, "NAME": "Needles", "NAMELSAD": "Needles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79196617, "AWATER": 1289442, "INTPTLAT": 34.8134263, "INTPTLON": -114.6266387, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 564, "felt:has_geometry": true, "felt:h3_index": 644748481924483172, "STATEFP": 6, "PLACEFP": 6635, "PLACENS": 2407844, "GEOID": 606635, "NAMELSAD": "Big River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28050915, "AWATER": 1344398, "INTPTLAT": 34.1398232, "INTPTLON": -114.3620987, "NAME": "Big River,Bluewater", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -114.345703, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 738, "felt:has_geometry": true, "felt:h3_index": 644748511879802058, "STATEFP": 6, "PLACEFP": 18982, "PLACENS": 2582993, "GEOID": 618982, "NAME": "Desert Center", "NAMELSAD": "Desert Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799210, "AWATER": 0, "INTPTLAT": 33.7377986, "INTPTLON": -115.3666216, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -115.400391, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 280, "felt:has_geometry": true, "felt:h3_index": 644748516873606566, "STATEFP": 6, "PLACEFP": 7218, "PLACENS": 2409872, "GEOID": 607218, "NAMELSAD": "Blythe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68645916, "AWATER": 2000747, "INTPTLAT": 33.6535205, "INTPTLON": -114.6218227, "NAME": "Blythe,Mesa Verde", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1297, "felt:has_geometry": true, "felt:h3_index": 645287510434742996, "STATEFP": 6, "PLACEFP": 58478, "PLACENS": 2628778, "GEOID": 658478, "NAMELSAD": "Potrero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8157788, "AWATER": 0, "INTPTLAT": 32.6130891, "INTPTLON": -116.6068146, "NAME": "Potrero,Campo,Boulevard,Jacumba", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -116.630859, 32.620870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1220, "felt:has_geometry": true, "felt:h3_index": 645287527842001954, "STATEFP": 6, "PLACEFP": 53378, "PLACENS": 2408976, "GEOID": 653378, "NAMELSAD": "Ocotillo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22959357, "AWATER": 0, "INTPTLAT": 32.7431265, "INTPTLON": -116.0018794, "NAME": "Ocotillo,Seeley,El Centro Naval Air Facility", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -116.015625, 32.768800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1606, "felt:has_geometry": true, "felt:h3_index": 645287644837329651, "STATEFP": 6, "PLACEFP": 86020, "PLACENS": 2409615, "GEOID": 686020, "NAME": "Winterhaven", "NAMELSAD": "Winterhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 630958, "AWATER": 0, "INTPTLAT": 32.7371834, "INTPTLON": -114.6377979, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 32.768800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1331, "felt:has_geometry": true, "felt:h3_index": 645287667033610280, "STATEFP": 6, "PLACEFP": 61012, "PLACENS": 2583122, "GEOID": 661012, "NAMELSAD": "Ripley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4404857, "AWATER": 0, "INTPTLAT": 33.5237876, "INTPTLON": -114.6529919, "NAME": "Ripley,Palo Verde", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 438, "felt:has_geometry": true, "felt:h3_index": 645287681026633739, "STATEFP": 6, "PLACEFP": 34246, "PLACENS": 2410780, "GEOID": 634246, "NAMELSAD": "Holtville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2988033, "AWATER": 11902, "INTPTLAT": 32.8137812, "INTPTLON": -115.3783188, "NAME": "Holtville,Imperial,El Centro,Calexico,Heber", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -115.400391, 32.842674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "NAME": "Burnt Ranch,Willow Creek,Salyer,Trinity Village", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.813809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "NAME": "Big Lagoon,Trinidad,Westhaven-Moonstone,Blue Lake,McKinleyville,Fieldbrook", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.145570 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -123.090820, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "NAME": "Weitchpec,Hoopa", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -123.706055, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6, "PLACEFP": 59906, "PLACENS": 2628781, "GEOID": 659906, "NAMELSAD": "Redcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190, "AWATER": 0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151, "NAME": "Redcrest,Mad River,Miranda,Phillipsville,Weott,Myers Flat", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -123.925781, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6, "PLACEFP": 25296, "PLACENS": 2410532, "GEOID": 625296, "NAMELSAD": "Fortuna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391, "AWATER": 7169, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161, "NAME": "Fortuna,Fields Landing,Humboldt Hill,Myrtletown,Manila,Indianola,Arcata,Cutten,Pine Hills,Fairhaven,Eureka,Samoa,Bayview,Scotia,Rio Dell,Hydesville,Ferndale,Loleta", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 40.580585 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6, "PLACEFP": 36098, "PLACENS": 2583038, "GEOID": 636098, "NAMELSAD": "Hyampom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399, "AWATER": 0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298, "NAME": "Hyampom,Hayfork,Post Mountain", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 41.277806 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1040, "felt:has_geometry": true, "felt:h3_index": 644718847372672021, "STATEFP": 6, "PLACEFP": 40928, "PLACENS": 2408589, "GEOID": 640928, "NAME": "Laytonville", "NAMELSAD": "Laytonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13908641, "AWATER": 163478, "INTPTLAT": 39.662256, "INTPTLON": -123.4950147, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1396, "felt:has_geometry": true, "felt:h3_index": 644718856146322332, "STATEFP": 6, "PLACEFP": 71372, "PLACENS": 2611448, "GEOID": 671372, "NAMELSAD": "Shelter Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15098010, "AWATER": 0, "INTPTLAT": 40.0389543, "INTPTLON": -124.0558247, "NAME": "Shelter Cove,Garberville,Benbow,Redway,Leggett", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 40.044438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 707, "felt:has_geometry": true, "felt:h3_index": 644718869174552388, "STATEFP": 6, "PLACEFP": 16728, "PLACENS": 2407675, "GEOID": 616728, "NAME": "Covelo", "NAMELSAD": "Covelo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18377116, "AWATER": 111658, "INTPTLAT": 39.8001872, "INTPTLON": -123.2526012, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -123.266602, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 493, "felt:has_geometry": true, "felt:h3_index": 644718873994931008, "STATEFP": 6, "PLACEFP": 786, "PLACENS": 2611374, "GEOID": 600786, "NAMELSAD": "Alderpoint CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6288254, "AWATER": 0, "INTPTLAT": 40.1613467, "INTPTLON": -123.6157293, "NAME": "Alderpoint,Ruth", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -123.618164, 40.145289 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 695, "felt:has_geometry": true, "felt:h3_index": 644718881748979876, "STATEFP": 6, "PLACEFP": 15030, "PLACENS": 2628722, "GEOID": 615030, "NAMELSAD": "Comptche CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987584, "AWATER": 0, "INTPTLAT": 39.2651343, "INTPTLON": -123.5897145, "NAME": "Comptche,Caspar,Fort Bragg,Mendocino,Brooktrails,Albion,Little River", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 680, "felt:has_geometry": true, "felt:h3_index": 644718896773775600, "STATEFP": 6, "PLACEFP": 14008, "PLACENS": 2628718, "GEOID": 614008, "NAME": "Cleone", "NAMELSAD": "Cleone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4126679, "AWATER": 62762, "INTPTLAT": 39.4901542, "INTPTLON": -123.7756919, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 39.504041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1298, "felt:has_geometry": true, "felt:h3_index": 644718902778063776, "STATEFP": 6, "PLACEFP": 58506, "PLACENS": 2628779, "GEOID": 658506, "NAMELSAD": "Potter Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10430292, "AWATER": 73557, "INTPTLAT": 39.3171408, "INTPTLON": -123.10986, "NAME": "Potter Valley,Redwood Valley,Willits", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -123.090820, 39.300299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "NAME": "McArthur,Bieber,Nubieber,Little Valley", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -121.420898, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "NAME": "Likely,Madeline", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 41.211722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6, "PLACEFP": 10732, "PLACENS": 2582963, "GEOID": 610732, "NAMELSAD": "Canby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540, "AWATER": 76979, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186, "NAME": "Canby,Adin,Lookout", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "NAME": "Old Station,Warner Valley", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -121.420898, 40.680638 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "NAME": "Burney,Johnson Park,Fall River Mills,Cassel,Hat Creek", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -121.684570, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "NAME": "Stones Landing,Spaulding", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -120.717773, 40.680638 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6, "PLACEFP": 83850, "PLACENS": 2412201, "GEOID": 683850, "NAMELSAD": "Weed city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111, "AWATER": 13340, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655, "NAME": "Weed,Edgewood,Carrick,Gazelle,Lake Shastina,Mount Shasta", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 41.409776 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 314, "felt:has_geometry": true, "felt:h3_index": 644719613690727203, "STATEFP": 6, "PLACEFP": 86944, "PLACENS": 2412324, "GEOID": 686944, "NAMELSAD": "Yreka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25861889, "AWATER": 188154, "INTPTLAT": 41.7240335, "INTPTLON": -122.6315699, "NAME": "Yreka,Montague,Fort Jones,Greenview,Grenada", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6, "PLACEFP": 78176, "PLACENS": 2410067, "GEOID": 678176, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560, "AWATER": 1194, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1093, "felt:has_geometry": true, "felt:h3_index": 644719631186676889, "STATEFP": 6, "PLACEFP": 44812, "PLACENS": 2408156, "GEOID": 644812, "NAMELSAD": "Macdoel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 432723, "AWATER": 0, "INTPTLAT": 41.8261734, "INTPTLON": -122.0058849, "NAME": "Macdoel,Mount Hebron", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "NAME": "Coffee Creek,Trinity Center,Lakehead", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6, "PLACEFP": 22972, "PLACENS": 2410458, "GEOID": 622972, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757, "AWATER": 2444, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "NAME": "Dunsmuir,McCloud,Castella,Big Bend", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 41.244772 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1187, "felt:has_geometry": true, "felt:h3_index": 644719683479093780, "STATEFP": 6, "PLACEFP": 51168, "PLACENS": 2583092, "GEOID": 651168, "NAMELSAD": "New Pine Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5870148, "AWATER": 0, "INTPTLAT": 41.9872704, "INTPTLON": -120.3009638, "NAME": "New Pine Creek,Fort Bidwell", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -120.278320, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6, "PLACEFP": 20424, "PLACENS": 2628727, "GEOID": 620424, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306, "AWATER": 0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6, "PLACEFP": 17995, "PLACENS": 2582990, "GEOID": 617995, "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441, "AWATER": 4621, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069, "NAME": "Daphnedale Park,Alturas,Lake City,Cedarville,California Pines", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1186, "felt:has_geometry": true, "felt:h3_index": 644719745745081189, "STATEFP": 6, "PLACEFP": 51042, "PLACENS": 2583091, "GEOID": 651042, "NAME": "Newell", "NAMELSAD": "Newell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6233913, "AWATER": 14912, "INTPTLAT": 41.8887312, "INTPTLON": -121.3602488, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 299, "felt:has_geometry": true, "felt:h3_index": 644719784625908842, "STATEFP": 6, "PLACEFP": 19584, "PLACENS": 2410347, "GEOID": 619584, "NAMELSAD": "Dorris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1819374, "AWATER": 40653, "INTPTLAT": 41.9649654, "INTPTLON": -121.9203865, "NAME": "Dorris,Tulelake", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1120, "felt:has_geometry": true, "felt:h3_index": 644719808794191718, "STATEFP": 6, "PLACEFP": 46618, "PLACENS": 2408809, "GEOID": 646618, "NAMELSAD": "Meadow Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22066143, "AWATER": 0, "INTPTLAT": 39.9323117, "INTPTLON": -121.0830864, "NAME": "Meadow Valley,Quincy,Belden,Tobin,Taylorsville,East Quincy,Keddie,Indian Falls,Twain,Paxton,Bucks Lake", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 39.943436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 668, "felt:has_geometry": true, "felt:h3_index": 644719819322821830, "STATEFP": 6, "PLACEFP": 12930, "PLACENS": 2408021, "GEOID": 612930, "NAMELSAD": "Chester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18874561, "AWATER": 209672, "INTPTLAT": 40.3016748, "INTPTLON": -121.2325025, "NAME": "Chester,Lake Almanor West,Butte Meadows,Caribou", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1137, "felt:has_geometry": true, "felt:h3_index": 644719828371281477, "STATEFP": 6, "PLACEFP": 47472, "PLACENS": 2628757, "GEOID": 647472, "NAMELSAD": "Milford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13705685, "AWATER": 14513, "INTPTLAT": 40.1494665, "INTPTLON": -120.3701964, "NAME": "Milford,Lake Davis,Portola,Delleker,Cromberg,Spring Garden,Greenhorn", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 40.145289 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1565, "felt:has_geometry": true, "felt:h3_index": 644719835009731402, "STATEFP": 6, "PLACEFP": 84928, "PLACENS": 2409578, "GEOID": 684928, "NAMELSAD": "Westwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14392892, "AWATER": 182548, "INTPTLAT": 40.3052197, "INTPTLON": -121.0035026, "NAME": "Westwood,Clear Creek,Crescent Mills,Greenville,East Shore,Lake Almanor Country Club,Hamilton Branch,Lake Almanor Peninsula,Canyondam,Prattville,Almanor", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 843, "felt:has_geometry": true, "felt:h3_index": 644719843107942596, "STATEFP": 6, "PLACEFP": 24750, "PLACENS": 2612480, "GEOID": 624750, "NAMELSAD": "Forbestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16250437, "AWATER": 15370, "INTPTLAT": 39.5275837, "INTPTLON": -121.2662224, "NAME": "Forbestown,Clipper Mills,Challenge-Brownsville,Robinson Mill,Berry Creek,Kelly Ridge,La Porte,Dobbins,North San Juan,Rackerby,Bangor,Camptonville,Pike", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 39.537940 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1103, "felt:has_geometry": true, "felt:h3_index": 644719851742904618, "STATEFP": 6, "PLACEFP": 45120, "PLACENS": 2408161, "GEOID": 645120, "NAMELSAD": "Magalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36313238, "AWATER": 10648, "INTPTLAT": 39.8187523, "INTPTLON": -121.6077477, "NAME": "Magalia,Paradise,Concow,Forest Ranch,Cohasset,Stirling City,Butte Valley,Cherokee,Chico,Butte Creek Canyon,Durham,Yankee Hill", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1402, "felt:has_geometry": true, "felt:h3_index": 644719861002316968, "STATEFP": 6, "PLACEFP": 71778, "PLACENS": 2583139, "GEOID": 671778, "NAMELSAD": "Sierra City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569937, "AWATER": 728, "INTPTLAT": 39.5726584, "INTPTLON": -120.6276165, "NAME": "Sierra City,Little Grass Valley,Whitehawk,Clio,Mabie,C-Road,Valley Ranch,Iron Horse,Gold Mountain,Calpine,Johnsville,Plumas Eureka,Mohawk Vista,Blairsden,Graeagle,Graniteville,Goodyears Bar,Downieville", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 39.571822 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6, "PLACEFP": 16630, "PLACENS": 2407668, "GEOID": 616630, "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530, "AWATER": 0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307, "NAME": "Cottonwood,Happy Valley,Anderson,Red Bluff,Lake California,Dales,Bend", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "NAME": "Weaverville,Lewiston,Douglas City,French Gulch,Ono,Shasta,Keswick,Igo,Centerville", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6, "PLACEFP": 71568, "PLACENS": 2408728, "GEOID": 671568, "NAMELSAD": "Shingletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619, "AWATER": 177508, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646, "NAME": "Shingletown,Manton,Whitmore,Paynes Creek,Mineral", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -121.860352, 40.513799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "NAME": "Jones Valley,Montgomery Creek,Round Mountain,Millville,Palo Cedro,Shasta Lake,Bella Vista,Mountain Gate,Redding,Oak Run", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1316, "felt:has_geometry": true, "felt:h3_index": 644719912127851366, "STATEFP": 6, "PLACEFP": 59604, "PLACENS": 2409139, "GEOID": 659604, "NAMELSAD": "Rancho Tehama Reserve CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30267928, "AWATER": 200213, "INTPTLAT": 40.0040029, "INTPTLON": -122.4283397, "NAME": "Rancho Tehama Reserve,Flournoy,Paskenta,Corning", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 40.010787 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6, "PLACEFP": 57666, "PLACENS": 2813355, "GEOID": 657666, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433, "AWATER": 0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 40.346544 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1036, "felt:has_geometry": true, "felt:h3_index": 644719930425005838, "STATEFP": 6, "PLACEFP": 40536, "PLACENS": 2628748, "GEOID": 640536, "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 926091, "AWATER": 0, "INTPTLAT": 40.072141, "INTPTLON": -122.1573122, "NAME": "Las Flores,Gerber,Proberta,Los Molinos,Tehama,Richfield,Vina", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 40.078071 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1254, "felt:has_geometry": true, "felt:h3_index": 644719982062547848, "STATEFP": 6, "PLACEFP": 56140, "PLACENS": 2583109, "GEOID": 656140, "NAMELSAD": "Patton Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9040567, "AWATER": 0, "INTPTLAT": 40.1407242, "INTPTLON": -120.178123, "NAME": "Patton Village,Herlong,Doyle", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 40.145289 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6, "PLACEFP": 41782, "PLACENS": 2628751, "GEOID": 641782, "NAMELSAD": "Litchfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458, "AWATER": 0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054, "NAME": "Litchfield,Susanville,Johnstonville,Janesville", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 910, "felt:has_geometry": true, "felt:h3_index": 644720381597798566, "STATEFP": 6, "PLACEFP": 32030, "PLACENS": 2611423, "GEOID": 632030, "NAME": "Happy Camp", "NAMELSAD": "Happy Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31357295, "AWATER": 618829, "INTPTLAT": 41.8158932, "INTPTLON": -123.3927961, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -123.398438, 41.804078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "NAME": "Kep'el,Wautec", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -123.837891, 41.277806 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 157, "felt:has_geometry": true, "felt:h3_index": 644720401678927874, "STATEFP": 6, "PLACEFP": 17022, "PLACENS": 2410262, "GEOID": 617022, "NAMELSAD": "Crescent City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084451, "AWATER": 1170287, "INTPTLAT": 41.7645143, "INTPTLON": -124.2007785, "NAME": "Crescent City,Bertsch-Oceanview,Gasquet,Hiouchi,Fort Dick,Smith River,Klamath", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -124.189453, 41.771312 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 939, "felt:has_geometry": true, "felt:h3_index": 644720535259223248, "STATEFP": 6, "PLACEFP": 34694, "PLACENS": 2408401, "GEOID": 634694, "NAME": "Hornbrook", "NAMELSAD": "Hornbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3017332, "AWATER": 29395, "INTPTLAT": 41.9045054, "INTPTLON": -122.5583187, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.563477, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 899, "felt:has_geometry": true, "felt:h3_index": 644721733138311369, "STATEFP": 6, "PLACEFP": 31099, "PLACENS": 2408330, "GEOID": 631099, "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21678078, "AWATER": 3847, "INTPTLAT": 38.2638424, "INTPTLON": -122.162496, "NAME": "Green Valley,American Canyon,Sonoma,Napa,Fairfield,Vacaville,Suisun City,Silverado Resort,Port Costa,Crockett,Benicia,Hercules,Rodeo,Martinez,Mountain View,Alhambra Valley,Vallejo", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 38.272689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 355, "felt:has_geometry": true, "felt:h3_index": 644721741584868253, "STATEFP": 6, "PLACEFP": 64140, "PLACENS": 2411758, "GEOID": 664140, "NAMELSAD": "St. Helena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12838322, "AWATER": 327737, "INTPTLAT": 38.5128518, "INTPTLON": -122.4680218, "NAME": "St. Helena,Kenwood,Fulton,Larkfield-Wikiup,Windsor,Angwin,Deer Park,Calistoga,Glen Ellen,Boyes Hot Springs,Eldridge,Fetters Hot Springs-Agua Caliente,El Verano,Temelec,Santa Rosa,Sonoma State University,Rohnert Park,Cotati,Yountville,Rutherford,Oakville", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 916, "felt:has_geometry": true, "felt:h3_index": 644721751107046290, "STATEFP": 6, "PLACEFP": 32340, "PLACENS": 2583031, "GEOID": 632340, "NAMELSAD": "Hartley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16763354, "AWATER": 65391, "INTPTLAT": 38.4203928, "INTPTLON": -121.9508422, "NAME": "Hartley,Dixon,Elmira,Hood,Clarksburg,Freeport,Courtland,Franklin,El Macero,Rio Vista,Isleton,Walnut Grove,Thornton", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 297, "felt:has_geometry": true, "felt:h3_index": 644721759376263982, "STATEFP": 6, "PLACEFP": 86034, "PLACENS": 2412288, "GEOID": 686034, "NAMELSAD": "Winters city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7601165, "AWATER": 64542, "INTPTLAT": 38.5332708, "INTPTLON": -121.975473, "NAME": "Winters,Monument Hills,Madison,Brooks,Esparto,Allendale,Moskowite Corner,University of California-Davis", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 346, "felt:has_geometry": true, "felt:h3_index": 644721767494091681, "STATEFP": 6, "PLACEFP": 6000, "PLACENS": 2409837, "GEOID": 606000, "NAMELSAD": "Berkeley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27018309, "AWATER": 18712737, "INTPTLAT": 37.8656733, "INTPTLON": -122.2987247, "NAME": "Berkeley,Emeryville,Alameda,Sausalito,Marin City,Mill Valley,Tamalpais-Homestead Valley,Tiburon,Belvedere,Corte Madera,Strawberry,Alto,Muir Beach,Orinda,Acalanes Ridge,Lafayette,Saranap,Piedmont,Moraga,Richmond,San Pablo,Rollingwood,North Richmond,El Sobrante,East Richmond Heights,Bayview,Montalvin Manor,Pinole,Tara Hills,El Cerrito,Albany,Kensington,Brisbane,South San Francisco,Burlingame,Hillsborough,San Bruno,Millbrae,Broadmoor,Daly City,Colma,San Leandro,Oakland,Ashland,San Lorenzo,Cherryland", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1188, "felt:has_geometry": true, "felt:h3_index": 644721775715343254, "STATEFP": 6, "PLACEFP": 51280, "PLACENS": 2628764, "GEOID": 651280, "NAMELSAD": "Nicasio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3379839, "AWATER": 0, "INTPTLAT": 38.0606215, "INTPTLON": -122.7008217, "NAME": "Nicasio,San Geronimo,Lagunitas-Forest Knolls,Inverness,Point Reyes Station,Novato,Black Point-Green Point,Petaluma Center,Petaluma,Penngrove,Bolinas,Stinson Beach,Santa Venetia,Lucas Valley-Marinwood,Ross,Kentfield,Larkspur,Fairfax,Woodacre,Sleepy Hollow,San Anselmo,San Rafael", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 394, "felt:has_geometry": true, "felt:h3_index": 644721784669758060, "STATEFP": 6, "PLACEFP": 2252, "PLACENS": 2409715, "GEOID": 602252, "NAMELSAD": "Antioch city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75552859, "AWATER": 1995937, "INTPTLAT": 37.978336, "INTPTLON": -121.7960638, "NAME": "Antioch,Concord,Clyde,Pacheco,Vine Hill,Bay Point,Shell Ridge,Contra Costa Centre,San Miguel,Walnut Creek,North Gate,Pleasant Hill,Reliez Valley,Clayton,Oakley,Bethel Island,Brentwood,Knightsen,Pittsburg,Camino Tassajara,Dublin,Livermore,Danville,Castle Hill,Diablo,Blackhawk,Alamo,Norris Canyon,San Ramon,Byron", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -121.772461, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1387, "felt:has_geometry": true, "felt:h3_index": 644721805181993804, "STATEFP": 6, "PLACEFP": 70712, "PLACENS": 2583133, "GEOID": 670712, "NAMELSAD": "Sea Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41742090, "AWATER": 277559, "INTPTLAT": 38.7252743, "INTPTLON": -123.458314, "NAME": "Sea Ranch,Timber Cove", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -123.442383, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1105, "felt:has_geometry": true, "felt:h3_index": 644721812890509963, "STATEFP": 6, "PLACEFP": 45386, "PLACENS": 2628754, "GEOID": 645386, "NAMELSAD": "Manchester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6780881, "AWATER": 0, "INTPTLAT": 38.9743844, "INTPTLON": -123.6909611, "NAME": "Manchester,Point Arena,Anchor Bay", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -123.706055, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 878, "felt:has_geometry": true, "felt:h3_index": 644721819421902640, "STATEFP": 6, "PLACEFP": 29420, "PLACENS": 2583024, "GEOID": 629420, "NAMELSAD": "Geyserville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11690104, "AWATER": 0, "INTPTLAT": 38.7173139, "INTPTLON": -122.9034234, "NAME": "Geyserville,Cloverdale,Cobb,Healdsburg", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 582, "felt:has_geometry": true, "felt:h3_index": 644721827939161384, "STATEFP": 6, "PLACEFP": 7512, "PLACENS": 2628712, "GEOID": 607512, "NAMELSAD": "Boonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14355353, "AWATER": 0, "INTPTLAT": 39.0114745, "INTPTLON": -123.3740428, "NAME": "Boonville,Philo,Talmage,Calpella,Ukiah,Hopland", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -123.354492, 38.993572 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1390, "felt:has_geometry": true, "felt:h3_index": 644721853001019636, "STATEFP": 6, "PLACEFP": 71000, "PLACENS": 2583134, "GEOID": 671000, "NAMELSAD": "Sereno del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1909750, "AWATER": 0, "INTPTLAT": 38.3836712, "INTPTLON": -123.0731482, "NAME": "Sereno del Mar,Carmet,Salmon Creek,Bodega Bay,Graton,Forestville,Occidental,Sebastopol,Cazadero,Guerneville,Jenner,Monte Rio,Dillon Beach,Bodega,Valley Ford,Bloomfield,Tomales", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -123.090820, 38.376115 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 526, "felt:has_geometry": true, "felt:h3_index": 644721870536811062, "STATEFP": 6, "PLACEFP": 3205, "PLACENS": 2582982, "GEOID": 603205, "NAMELSAD": "Auburn Lake Trails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32963739, "AWATER": 56719, "INTPTLAT": 38.8862376, "INTPTLON": -120.9796991, "NAME": "Auburn Lake Trails,Auburn,Lincoln,Penryn,Newcastle,Georgetown,Lake of the Pines,Meadow Vista,North Auburn,Cameron Park,Shingle Springs,El Dorado Hills,Granite Bay,Loomis,Orangevale,Citrus Heights,Folsom,Coloma,Diamond Springs,Cold Springs,Placerville", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 797, "felt:has_geometry": true, "felt:h3_index": 644721878823036244, "STATEFP": 6, "PLACEFP": 4576, "PLACENS": 2407813, "GEOID": 604576, "NAMELSAD": "Beale AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26139571, "AWATER": 25614, "INTPTLAT": 39.1080613, "INTPTLON": -121.3512148, "NAME": "Beale AFB,Wheatland,Linda,Marysville,Yuba City,Penn Valley,Lake Wildwood,Rough and Ready,Smartsville,Loma Rica,Sheridan,Olivehurst,Plumas Lake,Rio Oso", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 39.095963 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1289, "felt:has_geometry": true, "felt:h3_index": 644721892361966609, "STATEFP": 6, "PLACEFP": 58030, "PLACENS": 2409086, "GEOID": 658030, "NAME": "Pollock Pines", "NAMELSAD": "Pollock Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22335059, "AWATER": 83617, "INTPTLAT": 38.7576414, "INTPTLON": -120.5909566, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 763, "felt:has_geometry": true, "felt:h3_index": 644721896008771724, "STATEFP": 6, "PLACEFP": 20298, "PLACENS": 2628726, "GEOID": 620298, "NAMELSAD": "Dutch Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1534848, "AWATER": 0, "INTPTLAT": 39.2080078, "INTPTLON": -120.834476, "NAME": "Dutch Flat,Alta,Nevada City,Grass Valley,Alleghany,Washington,Foresthill,Alta Sierra,Colfax", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 39.198205 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1575, "felt:has_geometry": true, "felt:h3_index": 644721905207916763, "STATEFP": 6, "PLACEFP": 85880, "PLACENS": 2409604, "GEOID": 685880, "NAMELSAD": "Wilton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75115869, "AWATER": 0, "INTPTLAT": 38.4129769, "INTPTLON": -121.2127181, "NAME": "Wilton,Vineyard,Rosemont,Elk Grove,Florin,Rancho Murieta,Gold River,Rancho Cordova,Mather,Herald,Clay,Dogtown,Galt,Ione,Buena Vista", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 817, "felt:has_geometry": true, "felt:h3_index": 644721913361409796, "STATEFP": 6, "PLACEFP": 22524, "PLACENS": 2583010, "GEOID": 622524, "NAMELSAD": "Elverta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22900221, "AWATER": 0, "INTPTLAT": 38.7184638, "INTPTLON": -121.4454754, "NAME": "Elverta,Rio Linda,Knights Landing,Yolo,Rocklin,Roseville,Nicolaus,Trowbridge,East Nicolaus,West Sacramento,Sacramento,Lemon Hill,Fruitridge Pocket,Parkway,Woodland,Davis,Carmichael,McClellan Park,North Highlands,Fair Oaks,Antelope,Foothill Farms,Arden-Arcade,La Riviera", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -121.420898, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1065, "felt:has_geometry": true, "felt:h3_index": 644721922483215114, "STATEFP": 6, "PLACEFP": 42142, "PLACENS": 2812656, "GEOID": 642142, "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082298, "AWATER": 0, "INTPTLAT": 38.4866914, "INTPTLON": -120.6034249, "NAME": "Lockwood,River Pines,Grizzly Flats,Camino,Pine Grove,West Point,Volcano,Red Corral,Pioneer,Amador City,Plymouth,Fiddletown,Drytown,Sutter Creek,Amador Pines,Buckhorn", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1116, "felt:has_geometry": true, "felt:h3_index": 644721939188048516, "STATEFP": 6, "PLACEFP": 46338, "PLACENS": 2583074, "GEOID": 646338, "NAMELSAD": "Maxwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569332, "AWATER": 0, "INTPTLAT": 39.2770782, "INTPTLON": -122.1946759, "NAME": "Maxwell,Lodoga,Princeton,Colusa,Williams", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 805, "felt:has_geometry": true, "felt:h3_index": 644721950334265260, "STATEFP": 6, "PLACEFP": 22006, "PLACENS": 2628728, "GEOID": 622006, "NAMELSAD": "Elk Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3820501, "AWATER": 81504, "INTPTLAT": 39.5986779, "INTPTLON": -122.5323198, "NAME": "Elk Creek,Stonyford", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 39.605688 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 413, "felt:has_geometry": true, "felt:h3_index": 644721956063023726, "STATEFP": 6, "PLACEFP": 6560, "PLACENS": 2409848, "GEOID": 606560, "NAMELSAD": "Biggs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2317099, "AWATER": 0, "INTPTLAT": 39.4101867, "INTPTLON": -121.7133215, "NAME": "Biggs,Gridley,Oroville,South Oroville,Thermalito,Oroville East,Palermo,Richvale,Live Oak,Sutter,Honcut", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 522, "felt:has_geometry": true, "felt:h3_index": 644721965368679813, "STATEFP": 6, "PLACEFP": 2910, "PLACENS": 2628707, "GEOID": 602910, "NAMELSAD": "Artois CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7458262, "AWATER": 0, "INTPTLAT": 39.6331786, "INTPTLON": -122.1897577, "NAME": "Artois,Orland,Nord,Hamilton City,Willows", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 39.639538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 382, "felt:has_geometry": true, "felt:h3_index": 644721974489566092, "STATEFP": 6, "PLACEFP": 13945, "PLACENS": 2409479, "GEOID": 613945, "NAMELSAD": "Clearlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26235110, "AWATER": 1167608, "INTPTLAT": 38.9600452, "INTPTLON": -122.6332316, "NAME": "Clearlake,Lower Lake,Rumsey,Hidden Valley Lake,Middletown,Guinda,Tancred", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.651367, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1189, "felt:has_geometry": true, "felt:h3_index": 644721982539041578, "STATEFP": 6, "PLACEFP": 51294, "PLACENS": 2408925, "GEOID": 651294, "NAMELSAD": "Nice CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4472124, "AWATER": 12228, "INTPTLAT": 39.1261812, "INTPTLON": -122.8553295, "NAME": "Nice,Upper Lake,Soda Bay,Lucerne,Kelseyville,Clearlake Riviera,North Lakeport,Lakeport,Spring Valley,Clearlake Oaks", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 517, "felt:has_geometry": true, "felt:h3_index": 644721992046339372, "STATEFP": 6, "PLACEFP": 2420, "PLACENS": 2407755, "GEOID": 602420, "NAMELSAD": "Arbuckle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4559938, "AWATER": 0, "INTPTLAT": 39.0141947, "INTPTLON": -122.0610427, "NAME": "Arbuckle,College City,Meridian,Grimes,Dunnigan,Robbins", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 595, "felt:has_geometry": true, "felt:h3_index": 644722007611057680, "STATEFP": 6, "PLACEFP": 8478, "PLACENS": 2582951, "GEOID": 608478, "NAMELSAD": "Brookdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9963087, "AWATER": 0, "INTPTLAT": 37.1057317, "INTPTLON": -122.110623, "NAME": "Brookdale,Lompico,Boulder Creek,Bonny Doon,Ben Lomond,Felton,Mount Hermon,Monte Sereno,Cambrian Park,Los Gatos,Lexington Hills,Santa Cruz,Davenport,Zayante,Scotts Valley,Live Oak,Twin Lakes,Capitola,Pleasure Point,Pasatiempo,Paradise Park,Aptos,Soquel,Seacliff", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.124023, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 76, "felt:has_geometry": true, "felt:h3_index": 644722016601598709, "STATEFP": 6, "PLACEFP": 31708, "PLACENS": 2410685, "GEOID": 631708, "NAMELSAD": "Half Moon Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16166728, "AWATER": 28378, "INTPTLAT": 37.467319, "INTPTLON": -122.4404845, "NAME": "Half Moon Bay,Highlands,San Carlos,Emerald Lake Hills,San Mateo,Belmont,Baywood Park,Woodside,Montara,Moss Beach,Pacifica,El Granada,Portola Valley,La Honda,Pescadero,Loma Mar", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 114, "felt:has_geometry": true, "felt:h3_index": 644722025354083556, "STATEFP": 6, "PLACEFP": 49278, "PLACENS": 2411162, "GEOID": 649278, "NAMELSAD": "Morgan Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33509082, "AWATER": 0, "INTPTLAT": 37.132495, "INTPTLON": -121.6418905, "NAME": "Morgan Hill,San Jose,San Martin,Gilroy", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.125286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 350, "felt:has_geometry": true, "felt:h3_index": 644722034050507336, "STATEFP": 6, "PLACEFP": 50916, "PLACENS": 2411238, "GEOID": 650916, "NAMELSAD": "Newark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36051023, "AWATER": 60526, "INTPTLAT": 37.5042533, "INTPTLON": -122.0319104, "NAME": "Newark,Fremont,Redwood City,Foster City,Sunol,Castro Valley,Fairview,Pleasanton,Union City,Hayward,Santa Clara,Sunnyvale,Saratoga,Cupertino,Fruitdale,Burbank,Campbell,Stanford,Palo Alto,Atherton,North Fair Oaks,West Menlo Park,Mountain View,East Palo Alto,Menlo Park,Los Altos Hills,Ladera,Los Altos,Loyola,Alum Rock,East Foothills,Milpitas", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1166, "felt:has_geometry": true, "felt:h3_index": 644722059118655296, "STATEFP": 6, "PLACEFP": 49488, "PLACENS": 2408874, "GEOID": 649488, "NAMELSAD": "Moss Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1016538, "AWATER": 544792, "INTPTLAT": 36.8053889, "INTPTLON": -121.786577, "NAME": "Moss Landing,Pajaro Dunes,Elkhorn,Las Lomas,Castroville,Aromas,San Juan Bautista,Amesti,Corralitos,Freedom,Day Valley,Watsonville,Rio del Mar,Aptos Hills-Larkin Valley,La Selva Beach,Interlaken,Pajaro,Marina,Sand City,Seaside,Prunedale,Salinas,Boronda", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -121.772461, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 474, "felt:has_geometry": true, "felt:h3_index": 644722094550163509, "STATEFP": 6, "PLACEFP": 67000, "PLACENS": 2411786, "GEOID": 667000, "NAME": "San Francisco", "NAMELSAD": "San Francisco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 121045788, "AWATER": 479608103, "INTPTLAT": 37.7272391, "INTPTLON": -123.0322294, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -123.046875, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 160, "felt:has_geometry": true, "felt:h3_index": 644722145110743462, "STATEFP": 6, "PLACEFP": 61068, "PLACENS": 2410962, "GEOID": 661068, "NAMELSAD": "Riverbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12201597, "AWATER": 68157, "INTPTLAT": 37.7260221, "INTPTLON": -120.9448404, "NAME": "Riverbank,Escalon,Del Rio,Oakdale,Ripon,Manteca,East Oakdale,Farmington,Valley Home,Cowan,Rouse,West Modesto,Airport,Bystrom,Modesto,Bret Harte,Riverdale Park,Parklawn,Ceres,Hughson,Empire,Monterey Park Tract,Keyes,Salida,Grayson,Waterford,Hickman", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1053, "felt:has_geometry": true, "felt:h3_index": 644722153686720537, "STATEFP": 6, "PLACEFP": 41558, "PLACENS": 2408612, "GEOID": 641558, "NAMELSAD": "Lincoln Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1903792, "AWATER": 0, "INTPTLAT": 38.0054709, "INTPTLON": -121.3338427, "NAME": "Lincoln Village,Morada,Country Club,Stockton,August,Terminous,Victor,Lockeford,Waterloo,Woodbridge,Collierville,Acampo,Lodi,French Camp,Taft Mosswood,Lathrop,Discovery Bay,Peters,Linden,Garden Acres,Kennedy", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 671, "felt:has_geometry": true, "felt:h3_index": 644722162245424841, "STATEFP": 6, "PLACEFP": 13182, "PLACENS": 2408028, "GEOID": 613182, "NAMELSAD": "Chinese Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2325639, "AWATER": 6504, "INTPTLAT": 37.8702154, "INTPTLON": -120.444225, "NAME": "Chinese Camp,Copperopolis,East Sonora,Soulsbyville,Tuolumne City,Tuttletown,Columbia,Jamestown,Sonora,La Grange,Lake Don Pedro,Orange Blossom,Knights Ferry,Groveland,Coulterville", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1519, "felt:has_geometry": true, "felt:h3_index": 644722171019735662, "STATEFP": 6, "PLACEFP": 81890, "PLACENS": 2409398, "GEOID": 681890, "NAMELSAD": "Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10344077, "AWATER": 0, "INTPTLAT": 38.1694383, "INTPTLON": -120.825992, "NAME": "Valley Springs,Rancho Calaveras,Wallace,Camanche Village,Camanche North Shore,San Andreas,Mokelumne Hill,Jackson,Martell,Angels", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 718, "felt:has_geometry": true, "felt:h3_index": 644722179814613913, "STATEFP": 6, "PLACEFP": 17428, "PLACENS": 2582988, "GEOID": 617428, "NAMELSAD": "Crows Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4282672, "AWATER": 0, "INTPTLAT": 37.3944426, "INTPTLON": -121.0751665, "NAME": "Crows Landing,Diablo Grande,Patterson,Newman,Gustine", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1169, "felt:has_geometry": true, "felt:h3_index": 644722191894960664, "STATEFP": 6, "PLACEFP": 49582, "PLACENS": 2628761, "GEOID": 649582, "NAMELSAD": "Mountain House CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11804529, "AWATER": 0, "INTPTLAT": 37.7673008, "INTPTLON": -121.5449342, "NAME": "Mountain House,Tracy,Westley", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1577, "felt:has_geometry": true, "felt:h3_index": 644722197092022646, "STATEFP": 6, "PLACEFP": 86076, "PLACENS": 2409616, "GEOID": 686076, "NAMELSAD": "Winton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7875727, "AWATER": 0, "INTPTLAT": 37.3854272, "INTPTLON": -120.6173641, "NAME": "Winton,Cressey,Denair,Delhi,Turlock,Ballico,Snelling,Atwater,McSwain,Franklin,Hilmar-Irwin,Livingston,Stevinson,University of California-Merced,Merced,Bear Creek,Tuttle", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 32, "felt:has_geometry": true, "felt:h3_index": 644737283856424154, "STATEFP": 6, "PLACEFP": 54652, "PLACENS": 2411347, "GEOID": 654652, "NAME": "Oxnard", "NAMELSAD": "Oxnard city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68707177, "AWATER": 32677585, "INTPTLAT": 34.1994364, "INTPTLON": -119.2075154, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 34.198173 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 425, "felt:has_geometry": true, "felt:h3_index": 644737290365243523, "STATEFP": 6, "PLACEFP": 69070, "PLACENS": 2411815, "GEOID": 669070, "NAMELSAD": "Santa Barbara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50517342, "AWATER": 58271494, "INTPTLAT": 34.4006009, "INTPTLON": -119.7129545, "NAME": "Santa Barbara,Montecito,Summerland,Oak View,Meiners Oaks,Ojai,Mira Monte,Carpinteria,Toro Canyon,San Buenaventura (Ventura),Channel Islands Beach,Port Hueneme", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 34.415973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 424, "felt:has_geometry": true, "felt:h3_index": 644737350721453443, "STATEFP": 6, "PLACEFP": 42524, "PLACENS": 2410860, "GEOID": 642524, "NAMELSAD": "Lompoc city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30103860, "AWATER": 201559, "INTPTLAT": 34.6626889, "INTPTLON": -120.470837, "NAME": "Lompoc,Solvang,Buellton,Santa Ynez,Los Olivos,Ballard,Los Alamos", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 34.669359 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 426, "felt:has_geometry": true, "felt:h3_index": 644737360445248156, "STATEFP": 6, "PLACEFP": 69196, "PLACENS": 2411824, "GEOID": 669196, "NAMELSAD": "Santa Maria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59078450, "AWATER": 1575636, "INTPTLAT": 34.9330764, "INTPTLON": -120.443559, "NAME": "Santa Maria,Casmalia,Orcutt,Guadalupe,Vandenberg AFB,Vandenberg Village,Mission Hills", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 34.921971 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 634, "felt:has_geometry": true, "felt:h3_index": 644737841012000498, "STATEFP": 6, "PLACEFP": 11324, "PLACENS": 2407966, "GEOID": 611324, "NAMELSAD": "Carmel Valley Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49166228, "AWATER": 507112, "INTPTLAT": 36.5006267, "INTPTLON": -121.7318199, "NAME": "Carmel Valley Village,Del Monte Forest,Carmel-by-the-Sea,Del Rey Oaks,Pacific Grove,Monterey", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1472, "felt:has_geometry": true, "felt:h3_index": 644745098859169157, "STATEFP": 6, "PLACEFP": 78050, "PLACENS": 2410062, "GEOID": 678050, "NAME": "Tecopa", "NAMELSAD": "Tecopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48145645, "AWATER": 177237, "INTPTLAT": 35.8205806, "INTPTLON": -116.2050514, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -116.191406, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1400, "felt:has_geometry": true, "felt:h3_index": 644745112573895528, "STATEFP": 6, "PLACEFP": 71680, "PLACENS": 2408733, "GEOID": 671680, "NAME": "Shoshone", "NAMELSAD": "Shoshone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 74361294, "AWATER": 618, "INTPTLAT": 35.9672297, "INTPTLON": -116.3087698, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -116.323242, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 662, "felt:has_geometry": true, "felt:h3_index": 644745127400902894, "STATEFP": 6, "PLACEFP": 12730, "PLACENS": 2804104, "GEOID": 612730, "NAME": "Charleston View", "NAMELSAD": "Charleston View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1949194, "AWATER": 0, "INTPTLAT": 35.9646291, "INTPTLON": -115.8972354, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -115.883789, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 531, "felt:has_geometry": true, "felt:h3_index": 644745138290378516, "STATEFP": 6, "PLACEFP": 3512, "PLACENS": 2628708, "GEOID": 603512, "NAME": "Baker", "NAMELSAD": "Baker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6961528, "AWATER": 0, "INTPTLAT": 35.2769184, "INTPTLON": -116.071735, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -116.059570, 35.281501 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 974, "felt:has_geometry": true, "felt:h3_index": 644745180210314029, "STATEFP": 6, "PLACEFP": 37918, "PLACENS": 2408466, "GEOID": 637918, "NAME": "Keeler", "NAMELSAD": "Keeler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987188, "AWATER": 0, "INTPTLAT": 36.4867184, "INTPTLON": -117.87333, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 868, "felt:has_geometry": true, "felt:h3_index": 644745184571321434, "STATEFP": 6, "PLACEFP": 28021, "PLACENS": 2408270, "GEOID": 628021, "NAME": "Furnace Creek", "NAMELSAD": "Furnace Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 81487361, "AWATER": 0, "INTPTLAT": 36.4276693, "INTPTLON": -116.8746901, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -116.850586, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 934, "felt:has_geometry": true, "felt:h3_index": 644745200841135824, "STATEFP": 6, "PLACEFP": 34405, "PLACENS": 2583036, "GEOID": 634405, "NAMELSAD": "Homewood Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26546375, "AWATER": 0, "INTPTLAT": 35.8900404, "INTPTLON": -117.3864139, "NAME": "Homewood Canyon,Searles Valley,Valley Wells,Trona", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -117.377930, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1222, "felt:has_geometry": true, "felt:h3_index": 644745210226968732, "STATEFP": 6, "PLACEFP": 53490, "PLACENS": 2408982, "GEOID": 653490, "NAMELSAD": "Olancha CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20311991, "AWATER": 79710, "INTPTLAT": 36.2697874, "INTPTLON": -118.0012577, "NAME": "Olancha,Darwin", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 36.279707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1524, "felt:has_geometry": true, "felt:h3_index": 644745442198637355, "STATEFP": 6, "PLACEFP": 82334, "PLACENS": 2583175, "GEOID": 682334, "NAMELSAD": "Verdi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10808119, "AWATER": 34863, "INTPTLAT": 39.5269686, "INTPTLON": -120.0233943, "NAME": "Verdi,Floriston", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.537940 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 669, "felt:has_geometry": true, "felt:h3_index": 644745449965964333, "STATEFP": 6, "PLACEFP": 13077, "PLACENS": 2408024, "GEOID": 613077, "NAMELSAD": "Chilcoot-Vinton CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34207854, "AWATER": 0, "INTPTLAT": 39.806744, "INTPTLON": -120.1388608, "NAME": "Chilcoot-Vinton,Beckwourth,Sierra Brooks,Loyalton,Sierraville,Sattley", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1455, "felt:has_geometry": true, "felt:h3_index": 644745476582229400, "STATEFP": 6, "PLACEFP": 76015, "PLACENS": 2410030, "GEOID": 676015, "NAMELSAD": "Sunnyside-Tahoe City CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9016274, "AWATER": 858519, "INTPTLAT": 39.1483181, "INTPTLON": -120.1709376, "NAME": "Sunnyside-Tahoe City,Dollar Point,Tahoma,Kings Beach,Tahoe Vista,South Lake Tahoe,Meyers", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1417, "felt:has_geometry": true, "felt:h3_index": 644745484573366443, "STATEFP": 6, "PLACEFP": 72492, "PLACENS": 2628790, "GEOID": 672492, "NAMELSAD": "Soda Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 872163, "AWATER": 0, "INTPTLAT": 39.3247879, "INTPTLON": -120.3786654, "NAME": "Soda Springs,Truckee,Kingvale,Carnelian Bay,Cedar Flat", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 39.334297 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 552, "felt:has_geometry": true, "felt:h3_index": 644745647903540376, "STATEFP": 6, "PLACEFP": 5346, "PLACENS": 2582943, "GEOID": 605346, "NAME": "Benton", "NAMELSAD": "Benton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73732744, "AWATER": 52423, "INTPTLAT": 37.8224379, "INTPTLON": -118.4876873, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1245, "felt:has_geometry": true, "felt:h3_index": 644745681741189878, "STATEFP": 6, "PLACEFP": 55528, "PLACENS": 2583105, "GEOID": 655528, "NAMELSAD": "Paradise CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11271636, "AWATER": 0, "INTPTLAT": 37.4828526, "INTPTLON": -118.602213, "NAME": "Paradise,Swall Meadows,McGee Creek,Crowley Lake,Sunny Slopes,Aspen Springs,Round Valley,Mesa,Dixon Lane-MeadowCreek,West Bishop", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 972, "felt:has_geometry": true, "felt:h3_index": 644745690741369476, "STATEFP": 6, "PLACEFP": 37624, "PLACENS": 2583044, "GEOID": 637624, "NAMELSAD": "June Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26694795, "AWATER": 2048342, "INTPTLAT": 37.7617827, "INTPTLON": -119.1147288, "NAME": "June Lake,Lee Vining,Mammoth Lakes", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 660, "felt:has_geometry": true, "felt:h3_index": 644745704178587667, "STATEFP": 6, "PLACEFP": 12594, "PLACENS": 2582973, "GEOID": 612594, "NAME": "Chalfant", "NAMELSAD": "Chalfant CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 72616470, "AWATER": 73304, "INTPTLAT": 37.4921149, "INTPTLON": -118.3904081, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 990, "felt:has_geometry": true, "felt:h3_index": 644745724699489955, "STATEFP": 6, "PLACEFP": 38646, "PLACENS": 2408489, "GEOID": 638646, "NAMELSAD": "Kirkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11290203, "AWATER": 2525431, "INTPTLAT": 38.689265, "INTPTLON": -120.0549795, "NAME": "Kirkwood,Bear Valley", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 690, "felt:has_geometry": true, "felt:h3_index": 644745734195958914, "STATEFP": 6, "PLACEFP": 14484, "PLACENS": 2582978, "GEOID": 614484, "NAMELSAD": "Coleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49897132, "AWATER": 0, "INTPTLAT": 38.5805614, "INTPTLON": -119.502863, "NAME": "Coleville,Walker,Bridgeport", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -119.487305, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1130, "felt:has_geometry": true, "felt:h3_index": 644745742716440576, "STATEFP": 6, "PLACEFP": 47086, "PLACENS": 2408820, "GEOID": 647086, "NAMELSAD": "Mesa Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12627546, "AWATER": 0, "INTPTLAT": 38.8102875, "INTPTLON": -119.8032665, "NAME": "Mesa Vista,Alpine Village,Markleeville,Topaz", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 38.822591 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1403, "felt:has_geometry": true, "felt:h3_index": 644745751414771748, "STATEFP": 6, "PLACEFP": 71834, "PLACENS": 2583140, "GEOID": 671834, "NAMELSAD": "Sierra Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6661587, "AWATER": 9750, "INTPTLAT": 38.0756273, "INTPTLON": -120.1593364, "NAME": "Sierra Village,Mi-Wuk Village,Pine Mountain Lake,Buck Meadows", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 753, "felt:has_geometry": true, "felt:h3_index": 644745759144041310, "STATEFP": 6, "PLACEFP": 19570, "PLACENS": 2408683, "GEOID": 619570, "NAMELSAD": "Dorrington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10600543, "AWATER": 12551, "INTPTLAT": 38.304479, "INTPTLON": -120.2663205, "NAME": "Dorrington,Arnold,Avery,Rail Road Flat,Cedar Ridge,Phoenix Lake,Mono Vista,Twain Harte,Murphys,Mountain Ranch,Forest Meadows,Vallecito,Strawberry,Long Barn,Cold Springs", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -120.278320, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1507, "felt:has_geometry": true, "felt:h3_index": 644745771458388790, "STATEFP": 6, "PLACEFP": 81048, "PLACENS": 2804105, "GEOID": 681048, "NAMELSAD": "Twin Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10798571, "AWATER": 2717491, "INTPTLAT": 38.1628855, "INTPTLON": -119.341063, "NAME": "Twin Lakes,Virginia Lakes,Mono City", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 925, "felt:has_geometry": true, "felt:h3_index": 644747021604116150, "STATEFP": 6, "PLACEFP": 33574, "PLACENS": 2408383, "GEOID": 633574, "NAMELSAD": "Highgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8332742, "AWATER": 0, "INTPTLAT": 34.0105771, "INTPTLON": -117.3098172, "NAME": "Highgrove,Grand Terrace,Loma Linda,March ARB,Moreno Valley,Bloomington,Fontana,Colton,Rialto,Jurupa Valley,Mentone,Redlands,Yucaipa,Calimesa,Highland,San Bernardino,Perris,Mead Valley,Nuevo,Good Hope,Meadowbrook,Woodcrest,Riverside,Home Gardens,El Sobrante,Lake Mathews,Lakeview", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -117.290039, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1585, "felt:has_geometry": true, "felt:h3_index": 644747030219340659, "STATEFP": 6, "PLACEFP": 86594, "PLACENS": 2409630, "GEOID": 686594, "NAMELSAD": "Wrightwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15414197, "AWATER": 8669, "INTPTLAT": 34.3459882, "INTPTLON": -117.6275788, "NAME": "Wrightwood,Oak Hills,Hesperia,Piñon Hills,Phelan,Rancho Cucamonga,San Antonio Heights,Ontario,Upland,La Verne,Claremont,Lytle Creek,Muscoy", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 34.343436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1163, "felt:has_geometry": true, "felt:h3_index": 644747041432004253, "STATEFP": 6, "PLACEFP": 49348, "PLACENS": 2408870, "GEOID": 649348, "NAMELSAD": "Morongo Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 65317007, "AWATER": 0, "INTPTLAT": 34.0723774, "INTPTLON": -116.5627267, "NAME": "Morongo Valley,Big Bear City,Cabazon,Whitewater,Banning,Oak Glen,Cherry Valley,Desert Hot Springs", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1433, "felt:has_geometry": true, "felt:h3_index": 644747048544577545, "STATEFP": 6, "PLACEFP": 73700, "PLACENS": 2583150, "GEOID": 673700, "NAMELSAD": "Spring Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7833090, "AWATER": 885216, "INTPTLAT": 34.4968183, "INTPTLON": -117.267587, "NAME": "Spring Valley Lake,Apple Valley,Lucerne Valley,Running Springs,Crestline,Lake Arrowhead,Big Bear Lake", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -117.246094, 34.488448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 224, "felt:has_geometry": true, "felt:h3_index": 644747056982330284, "STATEFP": 6, "PLACEFP": 59587, "PLACENS": 2411517, "GEOID": 659587, "NAMELSAD": "Rancho Santa Margarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33483309, "AWATER": 122877, "INTPTLAT": 33.6323319, "INTPTLON": -117.5990075, "NAME": "Rancho Santa Margarita,Modjeska,Trabuco Canyon,Las Flores,Coto de Caza,Mission Viejo,Wildomar,Canyon Lake,Menifee,Murrieta,Temescal Valley,Warm Springs,Lake Elsinore,Lakeland Village,San Clemente,Ladera Ranch,San Juan Capistrano,Rancho Mission Viejo", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 33.614619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 263, "felt:has_geometry": true, "felt:h3_index": 644747064429065921, "STATEFP": 6, "PLACEFP": 86832, "PLACENS": 2412321, "GEOID": 686832, "NAMELSAD": "Yorba Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51676743, "AWATER": 52602, "INTPTLAT": 33.8890375, "INTPTLON": -117.7720695, "NAME": "Yorba Linda,Anaheim,Chino Hills,Villa Park,Placentia,La Habra Heights,La Habra,Hacienda Heights,Rowland Heights,South San Jose Hills,Fullerton,South Whittier,East Whittier,Brea,Eastvale,Coronita,Chino,Norco,Pomona,San Dimas,Montclair,Walnut,Diamond Bar,North Tustin,Tustin,Irvine,Lake Forest,Garden Grove,Orange,Fountain Valley,Stanton,Westminster,Midway City,Santa Ana,El Cerrito,Corona,Silverado,Williams Canyon", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1357, "felt:has_geometry": true, "felt:h3_index": 644747073577834850, "STATEFP": 6, "PLACEFP": 64056, "PLACENS": 2812661, "GEOID": 664056, "NAMELSAD": "Sage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 176786860, "AWATER": 15601, "INTPTLAT": 33.594066, "INTPTLON": -116.9103847, "NAME": "Sage,Green Acres,Winchester,Homeland,Romoland,Hemet,Idyllwild-Pine Cove,Mountain Center,Beaumont,East Hemet,Valle Vista,San Jacinto,Lake Riverside,Aguanga,French Valley,Temecula,Anza", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1050, "felt:has_geometry": true, "felt:h3_index": 644747092349047627, "STATEFP": 6, "PLACEFP": 41208, "PLACENS": 2583056, "GEOID": 641208, "NAMELSAD": "Leona Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48155344, "AWATER": 70714, "INTPTLAT": 34.608144, "INTPTLON": -118.3013217, "NAME": "Leona Valley,Lake Hughes,Elizabeth Lake,Green Valley,Santa Clarita,San Fernando,Val Verde,Hasley Canyon,Castaic,Stevenson Ranch,Agua Dulce", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 34.597042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1019, "felt:has_geometry": true, "felt:h3_index": 644747100381466922, "STATEFP": 6, "PLACEFP": 39696, "PLACENS": 2408548, "GEOID": 639696, "NAMELSAD": "Lake of the Woods CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9166577, "AWATER": 1509, "INTPTLAT": 34.8271377, "INTPTLON": -118.997304, "NAME": "Lake of the Woods,Frazier Park,Lebec", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1458, "felt:has_geometry": true, "felt:h3_index": 644747107957582123, "STATEFP": 6, "PLACEFP": 77308, "PLACENS": 2583157, "GEOID": 677308, "NAMELSAD": "Sun Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27981975, "AWATER": 1222, "INTPTLAT": 34.5595244, "INTPTLON": -117.9567582, "NAME": "Sun Village,Littlerock,Lancaster,Quartz Hill,Lake Los Angeles,Desert View Highlands,Palmdale,Acton", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 34.560859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1343, "felt:has_geometry": true, "felt:h3_index": 644747116795790004, "STATEFP": 6, "PLACEFP": 62826, "PLACENS": 2409208, "GEOID": 662826, "NAMELSAD": "Rosamond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 134995228, "AWATER": 551690, "INTPTLAT": 34.8656273, "INTPTLON": -118.2147671, "NAME": "Rosamond,Mojave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.849875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1490, "felt:has_geometry": true, "felt:h3_index": 644747124543605603, "STATEFP": 6, "PLACEFP": 78960, "PLACENS": 2583164, "GEOID": 678960, "NAMELSAD": "Topanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49538336, "AWATER": 19528, "INTPTLAT": 34.0967768, "INTPTLON": -118.6060209, "NAME": "Topanga,Calabasas,Hidden Hills,Oak Park,Agoura Hills,Lake Sherwood,Westlake Village,Santa Susana,Bell Canyon,Pepperdine University,Malibu,Los Angeles,Ladera Heights,Culver City,Beverly Hills,Marina del Rey,Santa Monica", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 31, "felt:has_geometry": true, "felt:h3_index": 644747133490056433, "STATEFP": 6, "PLACEFP": 24092, "PLACENS": 2410504, "GEOID": 624092, "NAMELSAD": "Fillmore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8553766, "AWATER": 0, "INTPTLAT": 34.3989578, "INTPTLON": -118.9174598, "NAME": "Fillmore,Piru,Somis,Moorpark,Santa Rosa Valley,Casa Conejo,Camarillo,Thousand Oaks,Santa Paula,Saticoy,El Rio,Simi Valley", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 504, "felt:has_geometry": true, "felt:h3_index": 644747141745695387, "STATEFP": 6, "PLACEFP": 1290, "PLACENS": 2407732, "GEOID": 601290, "NAMELSAD": "Altadena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21924372, "AWATER": 40734, "INTPTLAT": 34.1922117, "INTPTLON": -118.1355893, "NAME": "Altadena,San Marino,San Pasqual,South Pasadena,Pasadena,Sierra Madre,East Pasadena,Arcadia,Burbank,La Crescenta-Montrose,La Cañada Flintridge,South San Gabriel,Montebello,Alhambra,Monterey Park,South El Monte,Avocado Heights,San Gabriel,Temple City,East San Gabriel,Rosemead,Pico Rivera,Downey,Bell Gardens,East Los Angeles,Maywood,Commerce,Rose Hills,West Whittier-Los Nietos,Whittier,Glendale,West Hollywood,Vincent,Monrovia,Bradbury,Duarte,Glendora,Charter Oak,Citrus,Azusa,West Puente Valley,La Puente,Industry,Valinda,North El Monte,Irwindale,South Monrovia Island,Mayflower Village,El Monte,Baldwin Park,Covina,West Covina", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -118.125000, 34.198173 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 968, "felt:has_geometry": true, "felt:h3_index": 644747194024372355, "STATEFP": 6, "PLACEFP": 37554, "PLACENS": 2408454, "GEOID": 637554, "NAMELSAD": "Joshua Tree CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 93463461, "AWATER": 0, "INTPTLAT": 34.1236329, "INTPTLON": -116.3128622, "NAME": "Joshua Tree,Homestead Valley,Twentynine Palms,Yucca Valley", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -116.323242, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 963, "felt:has_geometry": true, "felt:h3_index": 644747236764377309, "STATEFP": 6, "PLACEFP": 37400, "PLACENS": 2408446, "GEOID": 637400, "NAMELSAD": "Johannesburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6354495, "AWATER": 0, "INTPTLAT": 35.3718756, "INTPTLON": -117.6418025, "NAME": "Johannesburg,Randsburg,Ridgecrest", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 35.353216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 853, "felt:has_geometry": true, "felt:h3_index": 644747245305307165, "STATEFP": 6, "PLACEFP": 25114, "PLACENS": 2628733, "GEOID": 625114, "NAME": "Fort Irwin", "NAMELSAD": "Fort Irwin CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18040432, "AWATER": 0, "INTPTLAT": 35.2477015, "INTPTLON": -116.6834115, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -116.674805, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1408, "felt:has_geometry": true, "felt:h3_index": 644747264891429038, "STATEFP": 6, "PLACEFP": 71964, "PLACENS": 2583143, "GEOID": 671964, "NAMELSAD": "Silver Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13552756, "AWATER": 1165902, "INTPTLAT": 34.7478201, "INTPTLON": -117.3449658, "NAME": "Silver Lakes,Adelanto,Victorville,Mountain View Acres", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1197, "felt:has_geometry": true, "felt:h3_index": 644747270804527410, "STATEFP": 6, "PLACEFP": 51812, "PLACENS": 2408937, "GEOID": 651812, "NAMELSAD": "North Edwards CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33012003, "AWATER": 0, "INTPTLAT": 35.0473324, "INTPTLON": -117.8093616, "NAME": "North Edwards,Boron,California City,Edwards AFB", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -117.817383, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1049, "felt:has_geometry": true, "felt:h3_index": 644747280253347606, "STATEFP": 6, "PLACEFP": 41194, "PLACENS": 2408601, "GEOID": 641194, "NAMELSAD": "Lenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5389420, "AWATER": 0, "INTPTLAT": 34.8860557, "INTPTLON": -117.1077727, "NAME": "Lenwood,Barstow,Yermo", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 342, "felt:has_geometry": true, "felt:h3_index": 644747298923432365, "STATEFP": 6, "PLACEFP": 58520, "PLACENS": 2411480, "GEOID": 658520, "NAMELSAD": "Poway city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 101210495, "AWATER": 223435, "INTPTLAT": 32.9876765, "INTPTLON": -117.0218144, "NAME": "Poway,Santee,Solana Beach,Encinitas,Fairbanks Ranch,Rancho Santa Fe,Del Mar,Coronado,Lemon Grove,San Diego,La Mesa,Casa de Oro-Mount Helix,National City,La Presa,Bonita", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -117.026367, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 629, "felt:has_geometry": true, "felt:h3_index": 644747307116790155, "STATEFP": 6, "PLACEFP": 10561, "PLACENS": 2407947, "GEOID": 610561, "NAMELSAD": "Camp Pendleton South CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17965903, "AWATER": 1062655, "INTPTLAT": 33.2318244, "INTPTLON": -117.391998, "NAME": "Camp Pendleton South,Oceanside", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -117.377930, 33.247876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 501, "felt:has_geometry": true, "felt:h3_index": 644747314123622017, "STATEFP": 6, "PLACEFP": 1192, "PLACENS": 2407726, "GEOID": 601192, "NAMELSAD": "Alpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69374324, "AWATER": 1475, "INTPTLAT": 32.842487, "INTPTLON": -116.7559106, "NAME": "Alpine,Ramona,San Diego Country Estates,Winter Gardens,Lakeside,Granite Hills,Eucalyptus Hills,Harbison Canyon,Rancho San Diego,El Cajon,Bostonia,Crest,Descanso,Pine Valley", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -116.762695, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1608, "felt:has_geometry": true, "felt:h3_index": 644747322470885632, "STATEFP": 6, "PLACEFP": 81736, "PLACENS": 2409396, "GEOID": 681736, "NAMELSAD": "Valley Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71083460, "AWATER": 0, "INTPTLAT": 33.2329944, "INTPTLON": -117.015763, "NAME": "Valley Center,Hidden Meadows,Fallbrook,Camp Pendleton Mainside,Bonsall,Pala,Rainbow,Harmony Grove,Escondido,Elfin Forest,Del Dios,San Marcos,Vista,Carlsbad,Lake San Marcos", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -117.026367, 33.247876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 319, "felt:has_geometry": true, "felt:h3_index": 644747349465553050, "STATEFP": 6, "PLACEFP": 13392, "PLACENS": 2409461, "GEOID": 613392, "NAMELSAD": "Chula Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 128560729, "AWATER": 6360807, "INTPTLAT": 32.6276701, "INTPTLON": -117.0151696, "NAME": "Chula Vista,Imperial Beach,Spring Valley,Jamul", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -117.026367, 32.620870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 415, "felt:has_geometry": true, "felt:h3_index": 644747371654271030, "STATEFP": 6, "PLACEFP": 3274, "PLACENS": 2409763, "GEOID": 603274, "NAME": "Avalon", "NAMELSAD": "Avalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7473920, "AWATER": 12349954, "INTPTLAT": 33.3433354, "INTPTLON": -118.3176149, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 236, "felt:has_geometry": true, "felt:h3_index": 644747384394364529, "STATEFP": 6, "PLACEFP": 39178, "PLACENS": 2411595, "GEOID": 639178, "NAMELSAD": "Laguna Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23037592, "AWATER": 2512773, "INTPTLAT": 33.54337, "INTPTLON": -117.7618013, "NAME": "Laguna Beach,Laguna Woods,Aliso Viejo,Laguna Hills,Laguna Niguel,Dana Point,Costa Mesa,Newport Beach", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.541395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1552, "felt:has_geometry": true, "felt:h3_index": 644747391002831275, "STATEFP": 6, "PLACEFP": 84144, "PLACENS": 2409546, "GEOID": 684144, "NAMELSAD": "West Carson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5868539, "AWATER": 33313, "INTPTLAT": 33.8231392, "INTPTLON": -118.2936849, "NAME": "West Carson,Lomita,Signal Hill,Long Beach,Carson,Rolling Hills,Rolling Hills Estates,Hermosa Beach,Alondra Park,Lawndale,Redondo Beach,El Segundo,Manhattan Beach,Palos Verdes Estates,Torrance,Artesia,Cerritos,Lakewood,Paramount,Bellflower,La Mirada,Buena Park,Santa Fe Springs,Norwalk,Cypress,Hawaiian Gardens,La Palma,Los Alamitos,West Rancho Dominguez,West Athens,Willowbrook,View Park-Windsor Hills,South Gate,Walnut Park,Cudahy,Bell,Lynwood,Vernon,Florence-Graham,Huntington Park,Gardena,Lennox,Westmont,Inglewood,Del Aire,Hawthorne,Compton,East Rancho Dominguez,Rancho Palos Verdes,Huntington Beach,Seal Beach,Rossmoor", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 741, "felt:has_geometry": true, "felt:h3_index": 644747433847119077, "STATEFP": 6, "PLACEFP": 19024, "PLACENS": 2408665, "GEOID": 619024, "NAMELSAD": "Desert Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1809312, "AWATER": 294345, "INTPTLAT": 33.4038032, "INTPTLON": -116.0392059, "NAME": "Desert Shores,Salton Sea Beach,Oasis,North Shore,Mecca,Thermal,Salton City", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -116.015625, 33.394759 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 108, "felt:has_geometry": true, "felt:h3_index": 644747442472890388, "STATEFP": 6, "PLACEFP": 55184, "PLACENS": 2411356, "GEOID": 655184, "NAMELSAD": "Palm Desert city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69352308, "AWATER": 528740, "INTPTLAT": 33.7376353, "INTPTLON": -116.3641448, "NAME": "Palm Desert,Rancho Mirage,Bermuda Dunes,Thousand Palms,Indian Wells,Palm Springs,Cathedral City,Indio Hills,Desert Palms,Desert Edge,Garnet,Sky Valley,Coachella,Indio,Vista Santa Rosa,La Quinta", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -116.367188, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 577, "felt:has_geometry": true, "felt:h3_index": 644747456934429382, "STATEFP": 6, "PLACEFP": 7372, "PLACENS": 2407878, "GEOID": 607372, "NAME": "Bombay Beach", "NAMELSAD": "Bombay Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1719105, "AWATER": 0, "INTPTLAT": 33.3556097, "INTPTLON": -115.7269018, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -115.708008, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1178, "felt:has_geometry": true, "felt:h3_index": 644747474043667859, "STATEFP": 6, "PLACEFP": 49810, "PLACENS": 2628763, "GEOID": 649810, "NAME": "Mount Laguna", "NAMELSAD": "Mount Laguna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4395332, "AWATER": 0, "INTPTLAT": 32.871105, "INTPTLON": -116.4246869, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -116.411133, 32.879587 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 970, "felt:has_geometry": true, "felt:h3_index": 644747481633020677, "STATEFP": 6, "PLACEFP": 37582, "PLACENS": 2408455, "GEOID": 637582, "NAMELSAD": "Julian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20424527, "AWATER": 0, "INTPTLAT": 33.0735017, "INTPTLON": -116.588883, "NAME": "Julian,Borrego Springs", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -116.586914, 33.063924 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1191, "felt:has_geometry": true, "felt:h3_index": 644747487865806163, "STATEFP": 6, "PLACEFP": 51392, "PLACENS": 2408926, "GEOID": 651392, "NAMELSAD": "Niland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1040220, "AWATER": 0, "INTPTLAT": 33.2387079, "INTPTLON": -115.5144396, "NAME": "Niland,Calipatria,Westmorland,Brawley", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -115.532227, 33.247876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1047, "felt:has_geometry": true, "felt:h3_index": 644747572466202214, "STATEFP": 6, "PLACEFP": 41166, "PLACENS": 2408599, "GEOID": 641166, "NAMELSAD": "Lemoore Station CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10965026, "AWATER": 0, "INTPTLAT": 36.2632777, "INTPTLON": -119.9048364, "NAME": "Lemoore Station,Stratford,Armona,Grangeville,Hanford,Home Garden,Lemoore,Kettleman City,Corcoran,Waukena", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -119.882812, 36.244273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1029, "felt:has_geometry": true, "felt:h3_index": 644747580186125331, "STATEFP": 6, "PLACEFP": 40116, "PLACENS": 2408570, "GEOID": 640116, "NAMELSAD": "Lanare CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5232743, "AWATER": 0, "INTPTLAT": 36.4377234, "INTPTLON": -119.9321988, "NAME": "Lanare,Westside,Cantua Creek,Caruthers,Huron,Riverdale", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -119.926758, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 406, "felt:has_geometry": true, "felt:h3_index": 644747588564558930, "STATEFP": 6, "PLACEFP": 23616, "PLACENS": 2410485, "GEOID": 623616, "NAMELSAD": "Farmersville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5860074, "AWATER": 0, "INTPTLAT": 36.3047394, "INTPTLON": -119.2086052, "NAME": "Farmersville,Linnell Camp,Hypericum,Tonyville,Exeter,Tooleville,East Tulare Villa,Lindsay,Visalia,Goshen,Patterson Tract,Lemon Cove,Lindcove,Ivanhoe,Woodlake,Woodville,Woodville Farm Labor Camp,Poplar-Cotton Center,Plainview,Matheny,Tulare,El Rancho,Strathmore", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 36.315125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 460, "felt:has_geometry": true, "felt:h3_index": 644747597079579664, "STATEFP": 6, "PLACEFP": 38562, "PLACENS": 2411548, "GEOID": 638562, "NAMELSAD": "Kingsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9627176, "AWATER": 0, "INTPTLAT": 36.5251925, "INTPTLON": -119.5665645, "NAME": "Kingsburg,Selma,El Monte Mobile Village,Parlier,Delft Colony,London,Fowler,Easton,Monmouth,Bowles,Orange Cove,Reedley,Sanger,Minkler,Centerville,Del Rey,Traver,West Goshen,Laton,Hardwick,Monson,Dinuba,Yettem,Orosi,Sultana", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -119.575195, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1081, "felt:has_geometry": true, "felt:h3_index": 644747612084539746, "STATEFP": 6, "PLACEFP": 44280, "PLACENS": 2408143, "GEOID": 644280, "NAME": "Lost Hills", "NAMELSAD": "Lost Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14378327, "AWATER": 30536, "INTPTLAT": 35.6327212, "INTPTLON": -119.6778893, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -119.663086, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 225, "felt:has_geometry": true, "felt:h3_index": 644747614544475188, "STATEFP": 6, "PLACEFP": 3302, "PLACENS": 2409764, "GEOID": 603302, "NAMELSAD": "Avenal city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50459974, "AWATER": 0, "INTPTLAT": 36.0311072, "INTPTLON": -120.1161739, "NAME": "Avenal,Coalinga", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 497, "felt:has_geometry": true, "felt:h3_index": 644747622956296557, "STATEFP": 6, "PLACEFP": 1010, "PLACENS": 2585402, "GEOID": 601010, "NAMELSAD": "Allensworth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8035085, "AWATER": 0, "INTPTLAT": 35.8498779, "INTPTLON": -119.389209, "NAME": "Allensworth,Delano,Alpaugh,Earlimart,Tipton,Pixley,Teviston,McFarland,Wasco,Jovista,Richgrove,Rodriguez Camp", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -119.399414, 35.853440 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1496, "felt:has_geometry": true, "felt:h3_index": 644747653026284737, "STATEFP": 6, "PLACEFP": 80364, "PLACENS": 2583166, "GEOID": 680364, "NAMELSAD": "Tres Pinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9327895, "AWATER": 0, "INTPTLAT": 36.7903815, "INTPTLON": -121.3105643, "NAME": "Tres Pinos,Hollister,Ridgemark", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 36.774092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 465, "felt:has_geometry": true, "felt:h3_index": 644747657149768426, "STATEFP": 6, "PLACEFP": 46828, "PLACENS": 2411078, "GEOID": 646828, "NAMELSAD": "Mendota city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8788278, "AWATER": 8333, "INTPTLAT": 36.7575951, "INTPTLON": -120.3804737, "NAME": "Mendota,Firebaugh,Three Rocks,Tranquillity,San Joaquin", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 36.738884 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 198, "felt:has_geometry": true, "felt:h3_index": 644747665924608198, "STATEFP": 6, "PLACEFP": 44028, "PLACENS": 2410878, "GEOID": 644028, "NAMELSAD": "Los Banos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25891767, "AWATER": 320639, "INTPTLAT": 37.0631841, "INTPTLON": -120.8403045, "NAME": "Los Banos,Volta,Santa Nella,El Nido,Dos Palos Y,Dos Palos,South Dos Palos", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.055177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 356, "felt:has_geometry": true, "felt:h3_index": 644747675028637091, "STATEFP": 6, "PLACEFP": 38520, "PLACENS": 2411544, "GEOID": 638520, "NAMELSAD": "King City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9833874, "AWATER": 342510, "INTPTLAT": 36.2162833, "INTPTLON": -121.1319616, "NAME": "King City,Greenfield,San Lucas,Pine Canyon", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 36.208823 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 292, "felt:has_geometry": true, "felt:h3_index": 644747682967826784, "STATEFP": 6, "PLACEFP": 30392, "PLACENS": 2410617, "GEOID": 630392, "NAMELSAD": "Gonzales city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4955568, "AWATER": 98218, "INTPTLAT": 36.505979, "INTPTLON": -121.442918, "NAME": "Gonzales,Spreckels,Chualar,Soledad", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -121.420898, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 948, "felt:has_geometry": true, "felt:h3_index": 644747731397256489, "STATEFP": 6, "PLACEFP": 36350, "PLACENS": 2408418, "GEOID": 636350, "NAME": "Independence", "NAMELSAD": "Independence CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12590232, "AWATER": 7190, "INTPTLAT": 36.8303101, "INTPTLON": -118.207855, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 36.844461 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 563, "felt:has_geometry": true, "felt:h3_index": 644747734461914507, "STATEFP": 6, "PLACEFP": 6616, "PLACENS": 2407843, "GEOID": 606616, "NAMELSAD": "Big Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7636605, "AWATER": 4831, "INTPTLAT": 37.1655071, "INTPTLON": -118.2962618, "NAME": "Big Pine,Bishop,Wilkerson", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1611, "felt:has_geometry": true, "felt:h3_index": 644747744295196939, "STATEFP": 6, "PLACEFP": 78638, "PLACENS": 2409316, "GEOID": 678638, "NAMELSAD": "Three Rivers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80245468, "AWATER": 268932, "INTPTLAT": 36.440041, "INTPTLON": -118.8802803, "NAME": "Three Rivers,Silver City,Sequoia Crest,Camp Nelson,Pierpoint,Cedar Slope", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 915, "felt:has_geometry": true, "felt:h3_index": 644747751962263715, "STATEFP": 6, "PLACEFP": 32324, "PLACENS": 2585423, "GEOID": 632324, "NAMELSAD": "Hartland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 599099, "AWATER": 0, "INTPTLAT": 36.6538667, "INTPTLON": -118.9588124, "NAME": "Hartland,Squaw Valley,Wilsonia,Seville,East Orosi,Cutler", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 36.668419 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1073, "felt:has_geometry": true, "felt:h3_index": 644747764256103088, "STATEFP": 6, "PLACEFP": 42580, "PLACENS": 2408123, "GEOID": 642580, "NAMELSAD": "Lone Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49299705, "AWATER": 468049, "INTPTLAT": 36.5744471, "INTPTLON": -118.0806101, "NAME": "Lone Pine,Cartago", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 36.562600 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 684, "felt:has_geometry": true, "felt:h3_index": 644747777473030838, "STATEFP": 6, "PLACEFP": 14288, "PLACENS": 2628719, "GEOID": 614288, "NAMELSAD": "Coarsegold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44620400, "AWATER": 172119, "INTPTLAT": 37.2391838, "INTPTLON": -119.7009723, "NAME": "Coarsegold,Yosemite Lakes,Bass Lake,Oakhurst,Nipinnawasee,Ahwahnee,North Fork", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 543, "felt:has_geometry": true, "felt:h3_index": 644747786170317588, "STATEFP": 6, "PLACEFP": 4730, "PLACENS": 2582941, "GEOID": 604730, "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6318984, "AWATER": 3006, "INTPTLAT": 37.5747403, "INTPTLON": -120.1360978, "NAME": "Bear Valley,Mt. Bullion,Midpines,Greeley Hill,Catheys Valley,Hornitos,Bootjack,Mariposa", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 561, "felt:has_geometry": true, "felt:h3_index": 644747799558897750, "STATEFP": 6, "PLACEFP": 6518, "PLACENS": 2628711, "GEOID": 606518, "NAME": "Big Creek", "NAMELSAD": "Big Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1191495, "AWATER": 0, "INTPTLAT": 37.2035645, "INTPTLON": -119.2484886, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 37.195331 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 845, "felt:has_geometry": true, "felt:h3_index": 644747804294008897, "STATEFP": 6, "PLACEFP": 24792, "PLACENS": 2830231, "GEOID": 624792, "NAMELSAD": "Foresta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 958026, "AWATER": 0, "INTPTLAT": 37.6987793, "INTPTLON": -119.7482741, "NAME": "Foresta,El Portal,Yosemite Valley,Wawona,Fish Camp,Yosemite West", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -119.750977, 37.683820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1224, "felt:has_geometry": true, "felt:h3_index": 644747812644395803, "STATEFP": 6, "PLACEFP": 53505, "PLACENS": 2583103, "GEOID": 653505, "NAMELSAD": "Old Fig Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4317800, "AWATER": 0, "INTPTLAT": 36.7988446, "INTPTLON": -119.8051281, "NAME": "Old Fig Garden,Parkwood,Madera,Parksdale,La Vina,Friant,Millerton,Fort Washington,Rolling Hills,Bonadelle Ranchos,Madera Ranchos,West Park,Raisin City,Kerman,Biola,Tarpey Village,Clovis,Calwa,Sunnyside,Malaga,Mayfair,Fresno", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 199, "felt:has_geometry": true, "felt:h3_index": 644747820390188740, "STATEFP": 6, "PLACEFP": 13294, "PLACENS": 2409459, "GEOID": 613294, "NAMELSAD": "Chowchilla city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28713589, "AWATER": 119504, "INTPTLAT": 37.1161043, "INTPTLON": -120.2419783, "NAME": "Chowchilla,Fairmead,Le Grand,Planada,Madera Acres", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.125286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1394, "felt:has_geometry": true, "felt:h3_index": 644747832495626590, "STATEFP": 6, "PLACEFP": 71246, "PLACENS": 2408722, "GEOID": 671246, "NAMELSAD": "Shaver Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83623481, "AWATER": 5897217, "INTPTLAT": 37.0991842, "INTPTLON": -119.3256772, "NAME": "Shaver Lake,Auberry", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1185, "felt:has_geometry": true, "felt:h3_index": 644747846698677542, "STATEFP": 6, "PLACEFP": 51028, "PLACENS": 2583090, "GEOID": 651028, "NAMELSAD": "New Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1637550, "AWATER": 0, "INTPTLAT": 34.9430572, "INTPTLON": -119.6820182, "NAME": "New Cuyama,Fellows,Taft,Ford City,Taft Heights,South Taft,Maricopa,Derby Acres,Cuyama", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -119.663086, 34.957995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 762, "felt:has_geometry": true, "felt:h3_index": 644747864549918555, "STATEFP": 6, "PLACEFP": 20284, "PLACENS": 2408697, "GEOID": 620284, "NAMELSAD": "Dustin Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9521683, "AWATER": 0, "INTPTLAT": 35.2159286, "INTPTLON": -119.3749872, "NAME": "Dustin Acres,Greenfield,Pumpkin Center,Weedpatch,El Adobe,Old River,Lakeside,Mettler", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 608, "felt:has_geometry": true, "felt:h3_index": 644747872724656994, "STATEFP": 6, "PLACEFP": 9332, "PLACENS": 2407932, "GEOID": 609332, "NAMELSAD": "Buttonwillow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17941128, "AWATER": 0, "INTPTLAT": 35.4092286, "INTPTLON": -119.4406682, "NAME": "Buttonwillow,Mexican Colony,Cherokee Strip,Smith Corner,Valley Acres,McKittrick,Stebbins,Tupman", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 35.424868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 767, "felt:has_geometry": true, "felt:h3_index": 644747884789663564, "STATEFP": 6, "PLACEFP": 20574, "PLACENS": 2813349, "GEOID": 620574, "NAMELSAD": "Eastern Goleta Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42981068, "AWATER": 755520, "INTPTLAT": 34.4439133, "INTPTLON": -119.7854766, "NAME": "Eastern Goleta Valley,Mission Canyon,Goleta,University of California-Santa Barbara,Isla Vista", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 872, "felt:has_geometry": true, "felt:h3_index": 644747894815397417, "STATEFP": 6, "PLACEFP": 29070, "PLACENS": 2583023, "GEOID": 629070, "NAMELSAD": "Garey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3275825, "AWATER": 9827, "INTPTLAT": 34.8858212, "INTPTLON": -120.3137504, "NAME": "Garey,Sisquoc", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -120.322266, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1275, "felt:has_geometry": true, "felt:h3_index": 644747899956521396, "STATEFP": 6, "PLACEFP": 57240, "PLACENS": 2409069, "GEOID": 657240, "NAME": "Pine Mountain Club", "NAMELSAD": "Pine Mountain Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43647394, "AWATER": 16918, "INTPTLAT": 34.8408949, "INTPTLON": -119.1685406, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -119.179688, 34.849875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 652, "felt:has_geometry": true, "felt:h3_index": 644747915418359645, "STATEFP": 6, "PLACEFP": 12132, "PLACENS": 2407994, "GEOID": 612132, "NAMELSAD": "Cayucos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8028952, "AWATER": 2418782, "INTPTLAT": 35.4395808, "INTPTLON": -120.8898281, "NAME": "Cayucos,Cambria,El Paso de Robles (Paso Robles),Templeton,Lake Nacimiento,Morro Bay,Los Osos,Atascadero,Garden Farms,Santa Margarita", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 35.424868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1066, "felt:has_geometry": true, "felt:h3_index": 644747925786418421, "STATEFP": 6, "PLACEFP": 42146, "PLACENS": 2583058, "GEOID": 642146, "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28157116, "AWATER": 86923, "INTPTLAT": 35.9400827, "INTPTLON": -121.078282, "NAME": "Lockwood,Fort Hunter Liggett,San Simeon,Oak Shores", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 35.924645 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1392, "felt:has_geometry": true, "felt:h3_index": 644747932226194357, "STATEFP": 6, "PLACEFP": 71134, "PLACENS": 2408721, "GEOID": 671134, "NAMELSAD": "Shandon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639224, "AWATER": 113009, "INTPTLAT": 35.6536085, "INTPTLON": -120.3831476, "NAME": "Shandon,Whitley Gardens,Creston", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1366, "felt:has_geometry": true, "felt:h3_index": 644747941889770099, "STATEFP": 6, "PLACEFP": 64476, "PLACENS": 2409249, "GEOID": 664476, "NAMELSAD": "San Ardo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1163657, "AWATER": 0, "INTPTLAT": 36.023699, "INTPTLON": -120.9073068, "NAME": "San Ardo,San Miguel,Bradley", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 789, "felt:has_geometry": true, "felt:h3_index": 644747967039661315, "STATEFP": 6, "PLACEFP": 21565, "PLACENS": 2583005, "GEOID": 621565, "NAMELSAD": "Edna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3158448, "AWATER": 0, "INTPTLAT": 35.2107858, "INTPTLON": -120.6059679, "NAME": "Edna,San Luis Obispo,California Polytechnic State University,Los Ranchos,Nipomo,Los Berros,Blacklake,Callender,Woodlands,Pismo Beach,Avila Beach,Grover Beach,Arroyo Grande,Oceano", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1013, "felt:has_geometry": true, "felt:h3_index": 644747983533164040, "STATEFP": 6, "PLACEFP": 39570, "PLACENS": 2408538, "GEOID": 639570, "NAMELSAD": "Lake Isabella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56239883, "AWATER": 1098346, "INTPTLAT": 35.6370977, "INTPTLON": -118.4826097, "NAME": "Lake Isabella,Mountain Mesa,Squirrel Mountain Valley,Bodfish,Glennville,Alta Sierra,Weldon,Onyx,Wofford Heights,Kernville", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 207, "felt:has_geometry": true, "felt:h3_index": 644747993372731018, "STATEFP": 6, "PLACEFP": 58240, "PLACENS": 2411470, "GEOID": 658240, "NAMELSAD": "Porterville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48294868, "AWATER": 141831, "INTPTLAT": 36.063542, "INTPTLON": -119.0336003, "NAME": "Porterville,East Porterville,Terra Bella,Springville,Woody,Ducor,California Hot Springs,Pine Flat,Idlewild,Posey,McClenney Tract,Poso Park,Sugarloaf Saw Mill,Sugarloaf Village,Panorama Heights", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -119.047852, 36.066862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1257, "felt:has_geometry": true, "felt:h3_index": 644748003553121640, "STATEFP": 6, "PLACEFP": 56294, "PLACENS": 2409043, "GEOID": 656294, "NAMELSAD": "Pearsonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10648134, "AWATER": 210748, "INTPTLAT": 35.8229451, "INTPTLON": -117.87825, "NAME": "Pearsonville,China Lake Acres,Inyokern,Ridgecrest Heights", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1290, "felt:has_geometry": true, "felt:h3_index": 644748011080167693, "STATEFP": 6, "PLACEFP": 58134, "PLACENS": 2585440, "GEOID": 658134, "NAMELSAD": "Ponderosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2099863, "AWATER": 9090, "INTPTLAT": 36.1046931, "INTPTLON": -118.5319148, "NAME": "Ponderosa,Kennedy Meadows", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -118.520508, 36.102376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 975, "felt:has_geometry": true, "felt:h3_index": 644748017925478132, "STATEFP": 6, "PLACEFP": 37946, "PLACENS": 2408467, "GEOID": 637946, "NAMELSAD": "Keene CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24459682, "AWATER": 13903, "INTPTLAT": 35.2317801, "INTPTLON": -118.6130668, "NAME": "Keene,Bear Valley Springs,Edison,Edmundson Acres,Di Giorgio,Lamont,Stallion Springs,Arvin,Tehachapi,Golden Hills,Mountain Meadows", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 927, "felt:has_geometry": true, "felt:h3_index": 644748030809134761, "STATEFP": 6, "PLACEFP": 33689, "PLACENS": 2804409, "GEOID": 633689, "NAMELSAD": "Hillcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3569985, "AWATER": 0, "INTPTLAT": 35.3789699, "INTPTLON": -118.9578535, "NAME": "Hillcrest,La Cresta,East Bakersfield,Cottonwood,Potomac Park,Oildale,Bakersfield Country Club,East Niles,Goodmanville,Rivergrove,Rexland Acres,Casa Loma,Bakersfield,Old Stine,Olde Stockdale,Benton Park,Fairfax,Fuller Acres,Shafter,Rosedale,Greenacres,Tarina,Choctaw Valley", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 331, "felt:has_geometry": true, "felt:h3_index": 644748247045125961, "STATEFP": 6, "PLACEFP": 50734, "PLACENS": 2411220, "GEOID": 650734, "NAME": "Needles", "NAMELSAD": "Needles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79196617, "AWATER": 1289442, "INTPTLAT": 34.8134263, "INTPTLON": -114.6266387, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 564, "felt:has_geometry": true, "felt:h3_index": 644748481924483172, "STATEFP": 6, "PLACEFP": 6635, "PLACENS": 2407844, "GEOID": 606635, "NAMELSAD": "Big River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28050915, "AWATER": 1344398, "INTPTLAT": 34.1398232, "INTPTLON": -114.3620987, "NAME": "Big River,Bluewater", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -114.345703, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 738, "felt:has_geometry": true, "felt:h3_index": 644748511879802058, "STATEFP": 6, "PLACEFP": 18982, "PLACENS": 2582993, "GEOID": 618982, "NAME": "Desert Center", "NAMELSAD": "Desert Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799210, "AWATER": 0, "INTPTLAT": 33.7377986, "INTPTLON": -115.3666216, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -115.356445, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 280, "felt:has_geometry": true, "felt:h3_index": 644748516873606566, "STATEFP": 6, "PLACEFP": 7218, "PLACENS": 2409872, "GEOID": 607218, "NAMELSAD": "Blythe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68645916, "AWATER": 2000747, "INTPTLAT": 33.6535205, "INTPTLON": -114.6218227, "NAME": "Blythe,Mesa Verde", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1297, "felt:has_geometry": true, "felt:h3_index": 645287510434742996, "STATEFP": 6, "PLACEFP": 58478, "PLACENS": 2628778, "GEOID": 658478, "NAMELSAD": "Potrero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8157788, "AWATER": 0, "INTPTLAT": 32.6130891, "INTPTLON": -116.6068146, "NAME": "Potrero,Campo,Boulevard,Jacumba", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -116.586914, 32.620870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1220, "felt:has_geometry": true, "felt:h3_index": 645287527842001954, "STATEFP": 6, "PLACEFP": 53378, "PLACENS": 2408976, "GEOID": 653378, "NAMELSAD": "Ocotillo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22959357, "AWATER": 0, "INTPTLAT": 32.7431265, "INTPTLON": -116.0018794, "NAME": "Ocotillo,Seeley,El Centro Naval Air Facility", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -116.015625, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1606, "felt:has_geometry": true, "felt:h3_index": 645287644837329651, "STATEFP": 6, "PLACEFP": 86020, "PLACENS": 2409615, "GEOID": 686020, "NAME": "Winterhaven", "NAMELSAD": "Winterhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 630958, "AWATER": 0, "INTPTLAT": 32.7371834, "INTPTLON": -114.6377979, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -114.653320, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1331, "felt:has_geometry": true, "felt:h3_index": 645287667033610280, "STATEFP": 6, "PLACEFP": 61012, "PLACENS": 2583122, "GEOID": 661012, "NAMELSAD": "Ripley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4404857, "AWATER": 0, "INTPTLAT": 33.5237876, "INTPTLON": -114.6529919, "NAME": "Ripley,Palo Verde", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -114.653320, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 438, "felt:has_geometry": true, "felt:h3_index": 645287681026633739, "STATEFP": 6, "PLACEFP": 34246, "PLACENS": 2410780, "GEOID": 634246, "NAMELSAD": "Holtville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2988033, "AWATER": 11902, "INTPTLAT": 32.8137812, "INTPTLON": -115.3783188, "NAME": "Holtville,Imperial,El Centro,Calexico,Heber", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -115.356445, 32.805745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAME": "Burnt Ranch", "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -123.508301, 40.813809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1573, "felt:has_geometry": true, "felt:h3_index": 644718575030985218, "STATEFP": 6, "PLACEFP": 85642, "PLACENS": 2409598, "GEOID": 685642, "NAMELSAD": "Willow Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78501415, "AWATER": 777004, "INTPTLAT": 40.9393305, "INTPTLON": -123.6410997, "NAME": "Willow Creek,Salyer,Trinity Village", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -123.640137, 40.930115 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "NAME": "Big Lagoon,Trinidad,Westhaven-Moonstone", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -124.123535, 41.162114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 167, "felt:has_geometry": true, "felt:h3_index": 644718585258590224, "STATEFP": 6, "PLACEFP": 7162, "PLACENS": 2409868, "GEOID": 607162, "NAME": "Blue Lake", "NAMELSAD": "Blue Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1601834, "AWATER": 79994, "INTPTLAT": 40.8809929, "INTPTLON": -123.994912, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -123.991699, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1095, "felt:has_geometry": true, "felt:h3_index": 644718585915844358, "STATEFP": 6, "PLACEFP": 44910, "PLACENS": 2408201, "GEOID": 644910, "NAMELSAD": "McKinleyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54083206, "AWATER": 657148, "INTPTLAT": 40.9515707, "INTPTLON": -124.077357, "NAME": "McKinleyville,Fieldbrook", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.946714 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -123.090820, 40.730608 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAME": "Weitchpec", "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 937, "felt:has_geometry": true, "felt:h3_index": 644718603466353835, "STATEFP": 6, "PLACEFP": 34540, "PLACENS": 2585654, "GEOID": 634540, "NAME": "Hoopa", "NAMELSAD": "Hoopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52865786, "AWATER": 2013972, "INTPTLAT": 41.0796391, "INTPTLON": -123.6976603, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6, "PLACEFP": 59906, "PLACENS": 2628781, "GEOID": 659906, "NAME": "Redcrest", "NAMELSAD": "Redcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190, "AWATER": 0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1102, "felt:has_geometry": true, "felt:h3_index": 644718609011754920, "STATEFP": 6, "PLACEFP": 45092, "PLACENS": 2583071, "GEOID": 645092, "NAME": "Mad River", "NAMELSAD": "Mad River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 91131300, "AWATER": 0, "INTPTLAT": 40.4325319, "INTPTLON": -123.4920607, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.430224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1143, "felt:has_geometry": true, "felt:h3_index": 644718610944688716, "STATEFP": 6, "PLACEFP": 48060, "PLACENS": 2611441, "GEOID": 648060, "NAMELSAD": "Miranda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3868285, "AWATER": 20675, "INTPTLAT": 40.2286868, "INTPTLON": -123.8175844, "NAME": "Miranda,Phillipsville", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 40.229218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1549, "felt:has_geometry": true, "felt:h3_index": 644718611563321866, "STATEFP": 6, "PLACEFP": 84004, "PLACENS": 2611454, "GEOID": 684004, "NAMELSAD": "Weott CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1946274, "AWATER": 48591, "INTPTLAT": 40.3227715, "INTPTLON": -123.9206222, "NAME": "Weott,Myers Flat", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -123.925781, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6, "PLACEFP": 25296, "PLACENS": 2410532, "GEOID": 625296, "NAME": "Fortuna", "NAMELSAD": "Fortuna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391, "AWATER": 7169, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 40.580585 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 836, "felt:has_geometry": true, "felt:h3_index": 644718615895212352, "STATEFP": 6, "PLACEFP": 24022, "PLACENS": 2628730, "GEOID": 624022, "NAMELSAD": "Fields Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 716672, "AWATER": 7676, "INTPTLAT": 40.7242363, "INTPTLON": -124.2186025, "NAME": "Fields Landing,Humboldt Hill", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -124.211426, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1183, "felt:has_geometry": true, "felt:h3_index": 644718617862603099, "STATEFP": 6, "PLACEFP": 50188, "PLACENS": 2408896, "GEOID": 650188, "NAMELSAD": "Myrtletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5432288, "AWATER": 192918, "INTPTLAT": 40.7887307, "INTPTLON": -124.1306576, "NAME": "Myrtletown,Manila,Indianola,Arcata,Cutten,Pine Hills,Fairhaven,Eureka,Samoa,Bayview", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -124.123535, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1385, "felt:has_geometry": true, "felt:h3_index": 644718618917114405, "STATEFP": 6, "PLACEFP": 70518, "PLACENS": 2611446, "GEOID": 670518, "NAMELSAD": "Scotia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1932251, "AWATER": 262552, "INTPTLAT": 40.4788133, "INTPTLON": -124.1046506, "NAME": "Scotia,Rio Dell,Hydesville", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -124.101562, 40.480381 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 171, "felt:has_geometry": true, "felt:h3_index": 644718619950247158, "STATEFP": 6, "PLACEFP": 23910, "PLACENS": 2410497, "GEOID": 623910, "NAMELSAD": "Ferndale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3124819, "AWATER": 0, "INTPTLAT": 40.5781435, "INTPTLON": -124.261247, "NAME": "Ferndale,Loleta", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -124.255371, 40.580585 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6, "PLACEFP": 36098, "PLACENS": 2583038, "GEOID": 636098, "NAME": "Hyampom", "NAMELSAD": "Hyampom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399, "AWATER": 0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -123.464355, 40.630630 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1598, "felt:has_geometry": true, "felt:h3_index": 644718625962206297, "STATEFP": 6, "PLACEFP": 32562, "PLACENS": 2408361, "GEOID": 632562, "NAME": "Hayfork", "NAMELSAD": "Hayfork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 186854161, "AWATER": 58222, "INTPTLAT": 40.5758706, "INTPTLON": -123.123629, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 40.580585 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1295, "felt:has_geometry": true, "felt:h3_index": 644718627603356904, "STATEFP": 6, "PLACEFP": 58456, "PLACENS": 2804441, "GEOID": 658456, "NAME": "Post Mountain", "NAMELSAD": "Post Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32146965, "AWATER": 0, "INTPTLAT": 40.4159487, "INTPTLON": -123.2316042, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -123.222656, 40.413496 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 41.294317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1040, "felt:has_geometry": true, "felt:h3_index": 644718847372672021, "STATEFP": 6, "PLACEFP": 40928, "PLACENS": 2408589, "GEOID": 640928, "NAME": "Laytonville", "NAMELSAD": "Laytonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13908641, "AWATER": 163478, "INTPTLAT": 39.662256, "INTPTLON": -123.4950147, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 39.656456 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1396, "felt:has_geometry": true, "felt:h3_index": 644718856146322332, "STATEFP": 6, "PLACEFP": 71372, "PLACENS": 2611448, "GEOID": 671372, "NAME": "Shelter Cove", "NAMELSAD": "Shelter Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15098010, "AWATER": 0, "INTPTLAT": 40.0389543, "INTPTLON": -124.0558247, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 40.044438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 869, "felt:has_geometry": true, "felt:h3_index": 644718857436889222, "STATEFP": 6, "PLACEFP": 28154, "PLACENS": 2611433, "GEOID": 628154, "NAMELSAD": "Garberville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6940712, "AWATER": 148102, "INTPTLAT": 40.1003058, "INTPTLON": -123.7943149, "NAME": "Garberville,Benbow", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 40.094882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1320, "felt:has_geometry": true, "felt:h3_index": 644718859124743401, "STATEFP": 6, "PLACEFP": 60088, "PLACENS": 2409154, "GEOID": 660088, "NAME": "Redway", "NAMELSAD": "Redway CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239490, "AWATER": 55629, "INTPTLAT": 40.1202227, "INTPTLON": -123.8217768, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 40.111689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1043, "felt:has_geometry": true, "felt:h3_index": 644718862050317412, "STATEFP": 6, "PLACEFP": 41026, "PLACENS": 2628750, "GEOID": 641026, "NAME": "Leggett", "NAMELSAD": "Leggett CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7003204, "AWATER": 0, "INTPTLAT": 39.8635391, "INTPTLON": -123.7251757, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -123.728027, 39.859155 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 707, "felt:has_geometry": true, "felt:h3_index": 644718869174552388, "STATEFP": 6, "PLACEFP": 16728, "PLACENS": 2407675, "GEOID": 616728, "NAME": "Covelo", "NAMELSAD": "Covelo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18377116, "AWATER": 111658, "INTPTLAT": 39.8001872, "INTPTLON": -123.2526012, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -123.244629, 39.791655 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 493, "felt:has_geometry": true, "felt:h3_index": 644718873994931008, "STATEFP": 6, "PLACEFP": 786, "PLACENS": 2611374, "GEOID": 600786, "NAME": "Alderpoint", "NAMELSAD": "Alderpoint CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6288254, "AWATER": 0, "INTPTLAT": 40.1613467, "INTPTLON": -123.6157293, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -123.618164, 40.162083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1355, "felt:has_geometry": true, "felt:h3_index": 644718875946399144, "STATEFP": 6, "PLACEFP": 63386, "PLACENS": 2628787, "GEOID": 663386, "NAME": "Ruth", "NAMELSAD": "Ruth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100658842, "AWATER": 4347223, "INTPTLAT": 40.2938485, "INTPTLON": -123.34833450000001, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -123.354492, 40.296287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 695, "felt:has_geometry": true, "felt:h3_index": 644718881748979876, "STATEFP": 6, "PLACEFP": 15030, "PLACENS": 2628722, "GEOID": 615030, "NAME": "Comptche", "NAMELSAD": "Comptche CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987584, "AWATER": 0, "INTPTLAT": 39.2651343, "INTPTLON": -123.5897145, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -123.596191, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 644, "felt:has_geometry": true, "felt:h3_index": 644718882019752066, "STATEFP": 6, "PLACEFP": 11768, "PLACENS": 2628717, "GEOID": 611768, "NAMELSAD": "Caspar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7748981, "AWATER": 0, "INTPTLAT": 39.3630629, "INTPTLON": -123.8041936, "NAME": "Caspar,Fort Bragg,Mendocino", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 39.368279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 597, "felt:has_geometry": true, "felt:h3_index": 644718883285586088, "STATEFP": 6, "PLACEFP": 8530, "PLACENS": 2628713, "GEOID": 608530, "NAME": "Brooktrails", "NAMELSAD": "Brooktrails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18790840, "AWATER": 122096, "INTPTLAT": 39.4432827, "INTPTLON": -123.3938002, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -123.398438, 39.436193 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 492, "felt:has_geometry": true, "felt:h3_index": 644718886539187978, "STATEFP": 6, "PLACEFP": 716, "PLACENS": 2628703, "GEOID": 600716, "NAMELSAD": "Albion CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4701873, "AWATER": 96897, "INTPTLAT": 39.2253267, "INTPTLON": -123.7575859, "NAME": "Albion,Little River", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 39.215231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 680, "felt:has_geometry": true, "felt:h3_index": 644718896773775600, "STATEFP": 6, "PLACEFP": 14008, "PLACENS": 2628718, "GEOID": 614008, "NAME": "Cleone", "NAMELSAD": "Cleone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4126679, "AWATER": 62762, "INTPTLAT": 39.4901542, "INTPTLON": -123.7756919, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -123.771973, 39.487085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1298, "felt:has_geometry": true, "felt:h3_index": 644718902778063776, "STATEFP": 6, "PLACEFP": 58506, "PLACENS": 2628779, "GEOID": 658506, "NAMELSAD": "Potter Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10430292, "AWATER": 73557, "INTPTLAT": 39.3171408, "INTPTLON": -123.10986, "NAME": "Potter Valley,Redwood Valley", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 65, "felt:has_geometry": true, "felt:h3_index": 644718903551286291, "STATEFP": 6, "PLACEFP": 85600, "PLACENS": 2412270, "GEOID": 685600, "NAME": "Willits", "NAMELSAD": "Willits city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7321585, "AWATER": 1546, "INTPTLAT": 39.4050065, "INTPTLON": -123.3488889, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -123.354492, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAME": "McArthur", "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 558, "felt:has_geometry": true, "felt:h3_index": 644719536896074354, "STATEFP": 6, "PLACEFP": 6336, "PLACENS": 2582944, "GEOID": 606336, "NAMELSAD": "Bieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8944480, "AWATER": 148149, "INTPTLAT": 41.1384505, "INTPTLON": -121.1170059, "NAME": "Bieber,Nubieber", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 41.129021 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1062, "felt:has_geometry": true, "felt:h3_index": 644719539417787625, "STATEFP": 6, "PLACEFP": 41908, "PLACENS": 2611439, "GEOID": 641908, "NAME": "Little Valley", "NAMELSAD": "Little Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1076095, "AWATER": 26795, "INTPTLAT": 40.8930488, "INTPTLON": -121.1780413, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 40.896906 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAME": "Likely", "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1098, "felt:has_geometry": true, "felt:h3_index": 644719557509073669, "STATEFP": 6, "PLACEFP": 45008, "PLACENS": 2804434, "GEOID": 645008, "NAME": "Madeline", "NAMELSAD": "Madeline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 137117, "AWATER": 0, "INTPTLAT": 41.0514103, "INTPTLON": -120.4754336, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6, "PLACEFP": 10732, "PLACENS": 2582963, "GEOID": 610732, "NAME": "Canby", "NAMELSAD": "Canby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540, "AWATER": 76979, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 486, "felt:has_geometry": true, "felt:h3_index": 644719563810683392, "STATEFP": 6, "PLACEFP": 310, "PLACENS": 2582927, "GEOID": 600310, "NAME": "Adin", "NAMELSAD": "Adin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7587701, "AWATER": 15858, "INTPTLAT": 41.1993122, "INTPTLON": -120.9567786, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1075, "felt:has_geometry": true, "felt:h3_index": 644719565413754960, "STATEFP": 6, "PLACEFP": 43126, "PLACENS": 2583062, "GEOID": 643126, "NAME": "Lookout", "NAMELSAD": "Lookout CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14152115, "AWATER": 322967, "INTPTLAT": 41.210401, "INTPTLON": -121.1529597, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 41.211722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAME": "Old Station", "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -121.420898, 40.663973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1540, "felt:has_geometry": true, "felt:h3_index": 644719573066894226, "STATEFP": 6, "PLACEFP": 83494, "PLACENS": 2583182, "GEOID": 683494, "NAME": "Warner Valley", "NAMELSAD": "Warner Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45059297, "AWATER": 74958, "INTPTLAT": 40.4043546, "INTPTLON": -121.3405621, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "NAME": "Burney,Johnson Park", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 829, "felt:has_geometry": true, "felt:h3_index": 644719579180700011, "STATEFP": 6, "PLACEFP": 23532, "PLACENS": 2408112, "GEOID": 623532, "NAMELSAD": "Fall River Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6859381, "AWATER": 269074, "INTPTLAT": 41.0072414, "INTPTLON": -121.4411337, "NAME": "Fall River Mills,Cassel", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 918, "felt:has_geometry": true, "felt:h3_index": 644719583149349674, "STATEFP": 6, "PLACEFP": 32408, "PLACENS": 2583033, "GEOID": 632408, "NAME": "Hat Creek", "NAMELSAD": "Hat Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 129532652, "AWATER": 442608, "INTPTLAT": 40.7898058, "INTPTLON": -121.4745149, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "NAME": "Stones Landing,Spaulding", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -120.739746, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6, "PLACEFP": 83850, "PLACENS": 2412201, "GEOID": 683850, "NAMELSAD": "Weed city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111, "AWATER": 13340, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655, "NAME": "Weed,Edgewood,Carrick", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 41.409776 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 875, "felt:has_geometry": true, "felt:h3_index": 644719603752455388, "STATEFP": 6, "PLACEFP": 29252, "PLACENS": 2408286, "GEOID": 629252, "NAME": "Gazelle", "NAMELSAD": "Gazelle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1739436, "AWATER": 1757, "INTPTLAT": 41.5118701, "INTPTLON": -122.5219457, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1022, "felt:has_geometry": true, "felt:h3_index": 644719606499957170, "STATEFP": 6, "PLACEFP": 39728, "PLACENS": 2805902, "GEOID": 639728, "NAME": "Lake Shastina", "NAMELSAD": "Lake Shastina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10393370, "AWATER": 2563420, "INTPTLAT": 41.5231272, "INTPTLON": -122.3763662, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 41.525030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 300, "felt:has_geometry": true, "felt:h3_index": 644719609596492310, "STATEFP": 6, "PLACEFP": 49852, "PLACENS": 2411181, "GEOID": 649852, "NAME": "Mount Shasta", "NAMELSAD": "Mount Shasta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9754373, "AWATER": 9660, "INTPTLAT": 41.3208797, "INTPTLON": -122.3154809, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.321777, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 314, "felt:has_geometry": true, "felt:h3_index": 644719613690727203, "STATEFP": 6, "PLACEFP": 86944, "PLACENS": 2412324, "GEOID": 686944, "NAMELSAD": "Yreka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25861889, "AWATER": 188154, "INTPTLAT": 41.7240335, "INTPTLON": -122.6315699, "NAME": "Yreka,Montague", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 38, "felt:has_geometry": true, "felt:h3_index": 644719616714914477, "STATEFP": 6, "PLACEFP": 25128, "PLACENS": 2410527, "GEOID": 625128, "NAMELSAD": "Fort Jones city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1559876, "AWATER": 0, "INTPTLAT": 41.6084521, "INTPTLON": -122.8410656, "NAME": "Fort Jones,Greenview", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.849121, 41.607228 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 902, "felt:has_geometry": true, "felt:h3_index": 644719617777944278, "STATEFP": 6, "PLACEFP": 31246, "PLACENS": 2408337, "GEOID": 631246, "NAME": "Grenada", "NAMELSAD": "Grenada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1335962, "AWATER": 3010, "INTPTLAT": 41.6401003, "INTPTLON": -122.5266271, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.640078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6, "PLACEFP": 78176, "PLACENS": 2410067, "GEOID": 678176, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560, "AWATER": 1194, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1093, "felt:has_geometry": true, "felt:h3_index": 644719631186676889, "STATEFP": 6, "PLACEFP": 44812, "PLACENS": 2408156, "GEOID": 644812, "NAME": "Macdoel", "NAMELSAD": "Macdoel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 432723, "AWATER": 0, "INTPTLAT": 41.8261734, "INTPTLON": -122.0058849, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 41.820455 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1176, "felt:has_geometry": true, "felt:h3_index": 644719635111010990, "STATEFP": 6, "PLACEFP": 49768, "PLACENS": 2408876, "GEOID": 649768, "NAME": "Mount Hebron", "NAMELSAD": "Mount Hebron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1922181, "AWATER": 0, "INTPTLAT": 41.785628, "INTPTLON": -122.0079795, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 41.787697 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAME": "Coffee Creek", "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1497, "felt:has_geometry": true, "felt:h3_index": 644719642529950797, "STATEFP": 6, "PLACEFP": 80476, "PLACENS": 2583167, "GEOID": 680476, "NAME": "Trinity Center", "NAMELSAD": "Trinity Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13547616, "AWATER": 0, "INTPTLAT": 40.9840636, "INTPTLON": -122.7083246, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 40.979898 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1011, "felt:has_geometry": true, "felt:h3_index": 644719643816705163, "STATEFP": 6, "PLACEFP": 39514, "PLACENS": 2408556, "GEOID": 639514, "NAME": "Lakehead", "NAMELSAD": "Lakehead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12160323, "AWATER": 1511480, "INTPTLAT": 40.9034358, "INTPTLON": -122.3996577, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 40.896906 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6, "PLACEFP": 22972, "PLACENS": 2410458, "GEOID": 622972, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757, "AWATER": 2444, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.893066, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "NAME": "Dunsmuir,McCloud,Castella", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.277832, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 560, "felt:has_geometry": true, "felt:h3_index": 644719658497383694, "STATEFP": 6, "PLACEFP": 6475, "PLACENS": 2407839, "GEOID": 606475, "NAME": "Big Bend", "NAMELSAD": "Big Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14852515, "AWATER": 230960, "INTPTLAT": 41.0116239, "INTPTLON": -121.9304344, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1187, "felt:has_geometry": true, "felt:h3_index": 644719683479093780, "STATEFP": 6, "PLACEFP": 51168, "PLACENS": 2583092, "GEOID": 651168, "NAME": "New Pine Creek", "NAMELSAD": "New Pine Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5870148, "AWATER": 0, "INTPTLAT": 41.9872704, "INTPTLON": -120.3009638, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -120.300293, 41.983994 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 850, "felt:has_geometry": true, "felt:h3_index": 644719686301103334, "STATEFP": 6, "PLACEFP": 25030, "PLACENS": 2583014, "GEOID": 625030, "NAME": "Fort Bidwell", "NAMELSAD": "Fort Bidwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8299175, "AWATER": 43567, "INTPTLAT": 41.8633015, "INTPTLON": -120.1593945, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 41.853196 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6, "PLACEFP": 20424, "PLACENS": 2628727, "GEOID": 620424, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306, "AWATER": 0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6, "PLACEFP": 17995, "PLACENS": 2582990, "GEOID": 617995, "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441, "AWATER": 4621, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069, "NAME": "Daphnedale Park,Alturas", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1008, "felt:has_geometry": true, "felt:h3_index": 644719716665661684, "STATEFP": 6, "PLACEFP": 39472, "PLACENS": 2583049, "GEOID": 639472, "NAMELSAD": "Lake City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15065516, "AWATER": 6524, "INTPTLAT": 41.6453171, "INTPTLON": -120.222097, "NAME": "Lake City,Cedarville", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -120.212402, 41.640078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 613, "felt:has_geometry": true, "felt:h3_index": 644719720153001358, "STATEFP": 6, "PLACEFP": 9834, "PLACENS": 2582955, "GEOID": 609834, "NAME": "California Pines", "NAMELSAD": "California Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19236734, "AWATER": 366425, "INTPTLAT": 41.413786, "INTPTLON": -120.6653096, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 41.409776 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1186, "felt:has_geometry": true, "felt:h3_index": 644719745745081189, "STATEFP": 6, "PLACEFP": 51042, "PLACENS": 2583091, "GEOID": 651042, "NAME": "Newell", "NAMELSAD": "Newell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6233913, "AWATER": 14912, "INTPTLAT": 41.8887312, "INTPTLON": -121.3602488, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 41.885921 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 299, "felt:has_geometry": true, "felt:h3_index": 644719784625908842, "STATEFP": 6, "PLACEFP": 19584, "PLACENS": 2410347, "GEOID": 619584, "NAME": "Dorris", "NAMELSAD": "Dorris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1819374, "AWATER": 40653, "INTPTLAT": 41.9649654, "INTPTLON": -121.9203865, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 60, "felt:has_geometry": true, "felt:h3_index": 644719785796805700, "STATEFP": 6, "PLACEFP": 80686, "PLACENS": 2412108, "GEOID": 680686, "NAME": "Tulelake", "NAMELSAD": "Tulelake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1061321, "AWATER": 6167, "INTPTLAT": 41.9534596, "INTPTLON": -121.4748966, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 41.951320 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1120, "felt:has_geometry": true, "felt:h3_index": 644719808794191718, "STATEFP": 6, "PLACEFP": 46618, "PLACENS": 2408809, "GEOID": 646618, "NAMELSAD": "Meadow Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22066143, "AWATER": 0, "INTPTLAT": 39.9323117, "INTPTLON": -121.0830864, "NAME": "Meadow Valley,Quincy", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -121.091309, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 546, "felt:has_geometry": true, "felt:h3_index": 644719810114116161, "STATEFP": 6, "PLACEFP": 4856, "PLACENS": 2407822, "GEOID": 604856, "NAMELSAD": "Belden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1578657, "AWATER": 299647, "INTPTLAT": 40.0067829, "INTPTLON": -121.2481908, "NAME": "Belden,Tobin", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 40.010787 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1471, "felt:has_geometry": true, "felt:h3_index": 644719811138119438, "STATEFP": 6, "PLACEFP": 78008, "PLACENS": 2410061, "GEOID": 678008, "NAMELSAD": "Taylorsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8409829, "AWATER": 0, "INTPTLAT": 40.0586616, "INTPTLON": -120.8386751, "NAME": "Taylorsville,East Quincy,Keddie", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 40.061257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 949, "felt:has_geometry": true, "felt:h3_index": 644719812106337004, "STATEFP": 6, "PLACEFP": 36364, "PLACENS": 2408419, "GEOID": 636364, "NAMELSAD": "Indian Falls CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4770041, "AWATER": 0, "INTPTLAT": 40.0587497, "INTPTLON": -120.9803138, "NAME": "Indian Falls,Twain,Paxton", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 40.061257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 600, "felt:has_geometry": true, "felt:h3_index": 644719814321859776, "STATEFP": 6, "PLACEFP": 8744, "PLACENS": 2407918, "GEOID": 608744, "NAME": "Bucks Lake", "NAMELSAD": "Bucks Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26784856, "AWATER": 21082, "INTPTLAT": 39.8795599, "INTPTLON": -121.1990806, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 39.876019 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 668, "felt:has_geometry": true, "felt:h3_index": 644719819322821830, "STATEFP": 6, "PLACEFP": 12930, "PLACENS": 2408021, "GEOID": 612930, "NAMELSAD": "Chester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18874561, "AWATER": 209672, "INTPTLAT": 40.3016748, "INTPTLON": -121.2325025, "NAME": "Chester,Lake Almanor West", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 40.296287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 606, "felt:has_geometry": true, "felt:h3_index": 644719823364230032, "STATEFP": 6, "PLACEFP": 9318, "PLACENS": 2612474, "GEOID": 609318, "NAME": "Butte Meadows", "NAMELSAD": "Butte Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5554035, "AWATER": 1292, "INTPTLAT": 40.08531, "INTPTLON": -121.5426826, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 40.078071 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 633, "felt:has_geometry": true, "felt:h3_index": 644719824497203826, "STATEFP": 6, "PLACEFP": 11166, "PLACENS": 2407962, "GEOID": 611166, "NAME": "Caribou", "NAMELSAD": "Caribou CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 419798, "AWATER": 0, "INTPTLAT": 40.073244, "INTPTLON": -121.1656703, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 40.078071 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1137, "felt:has_geometry": true, "felt:h3_index": 644719828371281477, "STATEFP": 6, "PLACEFP": 47472, "PLACENS": 2628757, "GEOID": 647472, "NAME": "Milford", "NAMELSAD": "Milford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13705685, "AWATER": 14513, "INTPTLAT": 40.1494665, "INTPTLON": -120.3701964, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 40.145289 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1009, "felt:has_geometry": true, "felt:h3_index": 644719830364330124, "STATEFP": 6, "PLACEFP": 39483, "PLACENS": 2408536, "GEOID": 639483, "NAMELSAD": "Lake Davis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14080604, "AWATER": 11652, "INTPTLAT": 39.8524283, "INTPTLON": -120.4584099, "NAME": "Lake Davis,Portola,Delleker", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 39.842286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 716, "felt:has_geometry": true, "felt:h3_index": 644719831736263315, "STATEFP": 6, "PLACEFP": 17288, "PLACENS": 2407684, "GEOID": 617288, "NAMELSAD": "Cromberg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23385108, "AWATER": 0, "INTPTLAT": 39.8683829, "INTPTLON": -120.6904463, "NAME": "Cromberg,Spring Garden,Greenhorn", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 39.859155 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1565, "felt:has_geometry": true, "felt:h3_index": 644719835009731402, "STATEFP": 6, "PLACEFP": 84928, "PLACENS": 2409578, "GEOID": 684928, "NAME": "Westwood", "NAMELSAD": "Westwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14392892, "AWATER": 182548, "INTPTLAT": 40.3052197, "INTPTLON": -121.0035026, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 40.296287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 677, "felt:has_geometry": true, "felt:h3_index": 644719836288113161, "STATEFP": 6, "PLACEFP": 13910, "PLACENS": 2611428, "GEOID": 613910, "NAME": "Clear Creek", "NAMELSAD": "Clear Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2934098, "AWATER": 19595, "INTPTLAT": 40.307086, "INTPTLON": -121.0554, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 709, "felt:has_geometry": true, "felt:h3_index": 644719839149759169, "STATEFP": 6, "PLACEFP": 17050, "PLACENS": 2407679, "GEOID": 617050, "NAMELSAD": "Crescent Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10985561, "AWATER": 0, "INTPTLAT": 40.1007411, "INTPTLON": -120.921706, "NAME": "Crescent Mills,Greenville", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 40.094882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 782, "felt:has_geometry": true, "felt:h3_index": 644719839740906217, "STATEFP": 6, "PLACEFP": 21138, "PLACENS": 2408038, "GEOID": 621138, "NAMELSAD": "East Shore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3063617, "AWATER": 0, "INTPTLAT": 40.2452687, "INTPTLON": -121.0767779, "NAME": "East Shore,Lake Almanor Country Club,Hamilton Branch,Lake Almanor Peninsula,Canyondam,Prattville,Almanor", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 843, "felt:has_geometry": true, "felt:h3_index": 644719843107942596, "STATEFP": 6, "PLACEFP": 24750, "PLACENS": 2612480, "GEOID": 624750, "NAMELSAD": "Forbestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16250437, "AWATER": 15370, "INTPTLAT": 39.5275837, "INTPTLON": -121.2662224, "NAME": "Forbestown,Clipper Mills,Challenge-Brownsville,Robinson Mill", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 39.520992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 555, "felt:has_geometry": true, "felt:h3_index": 644719844406726684, "STATEFP": 6, "PLACEFP": 6070, "PLACENS": 2612472, "GEOID": 606070, "NAMELSAD": "Berry Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 147940054, "AWATER": 154403, "INTPTLAT": 39.6318124, "INTPTLON": -121.4056211, "NAME": "Berry Creek,Kelly Ridge", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 39.622615 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1030, "felt:has_geometry": true, "felt:h3_index": 644719845493462406, "STATEFP": 6, "PLACEFP": 40312, "PLACENS": 2408509, "GEOID": 640312, "NAME": "La Porte", "NAMELSAD": "La Porte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11543765, "AWATER": 0, "INTPTLAT": 39.6725081, "INTPTLON": -120.9852443, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 750, "felt:has_geometry": true, "felt:h3_index": 644719847200111876, "STATEFP": 6, "PLACEFP": 19416, "PLACENS": 2582996, "GEOID": 619416, "NAMELSAD": "Dobbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20051346, "AWATER": 187248, "INTPTLAT": 39.3565902, "INTPTLON": -121.2103783, "NAME": "Dobbins,North San Juan", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 39.351290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1306, "felt:has_geometry": true, "felt:h3_index": 644719848321460304, "STATEFP": 6, "PLACEFP": 59115, "PLACENS": 2612485, "GEOID": 659115, "NAMELSAD": "Rackerby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7650377, "AWATER": 0, "INTPTLAT": 39.4261136, "INTPTLON": -121.35419, "NAME": "Rackerby,Bangor", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 39.419221 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 630, "felt:has_geometry": true, "felt:h3_index": 644719849349908232, "STATEFP": 6, "PLACEFP": 10676, "PLACENS": 2628715, "GEOID": 610676, "NAMELSAD": "Camptonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221241, "AWATER": 0, "INTPTLAT": 39.4520717, "INTPTLON": -121.048668, "NAME": "Camptonville,Pike", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.453161 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1103, "felt:has_geometry": true, "felt:h3_index": 644719851742904618, "STATEFP": 6, "PLACEFP": 45120, "PLACENS": 2408161, "GEOID": 645120, "NAMELSAD": "Magalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36313238, "AWATER": 10648, "INTPTLAT": 39.8187523, "INTPTLON": -121.6077477, "NAME": "Magalia,Paradise,Concow", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 848, "felt:has_geometry": true, "felt:h3_index": 644719852873437462, "STATEFP": 6, "PLACEFP": 24918, "PLACENS": 2612481, "GEOID": 624918, "NAMELSAD": "Forest Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36089639, "AWATER": 0, "INTPTLAT": 39.8952041, "INTPTLON": -121.6704507, "NAME": "Forest Ranch,Cohasset", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 39.892880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1443, "felt:has_geometry": true, "felt:h3_index": 644719855523273364, "STATEFP": 6, "PLACEFP": 74186, "PLACENS": 2612488, "GEOID": 674186, "NAME": "Stirling City", "NAMELSAD": "Stirling City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3048650, "AWATER": 2150, "INTPTLAT": 39.9049706, "INTPTLON": -121.5372635, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 607, "felt:has_geometry": true, "felt:h3_index": 644719856012416565, "STATEFP": 6, "PLACEFP": 9324, "PLACENS": 2612475, "GEOID": 609324, "NAMELSAD": "Butte Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47368451, "AWATER": 29332, "INTPTLAT": 39.6688146, "INTPTLON": -121.6458877, "NAME": "Butte Valley,Cherokee", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 154, "felt:has_geometry": true, "felt:h3_index": 644719857056874881, "STATEFP": 6, "PLACEFP": 13014, "PLACENS": 2409447, "GEOID": 613014, "NAMELSAD": "Chico city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89228953, "AWATER": 445035, "INTPTLAT": 39.7589514, "INTPTLON": -121.8177197, "NAME": "Chico,Butte Creek Canyon,Durham", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 39.757880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1586, "felt:has_geometry": true, "felt:h3_index": 644719858703730989, "STATEFP": 6, "PLACEFP": 86678, "PLACENS": 2612489, "GEOID": 686678, "NAME": "Yankee Hill", "NAMELSAD": "Yankee Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15609188, "AWATER": 0, "INTPTLAT": 39.7007088, "INTPTLON": -121.5146882, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 39.690281 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1402, "felt:has_geometry": true, "felt:h3_index": 644719861002316968, "STATEFP": 6, "PLACEFP": 71778, "PLACENS": 2583139, "GEOID": 671778, "NAME": "Sierra City", "NAMELSAD": "Sierra City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569937, "AWATER": 728, "INTPTLAT": 39.5726584, "INTPTLON": -120.6276165, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 39.571822 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1059, "felt:has_geometry": true, "felt:h3_index": 644719861379633585, "STATEFP": 6, "PLACEFP": 41789, "PLACENS": 2408619, "GEOID": 641789, "NAME": "Little Grass Valley", "NAMELSAD": "Little Grass Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25897822, "AWATER": 0, "INTPTLAT": 39.7252456, "INTPTLON": -120.9590728, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 39.724089 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1566, "felt:has_geometry": true, "felt:h3_index": 644719862260292932, "STATEFP": 6, "PLACEFP": 85086, "PLACENS": 2409587, "GEOID": 685086, "NAMELSAD": "Whitehawk CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693778, "AWATER": 0, "INTPTLAT": 39.7206086, "INTPTLON": -120.5535831, "NAME": "Whitehawk,Clio,Mabie,C-Road,Valley Ranch,Iron Horse,Gold Mountain,Calpine", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 39.724089 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 966, "felt:has_geometry": true, "felt:h3_index": 644719863315242262, "STATEFP": 6, "PLACEFP": 37512, "PLACENS": 2408450, "GEOID": 637512, "NAMELSAD": "Johnsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35638914, "AWATER": 134828, "INTPTLAT": 39.7697097, "INTPTLON": -120.6997827, "NAME": "Johnsville,Plumas Eureka,Mohawk Vista,Blairsden,Graeagle", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 891, "felt:has_geometry": true, "felt:h3_index": 644719865152622803, "STATEFP": 6, "PLACEFP": 30714, "PLACENS": 2628735, "GEOID": 630714, "NAME": "Graniteville", "NAMELSAD": "Graniteville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3853000, "AWATER": 0, "INTPTLAT": 39.4443656, "INTPTLON": -120.7360303, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -120.739746, 39.436193 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 885, "felt:has_geometry": true, "felt:h3_index": 644719865476942560, "STATEFP": 6, "PLACEFP": 30420, "PLACENS": 2583027, "GEOID": 630420, "NAMELSAD": "Goodyears Bar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5309072, "AWATER": 43381, "INTPTLAT": 39.552354, "INTPTLON": -120.8931017, "NAME": "Goodyears Bar,Downieville", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 39.554883 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6, "PLACEFP": 16630, "PLACENS": 2407668, "GEOID": 616630, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530, "AWATER": 0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.321777, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 911, "felt:has_geometry": true, "felt:h3_index": 644719881235613325, "STATEFP": 6, "PLACEFP": 32036, "PLACENS": 2813350, "GEOID": 632036, "NAMELSAD": "Happy Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43746583, "AWATER": 260613, "INTPTLAT": 40.4661408, "INTPTLON": -122.4179692, "NAME": "Happy Valley,Anderson", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 40.463666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 294, "felt:has_geometry": true, "felt:h3_index": 644719882398990498, "STATEFP": 6, "PLACEFP": 59892, "PLACENS": 2411527, "GEOID": 659892, "NAME": "Red Bluff", "NAMELSAD": "Red Bluff city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19582197, "AWATER": 295207, "INTPTLAT": 40.1735147, "INTPTLON": -122.2415247, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1007, "felt:has_geometry": true, "felt:h3_index": 644719883894269667, "STATEFP": 6, "PLACEFP": 39460, "PLACENS": 2628747, "GEOID": 639460, "NAMELSAD": "Lake California CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16346691, "AWATER": 862108, "INTPTLAT": 40.3583551, "INTPTLON": -122.2088428, "NAME": "Lake California,Dales,Bend", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 40.363288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "NAME": "Weaverville,Lewiston,Douglas City", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.937012, 40.730608 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 861, "felt:has_geometry": true, "felt:h3_index": 644719888692847857, "STATEFP": 6, "PLACEFP": 26056, "PLACENS": 2408262, "GEOID": 626056, "NAME": "French Gulch", "NAMELSAD": "French Gulch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31940354, "AWATER": 94840, "INTPTLAT": 40.7187929, "INTPTLON": -122.6293566, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1229, "felt:has_geometry": true, "felt:h3_index": 644719890515136884, "STATEFP": 6, "PLACEFP": 53882, "PLACENS": 2813354, "GEOID": 653882, "NAME": "Ono", "NAMELSAD": "Ono CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931419, "AWATER": 7877, "INTPTLAT": 40.4781165, "INTPTLON": -122.6254908, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 40.480381 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1393, "felt:has_geometry": true, "felt:h3_index": 644719892593200352, "STATEFP": 6, "PLACEFP": 71218, "PLACENS": 2583135, "GEOID": 671218, "NAMELSAD": "Shasta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28306682, "AWATER": 11513, "INTPTLAT": 40.5920212, "INTPTLON": -122.477899, "NAME": "Shasta,Keswick,Igo,Centerville", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 40.597271 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6, "PLACEFP": 71568, "PLACENS": 2408728, "GEOID": 671568, "NAMELSAD": "Shingletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619, "AWATER": 177508, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646, "NAME": "Shingletown,Manton", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -121.860352, 40.497092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1569, "felt:has_geometry": true, "felt:h3_index": 644719895961197813, "STATEFP": 6, "PLACEFP": 85250, "PLACENS": 2813357, "GEOID": 685250, "NAME": "Whitmore", "NAMELSAD": "Whitmore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16909590, "AWATER": 14380, "INTPTLAT": 40.61251, "INTPTLON": -121.9359064, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1256, "felt:has_geometry": true, "felt:h3_index": 644719900619086381, "STATEFP": 6, "PLACEFP": 56196, "PLACENS": 2628773, "GEOID": 656196, "NAME": "Paynes Creek", "NAMELSAD": "Paynes Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8887673, "AWATER": 3777, "INTPTLAT": 40.3418999, "INTPTLON": -121.9249741, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 40.346544 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1140, "felt:has_geometry": true, "felt:h3_index": 644719901233689386, "STATEFP": 6, "PLACEFP": 47794, "PLACENS": 2408836, "GEOID": 647794, "NAME": "Mineral", "NAMELSAD": "Mineral CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 114744267, "AWATER": 286834, "INTPTLAT": 40.4027126, "INTPTLON": -121.5508439, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAME": "Jones Valley", "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1160, "felt:has_geometry": true, "felt:h3_index": 644719905524223196, "STATEFP": 6, "PLACEFP": 48998, "PLACENS": 2408863, "GEOID": 648998, "NAMELSAD": "Montgomery Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8536890, "AWATER": 11338, "INTPTLAT": 40.8428384, "INTPTLON": -121.9206607, "NAME": "Montgomery Creek,Round Mountain", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 40.847060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1139, "felt:has_geometry": true, "felt:h3_index": 644719907922167830, "STATEFP": 6, "PLACEFP": 47724, "PLACENS": 2408834, "GEOID": 647724, "NAMELSAD": "Millville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20839153, "AWATER": 433331, "INTPTLAT": 40.5595689, "INTPTLON": -122.1755686, "NAME": "Millville,Palo Cedro", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 40.563895 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 274, "felt:has_geometry": true, "felt:h3_index": 644719908610551070, "STATEFP": 6, "PLACEFP": 71225, "PLACENS": 2411877, "GEOID": 671225, "NAMELSAD": "Shasta Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28229509, "AWATER": 14724, "INTPTLAT": 40.6765637, "INTPTLON": -122.3809091, "NAME": "Shasta Lake,Bella Vista,Mountain Gate,Redding", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 40.680638 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1213, "felt:has_geometry": true, "felt:h3_index": 644719909505289381, "STATEFP": 6, "PLACEFP": 53140, "PLACENS": 2813353, "GEOID": 653140, "NAME": "Oak Run", "NAMELSAD": "Oak Run CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7803833, "AWATER": 12670, "INTPTLAT": 40.6941964, "INTPTLON": -122.0250083, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1316, "felt:has_geometry": true, "felt:h3_index": 644719912127851366, "STATEFP": 6, "PLACEFP": 59604, "PLACENS": 2409139, "GEOID": 659604, "NAMELSAD": "Rancho Tehama Reserve CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30267928, "AWATER": 200213, "INTPTLAT": 40.0040029, "INTPTLON": -122.4283397, "NAME": "Rancho Tehama Reserve,Flournoy", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 39.993956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1252, "felt:has_geometry": true, "felt:h3_index": 644719917368957665, "STATEFP": 6, "PLACEFP": 56042, "PLACENS": 2628772, "GEOID": 656042, "NAME": "Paskenta", "NAMELSAD": "Paskenta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2799215, "AWATER": 0, "INTPTLAT": 39.8832746, "INTPTLON": -122.5458335, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 39.876019 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 96, "felt:has_geometry": true, "felt:h3_index": 644719918373734998, "STATEFP": 6, "PLACEFP": 16322, "PLACENS": 2410231, "GEOID": 616322, "NAME": "Corning", "NAMELSAD": "Corning city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9186897, "AWATER": 0, "INTPTLAT": 39.9282003, "INTPTLON": -122.1820088, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6, "PLACEFP": 57666, "PLACENS": 2813355, "GEOID": 657666, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433, "AWATER": 0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.893066, 40.363288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1036, "felt:has_geometry": true, "felt:h3_index": 644719930425005838, "STATEFP": 6, "PLACEFP": 40536, "PLACENS": 2628748, "GEOID": 640536, "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 926091, "AWATER": 0, "INTPTLAT": 40.072141, "INTPTLON": -122.1573122, "NAME": "Las Flores,Gerber,Proberta", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.145996, 40.078071 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1078, "felt:has_geometry": true, "felt:h3_index": 644719934649223755, "STATEFP": 6, "PLACEFP": 44140, "PLACENS": 2408138, "GEOID": 644140, "NAMELSAD": "Los Molinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5637051, "AWATER": 80526, "INTPTLAT": 40.0270736, "INTPTLON": -122.0979711, "NAME": "Los Molinos,Tehama,Richfield,Vina", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.102051, 40.027614 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1254, "felt:has_geometry": true, "felt:h3_index": 644719982062547848, "STATEFP": 6, "PLACEFP": 56140, "PLACENS": 2583109, "GEOID": 656140, "NAMELSAD": "Patton Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9040567, "AWATER": 0, "INTPTLAT": 40.1407242, "INTPTLON": -120.178123, "NAME": "Patton Village,Herlong", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 40.145289 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 757, "felt:has_geometry": true, "felt:h3_index": 644719986573508608, "STATEFP": 6, "PLACEFP": 19878, "PLACENS": 2583001, "GEOID": 619878, "NAME": "Doyle", "NAMELSAD": "Doyle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15817150, "AWATER": 1998, "INTPTLAT": 40.027223, "INTPTLON": -120.1153701, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 40.027614 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6, "PLACEFP": 41782, "PLACENS": 2628751, "GEOID": 641782, "NAME": "Litchfield", "NAMELSAD": "Litchfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458, "AWATER": 0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -120.388184, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 251, "felt:has_geometry": true, "felt:h3_index": 644719990755819776, "STATEFP": 6, "PLACEFP": 77364, "PLACENS": 2412017, "GEOID": 677364, "NAME": "Susanville", "NAMELSAD": "Susanville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20507839, "AWATER": 218688, "INTPTLAT": 40.433674, "INTPTLON": -120.6283062, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 40.430224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 965, "felt:has_geometry": true, "felt:h3_index": 644719994481830603, "STATEFP": 6, "PLACEFP": 37484, "PLACENS": 2583042, "GEOID": 637484, "NAMELSAD": "Johnstonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22246440, "AWATER": 108930, "INTPTLAT": 40.3801984, "INTPTLON": -120.5861336, "NAME": "Johnstonville,Janesville", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 910, "felt:has_geometry": true, "felt:h3_index": 644720381597798566, "STATEFP": 6, "PLACEFP": 32030, "PLACENS": 2611423, "GEOID": 632030, "NAME": "Happy Camp", "NAMELSAD": "Happy Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31357295, "AWATER": 618829, "INTPTLAT": 41.8158932, "INTPTLON": -123.3927961, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -123.398438, 41.820455 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "NAME": "Kep'el,Wautec", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 41.277806 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 157, "felt:has_geometry": true, "felt:h3_index": 644720401678927874, "STATEFP": 6, "PLACEFP": 17022, "PLACENS": 2410262, "GEOID": 617022, "NAMELSAD": "Crescent City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084451, "AWATER": 1170287, "INTPTLAT": 41.7645143, "INTPTLON": -124.2007785, "NAME": "Crescent City,Bertsch-Oceanview", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -124.189453, 41.754922 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 874, "felt:has_geometry": true, "felt:h3_index": 644720403911032021, "STATEFP": 6, "PLACEFP": 29154, "PLACENS": 2611434, "GEOID": 629154, "NAMELSAD": "Gasquet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12318649, "AWATER": 171875, "INTPTLAT": 41.8360753, "INTPTLON": -123.9760308, "NAME": "Gasquet,Hiouchi", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -123.969727, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 851, "felt:has_geometry": true, "felt:h3_index": 644720404510817413, "STATEFP": 6, "PLACEFP": 25086, "PLACENS": 2611432, "GEOID": 625086, "NAMELSAD": "Fort Dick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8331464, "AWATER": 662, "INTPTLAT": 41.8695264, "INTPTLON": -124.1672064, "NAME": "Fort Dick,Smith River", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -124.167480, 41.869561 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 991, "felt:has_geometry": true, "felt:h3_index": 644720408322448306, "STATEFP": 6, "PLACEFP": 38702, "PLACENS": 2408492, "GEOID": 638702, "NAME": "Klamath", "NAMELSAD": "Klamath CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44592620, "AWATER": 0, "INTPTLAT": 41.5728585, "INTPTLON": -124.0556058, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 939, "felt:has_geometry": true, "felt:h3_index": 644720535259223248, "STATEFP": 6, "PLACEFP": 34694, "PLACENS": 2408401, "GEOID": 634694, "NAME": "Hornbrook", "NAMELSAD": "Hornbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3017332, "AWATER": 29395, "INTPTLAT": 41.9045054, "INTPTLON": -122.5583187, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.563477, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 899, "felt:has_geometry": true, "felt:h3_index": 644721733138311369, "STATEFP": 6, "PLACEFP": 31099, "PLACENS": 2408330, "GEOID": 631099, "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21678078, "AWATER": 3847, "INTPTLAT": 38.2638424, "INTPTLON": -122.162496, "NAME": "Green Valley,American Canyon", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 29, "felt:has_geometry": true, "felt:h3_index": 644721733986016010, "STATEFP": 6, "PLACEFP": 72646, "PLACENS": 2411929, "GEOID": 672646, "NAMELSAD": "Sonoma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7105863, "AWATER": 0, "INTPTLAT": 38.2903313, "INTPTLON": -122.459831, "NAME": "Sonoma,Napa", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 38.289937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 476, "felt:has_geometry": true, "felt:h3_index": 644721734916323120, "STATEFP": 6, "PLACEFP": 23182, "PLACENS": 2410474, "GEOID": 623182, "NAMELSAD": "Fairfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107707592, "AWATER": 738306, "INTPTLAT": 38.2620602, "INTPTLON": -122.032386, "NAME": "Fairfield,Vacaville,Suisun City", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1406, "felt:has_geometry": true, "felt:h3_index": 644721736123308808, "STATEFP": 6, "PLACEFP": 71927, "PLACENS": 2583142, "GEOID": 671927, "NAME": "Silverado Resort", "NAMELSAD": "Silverado Resort CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4896980, "AWATER": 24818, "INTPTLAT": 38.3563023, "INTPTLON": -122.2563343, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1292, "felt:has_geometry": true, "felt:h3_index": 644721736992036100, "STATEFP": 6, "PLACEFP": 58226, "PLACENS": 2409091, "GEOID": 658226, "NAMELSAD": "Port Costa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 409759, "AWATER": 0, "INTPTLAT": 38.044543, "INTPTLON": -122.1849415, "NAME": "Port Costa,Crockett,Benicia,Hercules,Rodeo,Martinez,Mountain View,Alhambra Valley", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 38.048091 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 98, "felt:has_geometry": true, "felt:h3_index": 644721738430170984, "STATEFP": 6, "PLACEFP": 81666, "PLACENS": 2412142, "GEOID": 681666, "NAME": "Vallejo", "NAMELSAD": "Vallejo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78784262, "AWATER": 46317409, "INTPTLAT": 38.1069086, "INTPTLON": -122.2623386, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.099983 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 355, "felt:has_geometry": true, "felt:h3_index": 644721741584868253, "STATEFP": 6, "PLACEFP": 64140, "PLACENS": 2411758, "GEOID": 664140, "NAMELSAD": "St. Helena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12838322, "AWATER": 327737, "INTPTLAT": 38.5128518, "INTPTLON": -122.4680218, "NAME": "St. Helena,Kenwood", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 867, "felt:has_geometry": true, "felt:h3_index": 644721742913564084, "STATEFP": 6, "PLACEFP": 28014, "PLACENS": 2583021, "GEOID": 628014, "NAMELSAD": "Fulton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5047023, "AWATER": 0, "INTPTLAT": 38.4937089, "INTPTLON": -122.773417, "NAME": "Fulton,Larkfield-Wikiup,Windsor", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.761230, 38.496594 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 512, "felt:has_geometry": true, "felt:h3_index": 644721744154407233, "STATEFP": 6, "PLACEFP": 2168, "PLACENS": 2407744, "GEOID": 602168, "NAMELSAD": "Angwin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12507052, "AWATER": 108688, "INTPTLAT": 38.5778747, "INTPTLON": -122.4512239, "NAME": "Angwin,Deer Park", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 391, "felt:has_geometry": true, "felt:h3_index": 644721745046755010, "STATEFP": 6, "PLACEFP": 9892, "PLACENS": 2409963, "GEOID": 609892, "NAME": "Calistoga", "NAMELSAD": "Calistoga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6673453, "AWATER": 46827, "INTPTLAT": 38.5814083, "INTPTLON": -122.5826961, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.585449, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1595, "felt:has_geometry": true, "felt:h3_index": 644721745632768365, "STATEFP": 6, "PLACEFP": 30028, "PLACENS": 2408299, "GEOID": 630028, "NAMELSAD": "Glen Ellen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5438518, "AWATER": 2744, "INTPTLAT": 38.3553229, "INTPTLON": -122.5433057, "NAME": "Glen Ellen,Boyes Hot Springs,Eldridge,Fetters Hot Springs-Agua Caliente,El Verano,Temelec", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 217, "felt:has_geometry": true, "felt:h3_index": 644721747052855968, "STATEFP": 6, "PLACEFP": 70098, "PLACENS": 2411827, "GEOID": 670098, "NAMELSAD": "Santa Rosa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110141809, "AWATER": 451569, "INTPTLAT": 38.4458238, "INTPTLON": -122.7061814, "NAME": "Santa Rosa,Sonoma State University,Rohnert Park,Cotati", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 392, "felt:has_geometry": true, "felt:h3_index": 644721747833575956, "STATEFP": 6, "PLACEFP": 86930, "PLACENS": 2412323, "GEOID": 686930, "NAMELSAD": "Yountville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3851793, "AWATER": 6876, "INTPTLAT": 38.3935118, "INTPTLON": -122.3655355, "NAME": "Yountville,Rutherford,Oakville", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 38.393339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 916, "felt:has_geometry": true, "felt:h3_index": 644721751107046290, "STATEFP": 6, "PLACEFP": 32340, "PLACENS": 2583031, "GEOID": 632340, "NAMELSAD": "Hartley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16763354, "AWATER": 65391, "INTPTLAT": 38.4203928, "INTPTLON": -121.9508422, "NAME": "Hartley,Dixon,Elmira", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 936, "felt:has_geometry": true, "felt:h3_index": 644721752093549827, "STATEFP": 6, "PLACEFP": 34484, "PLACENS": 2583037, "GEOID": 634484, "NAMELSAD": "Hood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 816263, "AWATER": 0, "INTPTLAT": 38.3692915, "INTPTLON": -121.515488, "NAME": "Hood,Clarksburg,Freeport,Courtland,Franklin", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 807, "felt:has_geometry": true, "felt:h3_index": 644721753555503523, "STATEFP": 6, "PLACEFP": 22104, "PLACENS": 2804443, "GEOID": 622104, "NAME": "El Macero", "NAMELSAD": "El Macero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1520806, "AWATER": 0, "INTPTLAT": 38.544019, "INTPTLON": -121.6851681, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -121.684570, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 23, "felt:has_geometry": true, "felt:h3_index": 644721754408758146, "STATEFP": 6, "PLACEFP": 60984, "PLACENS": 2410955, "GEOID": 660984, "NAMELSAD": "Rio Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17094324, "AWATER": 1283585, "INTPTLAT": 38.1766715, "INTPTLON": -121.7034059, "NAME": "Rio Vista,Isleton", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1537, "felt:has_geometry": true, "felt:h3_index": 644721756331221299, "STATEFP": 6, "PLACEFP": 83374, "PLACENS": 2409526, "GEOID": 683374, "NAMELSAD": "Walnut Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26419421, "AWATER": 1883606, "INTPTLAT": 38.2505944, "INTPTLON": -121.5349734, "NAME": "Walnut Grove,Thornton", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 297, "felt:has_geometry": true, "felt:h3_index": 644721759376263982, "STATEFP": 6, "PLACEFP": 86034, "PLACENS": 2412288, "GEOID": 686034, "NAME": "Winters", "NAMELSAD": "Winters city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7601165, "AWATER": 64542, "INTPTLAT": 38.5332708, "INTPTLON": -121.975473, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.530979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1161, "felt:has_geometry": true, "felt:h3_index": 644721760675158164, "STATEFP": 6, "PLACEFP": 49045, "PLACENS": 2583086, "GEOID": 649045, "NAMELSAD": "Monument Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10328922, "AWATER": 0, "INTPTLAT": 38.6641053, "INTPTLON": -121.8753893, "NAME": "Monument Hills,Madison", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 596, "felt:has_geometry": true, "felt:h3_index": 644721762382294226, "STATEFP": 6, "PLACEFP": 8506, "PLACENS": 2805237, "GEOID": 608506, "NAMELSAD": "Brooks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11146719, "AWATER": 0, "INTPTLAT": 38.7368801, "INTPTLON": -122.1468072, "NAME": "Brooks,Esparto", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.145996, 38.736946 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 496, "felt:has_geometry": true, "felt:h3_index": 644721763109407845, "STATEFP": 6, "PLACEFP": 996, "PLACENS": 2582932, "GEOID": 600996, "NAME": "Allendale", "NAMELSAD": "Allendale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15892908, "AWATER": 164542, "INTPTLAT": 38.4429856, "INTPTLON": -121.9833299, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1164, "felt:has_geometry": true, "felt:h3_index": 644721764727083330, "STATEFP": 6, "PLACEFP": 49432, "PLACENS": 2583087, "GEOID": 649432, "NAME": "Moskowite Corner", "NAMELSAD": "Moskowite Corner CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7338786, "AWATER": 11878, "INTPTLAT": 38.4438743, "INTPTLON": -122.1919904, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1509, "felt:has_geometry": true, "felt:h3_index": 644721765277335765, "STATEFP": 6, "PLACEFP": 81302, "PLACENS": 2628819, "GEOID": 681302, "NAME": "University of California-Davis", "NAMELSAD": "University of California-Davis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4473488, "AWATER": 0, "INTPTLAT": 38.5377038, "INTPTLON": -121.7578995, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 38.530979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 346, "felt:has_geometry": true, "felt:h3_index": 644721767494091681, "STATEFP": 6, "PLACEFP": 6000, "PLACENS": 2409837, "GEOID": 606000, "NAMELSAD": "Berkeley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27018309, "AWATER": 18712737, "INTPTLAT": 37.8656733, "INTPTLON": -122.2987247, "NAME": "Berkeley,Emeryville,Alameda", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 323, "felt:has_geometry": true, "felt:h3_index": 644721768171489905, "STATEFP": 6, "PLACEFP": 70364, "PLACENS": 2411834, "GEOID": 670364, "NAMELSAD": "Sausalito city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4568773, "AWATER": 1276883, "INTPTLAT": 37.8583694, "INTPTLON": -122.4918436, "NAME": "Sausalito,Marin City,Mill Valley,Tamalpais-Homestead Valley,Tiburon,Belvedere,Corte Madera,Strawberry,Alto,Muir Beach", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 324, "felt:has_geometry": true, "felt:h3_index": 644721769203154334, "STATEFP": 6, "PLACEFP": 54232, "PLACENS": 2411334, "GEOID": 654232, "NAMELSAD": "Orinda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33285592, "AWATER": 40530, "INTPTLAT": 37.8816103, "INTPTLON": -122.1685955, "NAME": "Orinda,Acalanes Ridge,Lafayette,Saranap,Piedmont,Moraga", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 326, "felt:has_geometry": true, "felt:h3_index": 644721770273784531, "STATEFP": 6, "PLACEFP": 60620, "PLACENS": 2410939, "GEOID": 660620, "NAMELSAD": "Richmond city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77809538, "AWATER": 58194574, "INTPTLAT": 37.9522779, "INTPTLON": -122.360609, "NAME": "Richmond,San Pablo,Rollingwood,North Richmond,El Sobrante,East Richmond Heights,Bayview,Montalvin Manor,Pinole,Tara Hills,El Cerrito,Albany,Kensington", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.944198 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 72, "felt:has_geometry": true, "felt:h3_index": 644721771480288549, "STATEFP": 6, "PLACEFP": 8310, "PLACENS": 2409912, "GEOID": 608310, "NAMELSAD": "Brisbane city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7731744, "AWATER": 43981510, "INTPTLAT": 37.6757495, "INTPTLON": -122.383302, "NAME": "Brisbane,South San Francisco,Burlingame,Hillsborough,San Bruno,Millbrae", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.666429 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 594, "felt:has_geometry": true, "felt:h3_index": 644721772525304616, "STATEFP": 6, "PLACEFP": 8338, "PLACENS": 2407907, "GEOID": 608338, "NAMELSAD": "Broadmoor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1118795, "AWATER": 0, "INTPTLAT": 37.6914953, "INTPTLON": -122.4813393, "NAME": "Broadmoor,Daly City,Colma", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.683820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 351, "felt:has_geometry": true, "felt:h3_index": 644721773560687748, "STATEFP": 6, "PLACEFP": 68084, "PLACENS": 2411794, "GEOID": 668084, "NAMELSAD": "San Leandro city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34507478, "AWATER": 5587445, "INTPTLAT": 37.7033683, "INTPTLON": -122.163036, "NAME": "San Leandro,Oakland,Ashland,San Lorenzo,Cherryland", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.701207 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1188, "felt:has_geometry": true, "felt:h3_index": 644721775715343254, "STATEFP": 6, "PLACEFP": 51280, "PLACENS": 2628764, "GEOID": 651280, "NAMELSAD": "Nicasio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3379839, "AWATER": 0, "INTPTLAT": 38.0606215, "INTPTLON": -122.7008217, "NAME": "Nicasio,San Geronimo,Lagunitas-Forest Knolls", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 953, "felt:has_geometry": true, "felt:h3_index": 644721777604297910, "STATEFP": 6, "PLACEFP": 36616, "PLACENS": 2408428, "GEOID": 636616, "NAMELSAD": "Inverness CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16575794, "AWATER": 1130139, "INTPTLAT": 38.0827964, "INTPTLON": -122.8549425, "NAME": "Inverness,Point Reyes Station", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.849121, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 133, "felt:has_geometry": true, "felt:h3_index": 644721778397234201, "STATEFP": 6, "PLACEFP": 52582, "PLACENS": 2411283, "GEOID": 652582, "NAMELSAD": "Novato city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 71159604, "AWATER": 1320903, "INTPTLAT": 38.0850865, "INTPTLON": -122.5482145, "NAME": "Novato,Black Point-Green Point", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1263, "felt:has_geometry": true, "felt:h3_index": 644721779093558966, "STATEFP": 6, "PLACEFP": 56786, "PLACENS": 2805236, "GEOID": 656786, "NAMELSAD": "Petaluma Center CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3038425, "AWATER": 0, "INTPTLAT": 38.2506525, "INTPTLON": -122.788841, "NAME": "Petaluma Center,Petaluma,Penngrove", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.783203, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 576, "felt:has_geometry": true, "felt:h3_index": 644721779945822237, "STATEFP": 6, "PLACEFP": 7316, "PLACENS": 2407875, "GEOID": 607316, "NAMELSAD": "Bolinas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15090532, "AWATER": 0, "INTPTLAT": 37.9177251, "INTPTLON": -122.7095023, "NAME": "Bolinas,Stinson Beach", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1380, "felt:has_geometry": true, "felt:h3_index": 644721782190917342, "STATEFP": 6, "PLACEFP": 70154, "PLACENS": 2409283, "GEOID": 670154, "NAMELSAD": "Santa Venetia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9489702, "AWATER": 74911, "INTPTLAT": 38.0055375, "INTPTLON": -122.5028107, "NAME": "Santa Venetia,Lucas Valley-Marinwood,Ross,Kentfield,Larkspur,Fairfax,Woodacre,Sleepy Hollow,San Anselmo,San Rafael", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 394, "felt:has_geometry": true, "felt:h3_index": 644721784669758060, "STATEFP": 6, "PLACEFP": 2252, "PLACENS": 2409715, "GEOID": 602252, "NAME": "Antioch", "NAMELSAD": "Antioch city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75552859, "AWATER": 1995937, "INTPTLAT": 37.978336, "INTPTLON": -121.7960638, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -121.794434, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 395, "felt:has_geometry": true, "felt:h3_index": 644721785309273326, "STATEFP": 6, "PLACEFP": 16000, "PLACENS": 2410214, "GEOID": 616000, "NAMELSAD": "Concord city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79148766, "AWATER": 0, "INTPTLAT": 37.972186, "INTPTLON": -122.0015986, "NAME": "Concord,Clyde,Pacheco,Vine Hill,Bay Point,Shell Ridge,Contra Costa Centre,San Miguel,Walnut Creek,North Gate,Pleasant Hill,Reliez Valley,Clayton", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 456, "felt:has_geometry": true, "felt:h3_index": 644721786404046512, "STATEFP": 6, "PLACEFP": 53070, "PLACENS": 2411294, "GEOID": 653070, "NAMELSAD": "Oakley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 41091677, "AWATER": 789638, "INTPTLAT": 37.9961485, "INTPTLON": -121.6936235, "NAME": "Oakley,Bethel Island,Brentwood,Knightsen", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -121.684570, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 398, "felt:has_geometry": true, "felt:h3_index": 644721788008285010, "STATEFP": 6, "PLACEFP": 57456, "PLACENS": 2411430, "GEOID": 657456, "NAME": "Pittsburg", "NAMELSAD": "Pittsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45780277, "AWATER": 5359381, "INTPTLAT": 38.0167706, "INTPTLON": -121.8969477, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 625, "felt:has_geometry": true, "felt:h3_index": 644721788670447854, "STATEFP": 6, "PLACEFP": 10301, "PLACENS": 2583160, "GEOID": 610301, "NAMELSAD": "Camino Tassajara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3305050, "AWATER": 0, "INTPTLAT": 37.7908857, "INTPTLON": -121.8850524, "NAME": "Camino Tassajara,Dublin,Livermore", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 396, "felt:has_geometry": true, "felt:h3_index": 644721789707702597, "STATEFP": 6, "PLACEFP": 17988, "PLACENS": 2412403, "GEOID": 617988, "NAMELSAD": "Danville town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46821256, "AWATER": 0, "INTPTLAT": 37.8121416, "INTPTLON": -121.9698235, "NAME": "Danville,Castle Hill,Diablo,Blackhawk,Alamo,Norris Canyon,San Ramon", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 609, "felt:has_geometry": true, "felt:h3_index": 644721791153484726, "STATEFP": 6, "PLACEFP": 9346, "PLACENS": 2407934, "GEOID": 609346, "NAME": "Byron", "NAMELSAD": "Byron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16889207, "AWATER": 0, "INTPTLAT": 37.8756441, "INTPTLON": -121.6421196, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1387, "felt:has_geometry": true, "felt:h3_index": 644721805181993804, "STATEFP": 6, "PLACEFP": 70712, "PLACENS": 2583133, "GEOID": 670712, "NAME": "Sea Ranch", "NAMELSAD": "Sea Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41742090, "AWATER": 277559, "INTPTLAT": 38.7252743, "INTPTLON": -123.458314, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -123.464355, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1484, "felt:has_geometry": true, "felt:h3_index": 644721807929263001, "STATEFP": 6, "PLACEFP": 78715, "PLACENS": 2583163, "GEOID": 678715, "NAME": "Timber Cove", "NAMELSAD": "Timber Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14637533, "AWATER": 0, "INTPTLAT": 38.5410889, "INTPTLON": -123.258786, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -123.266602, 38.530979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1105, "felt:has_geometry": true, "felt:h3_index": 644721812890509963, "STATEFP": 6, "PLACEFP": 45386, "PLACENS": 2628754, "GEOID": 645386, "NAME": "Manchester", "NAMELSAD": "Manchester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6780881, "AWATER": 0, "INTPTLAT": 38.9743844, "INTPTLON": -123.6909611, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 38.976492 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 64, "felt:has_geometry": true, "felt:h3_index": 644721816599915433, "STATEFP": 6, "PLACEFP": 57876, "PLACENS": 2411449, "GEOID": 657876, "NAMELSAD": "Point Arena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3537807, "AWATER": 0, "INTPTLAT": 38.912306, "INTPTLON": -123.6956087, "NAME": "Point Arena,Anchor Bay", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 878, "felt:has_geometry": true, "felt:h3_index": 644721819421902640, "STATEFP": 6, "PLACEFP": 29420, "PLACENS": 2583024, "GEOID": 629420, "NAME": "Geyserville", "NAMELSAD": "Geyserville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11690104, "AWATER": 0, "INTPTLAT": 38.7173139, "INTPTLON": -122.9034234, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.893066, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 2, "felt:has_geometry": true, "felt:h3_index": 644721820507878737, "STATEFP": 6, "PLACEFP": 14190, "PLACENS": 2409487, "GEOID": 614190, "NAME": "Cloverdale", "NAMELSAD": "Cloverdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8120471, "AWATER": 0, "INTPTLAT": 38.7961178, "INTPTLON": -123.0150504, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -123.002930, 38.788345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 685, "felt:has_geometry": true, "felt:h3_index": 644721820850935306, "STATEFP": 6, "PLACEFP": 14302, "PLACENS": 2407643, "GEOID": 614302, "NAME": "Cobb", "NAMELSAD": "Cobb CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12897761, "AWATER": 22376, "INTPTLAT": 38.8353286, "INTPTLON": -122.7224347, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 38.839708 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 333, "felt:has_geometry": true, "felt:h3_index": 644721823180247955, "STATEFP": 6, "PLACEFP": 33056, "PLACENS": 2410726, "GEOID": 633056, "NAME": "Healdsburg", "NAMELSAD": "Healdsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11448706, "AWATER": 0, "INTPTLAT": 38.6225262, "INTPTLON": -122.8651327, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 38.616870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 582, "felt:has_geometry": true, "felt:h3_index": 644721827939161384, "STATEFP": 6, "PLACEFP": 7512, "PLACENS": 2628712, "GEOID": 607512, "NAME": "Boonville", "NAMELSAD": "Boonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14355353, "AWATER": 0, "INTPTLAT": 39.0114745, "INTPTLON": -123.3740428, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -123.376465, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1267, "felt:has_geometry": true, "felt:h3_index": 644721829088003747, "STATEFP": 6, "PLACEFP": 56868, "PLACENS": 2628777, "GEOID": 656868, "NAME": "Philo", "NAMELSAD": "Philo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5353556, "AWATER": 0, "INTPTLAT": 39.065757, "INTPTLON": -123.4450628, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -123.442383, 39.061849 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1465, "felt:has_geometry": true, "felt:h3_index": 644721830036626646, "STATEFP": 6, "PLACEFP": 77784, "PLACENS": 2410053, "GEOID": 677784, "NAME": "Talmage", "NAMELSAD": "Talmage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4117638, "AWATER": 4089, "INTPTLAT": 39.131198, "INTPTLON": -123.1638376, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -123.156738, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 616, "felt:has_geometry": true, "felt:h3_index": 644721830710044534, "STATEFP": 6, "PLACEFP": 9990, "PLACENS": 2628714, "GEOID": 609990, "NAMELSAD": "Calpella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6598677, "AWATER": 64954, "INTPTLAT": 39.2337206, "INTPTLON": -123.1937598, "NAME": "Calpella,Ukiah", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -123.200684, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 938, "felt:has_geometry": true, "felt:h3_index": 644721833631241384, "STATEFP": 6, "PLACEFP": 34652, "PLACENS": 2628739, "GEOID": 634652, "NAME": "Hopland", "NAMELSAD": "Hopland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9128964, "AWATER": 124597, "INTPTLAT": 38.9688302, "INTPTLON": -123.1168992, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1390, "felt:has_geometry": true, "felt:h3_index": 644721853001019636, "STATEFP": 6, "PLACEFP": 71000, "PLACENS": 2583134, "GEOID": 671000, "NAMELSAD": "Sereno del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1909750, "AWATER": 0, "INTPTLAT": 38.3836712, "INTPTLON": -123.0731482, "NAME": "Sereno del Mar,Carmet,Salmon Creek,Bodega Bay", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -123.068848, 38.376115 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1596, "felt:has_geometry": true, "felt:h3_index": 644721855211045576, "STATEFP": 6, "PLACEFP": 30812, "PLACENS": 2408322, "GEOID": 630812, "NAMELSAD": "Graton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4090304, "AWATER": 0, "INTPTLAT": 38.4375168, "INTPTLON": -122.8659876, "NAME": "Graton,Forestville,Occidental,Sebastopol", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.871094, 38.427774 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 653, "felt:has_geometry": true, "felt:h3_index": 644721856191440666, "STATEFP": 6, "PLACEFP": 12146, "PLACENS": 2582969, "GEOID": 612146, "NAMELSAD": "Cazadero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18431243, "AWATER": 3546, "INTPTLAT": 38.5278309, "INTPTLON": -123.1097995, "NAME": "Cazadero,Guerneville,Jenner,Monte Rio", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 38.530979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 747, "felt:has_geometry": true, "felt:h3_index": 644721857553584128, "STATEFP": 6, "PLACEFP": 19262, "PLACENS": 2408671, "GEOID": 619262, "NAME": "Dillon Beach", "NAMELSAD": "Dillon Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7727875, "AWATER": 0, "INTPTLAT": 38.2434883, "INTPTLON": -122.955955, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.958984, 38.238180 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 573, "felt:has_geometry": true, "felt:h3_index": 644721859550923989, "STATEFP": 6, "PLACEFP": 7246, "PLACENS": 2582947, "GEOID": 607246, "NAMELSAD": "Bodega CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7515783, "AWATER": 0, "INTPTLAT": 38.3488408, "INTPTLON": -122.9711641, "NAME": "Bodega,Valley Ford,Bloomfield,Tomales", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.958984, 38.341656 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 526, "felt:has_geometry": true, "felt:h3_index": 644721870536811062, "STATEFP": 6, "PLACEFP": 3205, "PLACENS": 2582982, "GEOID": 603205, "NAME": "Auburn Lake Trails", "NAMELSAD": "Auburn Lake Trails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32963739, "AWATER": 56719, "INTPTLAT": 38.8862376, "INTPTLON": -120.9796991, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 194, "felt:has_geometry": true, "felt:h3_index": 644721871577874962, "STATEFP": 6, "PLACEFP": 3204, "PLACENS": 2409754, "GEOID": 603204, "NAMELSAD": "Auburn city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18588528, "AWATER": 71271, "INTPTLAT": 38.8950746, "INTPTLON": -121.0767393, "NAME": "Auburn,Lincoln,Penryn,Newcastle", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 876, "felt:has_geometry": true, "felt:h3_index": 644721872278668419, "STATEFP": 6, "PLACEFP": 29350, "PLACENS": 2408289, "GEOID": 629350, "NAME": "Georgetown", "NAMELSAD": "Georgetown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39182259, "AWATER": 10741, "INTPTLAT": 38.9113533, "INTPTLON": -120.834624, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1018, "felt:has_geometry": true, "felt:h3_index": 644721873548962928, "STATEFP": 6, "PLACEFP": 39690, "PLACENS": 2408547, "GEOID": 639690, "NAMELSAD": "Lake of the Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6544587, "AWATER": 908432, "INTPTLAT": 39.0387456, "INTPTLON": -121.061341, "NAME": "Lake of the Pines,Meadow Vista,North Auburn", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 39.044786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 623, "felt:has_geometry": true, "felt:h3_index": 644721874429391405, "STATEFP": 6, "PLACEFP": 10256, "PLACENS": 2407944, "GEOID": 610256, "NAMELSAD": "Cameron Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29078546, "AWATER": 186312, "INTPTLAT": 38.6740287, "INTPTLON": -120.9883375, "NAME": "Cameron Park,Shingle Springs,El Dorado Hills", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 889, "felt:has_geometry": true, "felt:h3_index": 644721875553377348, "STATEFP": 6, "PLACEFP": 30693, "PLACENS": 2408318, "GEOID": 630693, "NAMELSAD": "Granite Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55810220, "AWATER": 111696, "INTPTLAT": 38.7604413, "INTPTLON": -121.1681961, "NAME": "Granite Bay,Loomis,Orangevale,Citrus Heights,Folsom", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 693, "felt:has_geometry": true, "felt:h3_index": 644721876709673065, "STATEFP": 6, "PLACEFP": 14764, "PLACENS": 2582981, "GEOID": 614764, "NAMELSAD": "Coloma CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8689800, "AWATER": 0, "INTPTLAT": 38.802616, "INTPTLON": -120.8946346, "NAME": "Coloma,Diamond Springs,Cold Springs,Placerville", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 797, "felt:has_geometry": true, "felt:h3_index": 644721878823036244, "STATEFP": 6, "PLACEFP": 4576, "PLACENS": 2407813, "GEOID": 604576, "NAMELSAD": "Beale AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26139571, "AWATER": 25614, "INTPTLAT": 39.1080613, "INTPTLON": -121.3512148, "NAME": "Beale AFB,Wheatland", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 39.113014 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1054, "felt:has_geometry": true, "felt:h3_index": 644721880377435185, "STATEFP": 6, "PLACEFP": 41572, "PLACENS": 2408613, "GEOID": 641572, "NAMELSAD": "Linda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22236546, "AWATER": 0, "INTPTLAT": 39.1241415, "INTPTLON": -121.5421728, "NAME": "Linda,Marysville,Yuba City", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1259, "felt:has_geometry": true, "felt:h3_index": 644721880879674762, "STATEFP": 6, "PLACEFP": 56518, "PLACENS": 2409052, "GEOID": 656518, "NAMELSAD": "Penn Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494646, "AWATER": 0, "INTPTLAT": 39.1952969, "INTPTLON": -121.1941531, "NAME": "Penn Valley,Lake Wildwood,Rough and Ready,Smartsville", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 39.198205 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1070, "felt:has_geometry": true, "felt:h3_index": 644721882114091755, "STATEFP": 6, "PLACEFP": 42412, "PLACENS": 2408121, "GEOID": 642412, "NAME": "Loma Rica", "NAMELSAD": "Loma Rica CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47881271, "AWATER": 0, "INTPTLAT": 39.3203182, "INTPTLON": -121.4038312, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1397, "felt:has_geometry": true, "felt:h3_index": 644721883050285421, "STATEFP": 6, "PLACEFP": 71414, "PLACENS": 2583137, "GEOID": 671414, "NAME": "Sheridan", "NAMELSAD": "Sheridan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 66129143, "AWATER": 15380, "INTPTLAT": 38.9731114, "INTPTLON": -121.350946, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 38.976492 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1228, "felt:has_geometry": true, "felt:h3_index": 644721884516457251, "STATEFP": 6, "PLACEFP": 53714, "PLACENS": 2408986, "GEOID": 653714, "NAMELSAD": "Olivehurst CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21791564, "AWATER": 0, "INTPTLAT": 39.0794611, "INTPTLON": -121.5566594, "NAME": "Olivehurst,Plumas Lake,Rio Oso", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 39.078908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1289, "felt:has_geometry": true, "felt:h3_index": 644721892361966609, "STATEFP": 6, "PLACEFP": 58030, "PLACENS": 2409086, "GEOID": 658030, "NAME": "Pollock Pines", "NAMELSAD": "Pollock Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22335059, "AWATER": 83617, "INTPTLAT": 38.7576414, "INTPTLON": -120.5909566, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 763, "felt:has_geometry": true, "felt:h3_index": 644721896008771724, "STATEFP": 6, "PLACEFP": 20298, "PLACENS": 2628726, "GEOID": 620298, "NAMELSAD": "Dutch Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1534848, "AWATER": 0, "INTPTLAT": 39.2080078, "INTPTLON": -120.834476, "NAME": "Dutch Flat,Alta", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 39.198205 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 205, "felt:has_geometry": true, "felt:h3_index": 644721897048647020, "STATEFP": 6, "PLACEFP": 50874, "PLACENS": 2411225, "GEOID": 650874, "NAMELSAD": "Nevada City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5661517, "AWATER": 9642, "INTPTLAT": 39.2596075, "INTPTLON": -121.0333263, "NAME": "Nevada City,Grass Valley", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -121.025391, 39.249271 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 495, "felt:has_geometry": true, "felt:h3_index": 644721899576338716, "STATEFP": 6, "PLACEFP": 982, "PLACENS": 2582931, "GEOID": 600982, "NAMELSAD": "Alleghany CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 904298, "AWATER": 0, "INTPTLAT": 39.4666605, "INTPTLON": -120.8411258, "NAME": "Alleghany,Washington", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 39.470125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 846, "felt:has_geometry": true, "felt:h3_index": 644721900836195411, "STATEFP": 6, "PLACEFP": 24834, "PLACENS": 2408229, "GEOID": 624834, "NAME": "Foresthill", "NAMELSAD": "Foresthill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28969105, "AWATER": 0, "INTPTLAT": 39.0052862, "INTPTLON": -120.8313547, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 506, "felt:has_geometry": true, "felt:h3_index": 644721901352885549, "STATEFP": 6, "PLACEFP": 1360, "PLACENS": 2407731, "GEOID": 601360, "NAMELSAD": "Alta Sierra CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21551268, "AWATER": 53117, "INTPTLAT": 39.1261741, "INTPTLON": -121.0490846, "NAME": "Alta Sierra,Colfax", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1575, "felt:has_geometry": true, "felt:h3_index": 644721905207916763, "STATEFP": 6, "PLACEFP": 85880, "PLACENS": 2409604, "GEOID": 685880, "NAME": "Wilton", "NAMELSAD": "Wilton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75115869, "AWATER": 0, "INTPTLAT": 38.4129769, "INTPTLON": -121.2127181, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1530, "felt:has_geometry": true, "felt:h3_index": 644721905672497181, "STATEFP": 6, "PLACEFP": 82852, "PLACENS": 2409518, "GEOID": 682852, "NAMELSAD": "Vineyard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48558204, "AWATER": 0, "INTPTLAT": 38.4740353, "INTPTLON": -121.3239951, "NAME": "Vineyard,Rosemont,Elk Grove,Florin", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1313, "felt:has_geometry": true, "felt:h3_index": 644721907311596229, "STATEFP": 6, "PLACEFP": 59506, "PLACENS": 2409136, "GEOID": 659506, "NAME": "Rancho Murieta", "NAMELSAD": "Rancho Murieta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30776825, "AWATER": 467881, "INTPTLAT": 38.5007005, "INTPTLON": -121.0740205, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 38.496594 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 882, "felt:has_geometry": true, "felt:h3_index": 644721907862682536, "STATEFP": 6, "PLACEFP": 30345, "PLACENS": 2408305, "GEOID": 630345, "NAMELSAD": "Gold River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6884489, "AWATER": 213093, "INTPTLAT": 38.6268536, "INTPTLON": -121.2491637, "NAME": "Gold River,Rancho Cordova,Mather", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.616870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 920, "felt:has_geometry": true, "felt:h3_index": 644721909016340648, "STATEFP": 6, "PLACEFP": 33294, "PLACENS": 2583034, "GEOID": 633294, "NAMELSAD": "Herald CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20406216, "AWATER": 57778, "INTPTLAT": 38.2884031, "INTPTLON": -121.2310658, "NAME": "Herald,Clay,Dogtown", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 38.289937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 443, "felt:has_geometry": true, "felt:h3_index": 644721910760879467, "STATEFP": 6, "PLACEFP": 28112, "PLACENS": 2410563, "GEOID": 628112, "NAME": "Galt", "NAMELSAD": "Galt city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18508749, "AWATER": 34676, "INTPTLAT": 38.2703894, "INTPTLON": -121.3005957, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 38.272689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 462, "felt:has_geometry": true, "felt:h3_index": 644721911287721171, "STATEFP": 6, "PLACEFP": 36672, "PLACENS": 2410110, "GEOID": 636672, "NAMELSAD": "Ione city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11861672, "AWATER": 118011, "INTPTLAT": 38.3628615, "INTPTLON": -120.9476845, "NAME": "Ione,Buena Vista", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 817, "felt:has_geometry": true, "felt:h3_index": 644721913361409796, "STATEFP": 6, "PLACEFP": 22524, "PLACENS": 2583010, "GEOID": 622524, "NAMELSAD": "Elverta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22900221, "AWATER": 0, "INTPTLAT": 38.7184638, "INTPTLON": -121.4454754, "NAME": "Elverta,Rio Linda", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 994, "felt:has_geometry": true, "felt:h3_index": 644721914214835804, "STATEFP": 6, "PLACEFP": 38800, "PLACENS": 2583047, "GEOID": 638800, "NAMELSAD": "Knights Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399445, "AWATER": 0, "INTPTLAT": 38.7979719, "INTPTLON": -121.7174475, "NAME": "Knights Landing,Yolo", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 38.788345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 193, "felt:has_geometry": true, "felt:h3_index": 644721915601127716, "STATEFP": 6, "PLACEFP": 62364, "PLACENS": 2410980, "GEOID": 662364, "NAMELSAD": "Rocklin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51307151, "AWATER": 57380, "INTPTLAT": 38.8068681, "INTPTLON": -121.249696, "NAME": "Rocklin,Roseville", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1190, "felt:has_geometry": true, "felt:h3_index": 644721916546729873, "STATEFP": 6, "PLACEFP": 51336, "PLACENS": 2583093, "GEOID": 651336, "NAMELSAD": "Nicolaus CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8074147, "AWATER": 0, "INTPTLAT": 38.8981899, "INTPTLON": -121.5728371, "NAME": "Nicolaus,Trowbridge,East Nicolaus", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -121.574707, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 296, "felt:has_geometry": true, "felt:h3_index": 644721917400555624, "STATEFP": 6, "PLACEFP": 84816, "PLACENS": 2412228, "GEOID": 684816, "NAMELSAD": "West Sacramento city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55606617, "AWATER": 3446736, "INTPTLAT": 38.5543684, "INTPTLON": -121.5486634, "NAME": "West Sacramento,Sacramento,Lemon Hill,Fruitridge Pocket,Parkway", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 298, "felt:has_geometry": true, "felt:h3_index": 644721918588814197, "STATEFP": 6, "PLACEFP": 86328, "PLACENS": 2412300, "GEOID": 686328, "NAMELSAD": "Woodland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39665023, "AWATER": 0, "INTPTLAT": 38.6711605, "INTPTLON": -121.7500432, "NAME": "Woodland,Davis", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 636, "felt:has_geometry": true, "felt:h3_index": 644721919623586141, "STATEFP": 6, "PLACEFP": 11390, "PLACENS": 2407967, "GEOID": 611390, "NAMELSAD": "Carmichael CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39714478, "AWATER": 602793, "INTPTLAT": 38.6308121, "INTPTLON": -121.3256364, "NAME": "Carmichael,McClellan Park,North Highlands,Fair Oaks,Antelope,Foothill Farms,Arden-Arcade,La Riviera", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 38.634036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1065, "felt:has_geometry": true, "felt:h3_index": 644721922483215114, "STATEFP": 6, "PLACEFP": 42142, "PLACENS": 2812656, "GEOID": 642142, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082298, "AWATER": 0, "INTPTLAT": 38.4866914, "INTPTLON": -120.6034249, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1335, "felt:has_geometry": true, "felt:h3_index": 644721923661961014, "STATEFP": 6, "PLACEFP": 61124, "PLACENS": 2586445, "GEOID": 661124, "NAME": "River Pines", "NAMELSAD": "River Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 524419, "AWATER": 0, "INTPTLAT": 38.545458000000007, "INTPTLON": -120.7429092, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -120.739746, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 904, "felt:has_geometry": true, "felt:h3_index": 644721924029761590, "STATEFP": 6, "PLACEFP": 31302, "PLACENS": 2628736, "GEOID": 631302, "NAME": "Grizzly Flats", "NAMELSAD": "Grizzly Flats CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17168505, "AWATER": 0, "INTPTLAT": 38.6356964, "INTPTLON": -120.535435, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 38.634036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 624, "felt:has_geometry": true, "felt:h3_index": 644721925059306634, "STATEFP": 6, "PLACEFP": 10270, "PLACENS": 2582961, "GEOID": 610270, "NAME": "Camino", "NAMELSAD": "Camino CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6659897, "AWATER": 0, "INTPTLAT": 38.7422654, "INTPTLON": -120.6808108, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 38.736946 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1273, "felt:has_geometry": true, "felt:h3_index": 644721926213384809, "STATEFP": 6, "PLACEFP": 57148, "PLACENS": 2583114, "GEOID": 657148, "NAMELSAD": "Pine Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19383669, "AWATER": 0, "INTPTLAT": 38.4030395, "INTPTLON": -120.6570875, "NAME": "Pine Grove,West Point,Volcano,Red Corral,Pioneer", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 38.393339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 461, "felt:has_geometry": true, "felt:h3_index": 644721927117279756, "STATEFP": 6, "PLACEFP": 1514, "PLACENS": 2409693, "GEOID": 601514, "NAMELSAD": "Amador City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 801747, "AWATER": 0, "INTPTLAT": 38.4189949, "INTPTLON": -120.8232598, "NAME": "Amador City,Plymouth,Fiddletown,Drytown,Sutter Creek", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 509, "felt:has_geometry": true, "felt:h3_index": 644721928344028706, "STATEFP": 6, "PLACEFP": 1518, "PLACENS": 2812655, "GEOID": 601518, "NAMELSAD": "Amador Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12561595, "AWATER": 0, "INTPTLAT": 38.4896313, "INTPTLON": -120.5333049, "NAME": "Amador Pines,Buckhorn", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -120.520020, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1116, "felt:has_geometry": true, "felt:h3_index": 644721939188048516, "STATEFP": 6, "PLACEFP": 46338, "PLACENS": 2583074, "GEOID": 646338, "NAME": "Maxwell", "NAMELSAD": "Maxwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569332, "AWATER": 0, "INTPTLAT": 39.2770782, "INTPTLON": -122.1946759, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.283294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1067, "felt:has_geometry": true, "felt:h3_index": 644721940661747024, "STATEFP": 6, "PLACEFP": 42230, "PLACENS": 2583059, "GEOID": 642230, "NAME": "Lodoga", "NAMELSAD": "Lodoga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8772455, "AWATER": 0, "INTPTLAT": 39.3042725, "INTPTLON": -122.5059438, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 39.300299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1300, "felt:has_geometry": true, "felt:h3_index": 644721941324717229, "STATEFP": 6, "PLACEFP": 58758, "PLACENS": 2583118, "GEOID": 658758, "NAME": "Princeton", "NAMELSAD": "Princeton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3781914, "AWATER": 0, "INTPTLAT": 39.4015985, "INTPTLON": -122.0193595, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 265, "felt:has_geometry": true, "felt:h3_index": 644721945635593221, "STATEFP": 6, "PLACEFP": 14946, "PLACENS": 2410204, "GEOID": 614946, "NAMELSAD": "Colusa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11295870, "AWATER": 0, "INTPTLAT": 39.2000228, "INTPTLON": -122.0094812, "NAME": "Colusa,Williams", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 39.198205 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 805, "felt:has_geometry": true, "felt:h3_index": 644721950334265260, "STATEFP": 6, "PLACEFP": 22006, "PLACENS": 2628728, "GEOID": 622006, "NAME": "Elk Creek", "NAMELSAD": "Elk Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3820501, "AWATER": 81504, "INTPTLAT": 39.5986779, "INTPTLON": -122.5323198, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 39.588757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1445, "felt:has_geometry": true, "felt:h3_index": 644721952581245840, "STATEFP": 6, "PLACEFP": 75154, "PLACENS": 2583153, "GEOID": 675154, "NAME": "Stonyford", "NAMELSAD": "Stonyford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3636119, "AWATER": 0, "INTPTLAT": 39.3694918, "INTPTLON": -122.5438083, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 39.368279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 413, "felt:has_geometry": true, "felt:h3_index": 644721956063023726, "STATEFP": 6, "PLACEFP": 6560, "PLACENS": 2409848, "GEOID": 606560, "NAMELSAD": "Biggs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2317099, "AWATER": 0, "INTPTLAT": 39.4101867, "INTPTLON": -121.7133215, "NAME": "Biggs,Gridley", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 155, "felt:has_geometry": true, "felt:h3_index": 644721958220879138, "STATEFP": 6, "PLACEFP": 54386, "PLACENS": 2411337, "GEOID": 654386, "NAMELSAD": "Oroville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35994947, "AWATER": 47848, "INTPTLAT": 39.4954239, "INTPTLON": -121.5600694, "NAME": "Oroville,South Oroville,Thermalito,Oroville East,Palermo", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 39.487085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1326, "felt:has_geometry": true, "felt:h3_index": 644721959830195393, "STATEFP": 6, "PLACEFP": 60662, "PLACENS": 2612486, "GEOID": 660662, "NAME": "Richvale", "NAMELSAD": "Richvale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2401175, "AWATER": 0, "INTPTLAT": 39.4937385, "INTPTLON": -121.7507688, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 39.487085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 84, "felt:has_geometry": true, "felt:h3_index": 644721960644087960, "STATEFP": 6, "PLACEFP": 41936, "PLACENS": 2410846, "GEOID": 641936, "NAMELSAD": "Live Oak city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8083317, "AWATER": 0, "INTPTLAT": 39.2788019, "INTPTLON": -121.662439, "NAME": "Live Oak,Sutter", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 39.283294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 935, "felt:has_geometry": true, "felt:h3_index": 644721962514455689, "STATEFP": 6, "PLACEFP": 34428, "PLACENS": 2612482, "GEOID": 634428, "NAME": "Honcut", "NAMELSAD": "Honcut CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10970686, "AWATER": 0, "INTPTLAT": 39.3325914, "INTPTLON": -121.5387589, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 39.334297 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 522, "felt:has_geometry": true, "felt:h3_index": 644721965368679813, "STATEFP": 6, "PLACEFP": 2910, "PLACENS": 2628707, "GEOID": 602910, "NAME": "Artois", "NAMELSAD": "Artois CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7458262, "AWATER": 0, "INTPTLAT": 39.6331786, "INTPTLON": -122.1897577, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.622615 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 218, "felt:has_geometry": true, "felt:h3_index": 644721966062888084, "STATEFP": 6, "PLACEFP": 54274, "PLACENS": 2411335, "GEOID": 654274, "NAME": "Orland", "NAMELSAD": "Orland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7765622, "AWATER": 0, "INTPTLAT": 39.7460824, "INTPTLON": -122.1855449, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1194, "felt:has_geometry": true, "felt:h3_index": 644721966796508306, "STATEFP": 6, "PLACEFP": 51574, "PLACENS": 2612484, "GEOID": 651574, "NAMELSAD": "Nord CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5452534, "AWATER": 0, "INTPTLAT": 39.7737878, "INTPTLON": -121.9549057, "NAME": "Nord,Hamilton City", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 219, "felt:has_geometry": true, "felt:h3_index": 644721969601854029, "STATEFP": 6, "PLACEFP": 85684, "PLACENS": 2412272, "GEOID": 685684, "NAME": "Willows", "NAMELSAD": "Willows city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7344419, "AWATER": 31054, "INTPTLAT": 39.5147524, "INTPTLON": -122.1991778, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.520992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 382, "felt:has_geometry": true, "felt:h3_index": 644721974489566092, "STATEFP": 6, "PLACEFP": 13945, "PLACENS": 2409479, "GEOID": 613945, "NAMELSAD": "Clearlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26235110, "AWATER": 1167608, "INTPTLAT": 38.9600452, "INTPTLON": -122.6332316, "NAME": "Clearlake,Lower Lake", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1353, "felt:has_geometry": true, "felt:h3_index": 644721976003537758, "STATEFP": 6, "PLACEFP": 63302, "PLACENS": 2805251, "GEOID": 663302, "NAME": "Rumsey", "NAMELSAD": "Rumsey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6338948, "AWATER": 218858, "INTPTLAT": 38.893308, "INTPTLON": -122.2436468, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 924, "felt:has_geometry": true, "felt:h3_index": 644721978611729115, "STATEFP": 6, "PLACEFP": 33549, "PLACENS": 2408382, "GEOID": 633549, "NAMELSAD": "Hidden Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25433860, "AWATER": 374389, "INTPTLAT": 38.8014979, "INTPTLON": -122.5514216, "NAME": "Hidden Valley Lake,Middletown", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 906, "felt:has_geometry": true, "felt:h3_index": 644721979690108459, "STATEFP": 6, "PLACEFP": 31540, "PLACENS": 2628737, "GEOID": 631540, "NAMELSAD": "Guinda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7578139, "AWATER": 0, "INTPTLAT": 38.8273739, "INTPTLON": -122.1983586, "NAME": "Guinda,Tancred", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 38.822591 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1189, "felt:has_geometry": true, "felt:h3_index": 644721982539041578, "STATEFP": 6, "PLACEFP": 51294, "PLACENS": 2408925, "GEOID": 651294, "NAME": "Nice", "NAMELSAD": "Nice CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4472124, "AWATER": 12228, "INTPTLAT": 39.1261812, "INTPTLON": -122.8553295, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.849121, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1512, "felt:has_geometry": true, "felt:h3_index": 644721983748748648, "STATEFP": 6, "PLACEFP": 81358, "PLACENS": 2409382, "GEOID": 681358, "NAME": "Upper Lake", "NAMELSAD": "Upper Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4439947, "AWATER": 21212, "INTPTLAT": 39.1650498, "INTPTLON": -122.9051819, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.893066, 39.164141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1416, "felt:has_geometry": true, "felt:h3_index": 644721986105613489, "STATEFP": 6, "PLACEFP": 72478, "PLACENS": 2583147, "GEOID": 672478, "NAMELSAD": "Soda Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3327990, "AWATER": 0, "INTPTLAT": 39.0024314, "INTPTLON": -122.779476, "NAME": "Soda Bay,Lucerne,Kelseyville,Clearlake Riviera", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.783203, 38.993572 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1203, "felt:has_geometry": true, "felt:h3_index": 644721987206005528, "STATEFP": 6, "PLACEFP": 51990, "PLACENS": 2408942, "GEOID": 651990, "NAMELSAD": "North Lakeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832064, "AWATER": 6993183, "INTPTLAT": 39.0866322, "INTPTLON": -122.9094423, "NAME": "North Lakeport,Lakeport", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 39.078908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1432, "felt:has_geometry": true, "felt:h3_index": 644721988312697257, "STATEFP": 6, "PLACEFP": 73690, "PLACENS": 2583149, "GEOID": 673690, "NAMELSAD": "Spring Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12780930, "AWATER": 102405, "INTPTLAT": 39.0760533, "INTPTLON": -122.5845123, "NAME": "Spring Valley,Clearlake Oaks", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.585449, 39.078908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 517, "felt:has_geometry": true, "felt:h3_index": 644721992046339372, "STATEFP": 6, "PLACEFP": 2420, "PLACENS": 2407755, "GEOID": 602420, "NAMELSAD": "Arbuckle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4559938, "AWATER": 0, "INTPTLAT": 39.0141947, "INTPTLON": -122.0610427, "NAME": "Arbuckle,College City", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.058105, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1127, "felt:has_geometry": true, "felt:h3_index": 644721993619691746, "STATEFP": 6, "PLACEFP": 46926, "PLACENS": 2583078, "GEOID": 646926, "NAMELSAD": "Meridian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713975, "AWATER": 0, "INTPTLAT": 39.1404373, "INTPTLON": -121.9079004, "NAME": "Meridian,Grimes", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 760, "felt:has_geometry": true, "felt:h3_index": 644721994845959590, "STATEFP": 6, "PLACEFP": 20228, "PLACENS": 2583003, "GEOID": 620228, "NAME": "Dunnigan", "NAMELSAD": "Dunnigan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13551020, "AWATER": 0, "INTPTLAT": 38.8926428, "INTPTLON": -121.9741835, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1336, "felt:has_geometry": true, "felt:h3_index": 644721997469258910, "STATEFP": 6, "PLACEFP": 62168, "PLACENS": 2583123, "GEOID": 662168, "NAME": "Robbins", "NAMELSAD": "Robbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6706066, "AWATER": 22544, "INTPTLAT": 38.8669477, "INTPTLON": -121.7070925, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 38.856820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 595, "felt:has_geometry": true, "felt:h3_index": 644722007611057680, "STATEFP": 6, "PLACEFP": 8478, "PLACENS": 2582951, "GEOID": 608478, "NAMELSAD": "Brookdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9963087, "AWATER": 0, "INTPTLAT": 37.1057317, "INTPTLON": -122.110623, "NAME": "Brookdale,Lompico,Boulder Creek,Bonny Doon,Ben Lomond,Felton,Mount Hermon", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.102051, 37.107765 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 52, "felt:has_geometry": true, "felt:h3_index": 644722009897173091, "STATEFP": 6, "PLACEFP": 48956, "PLACENS": 2411142, "GEOID": 648956, "NAMELSAD": "Monte Sereno city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4231274, "AWATER": 0, "INTPTLAT": 37.2404096, "INTPTLON": -121.9882354, "NAME": "Monte Sereno,Cambrian Park,Los Gatos,Lexington Hills", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 472, "felt:has_geometry": true, "felt:h3_index": 644722012169345097, "STATEFP": 6, "PLACEFP": 69112, "PLACENS": 2411820, "GEOID": 669112, "NAME": "Santa Cruz", "NAMELSAD": "Santa Cruz city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32996448, "AWATER": 7998699, "INTPTLAT": 36.974385, "INTPTLON": -122.0352679, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 36.967449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 725, "felt:has_geometry": true, "felt:h3_index": 644722013311284645, "STATEFP": 6, "PLACEFP": 18086, "PLACENS": 2582991, "GEOID": 618086, "NAME": "Davenport", "NAMELSAD": "Davenport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7367925, "AWATER": 0, "INTPTLAT": 37.0177787, "INTPTLON": -122.1878849, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 37.020098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1593, "felt:has_geometry": true, "felt:h3_index": 644722014164797872, "STATEFP": 6, "PLACEFP": 87090, "PLACENS": 2583188, "GEOID": 687090, "NAMELSAD": "Zayante CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7308969, "AWATER": 0, "INTPTLAT": 37.0892135, "INTPTLON": -122.040862, "NAME": "Zayante,Scotts Valley,Live Oak,Twin Lakes,Capitola,Pleasure Point,Pasatiempo,Paradise Park,Aptos,Soquel,Seacliff", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 76, "felt:has_geometry": true, "felt:h3_index": 644722016601598709, "STATEFP": 6, "PLACEFP": 31708, "PLACENS": 2410685, "GEOID": 631708, "NAME": "Half Moon Bay", "NAMELSAD": "Half Moon Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16166728, "AWATER": 28378, "INTPTLAT": 37.467319, "INTPTLON": -122.4404845, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.457418 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 926, "felt:has_geometry": true, "felt:h3_index": 644722018547743633, "STATEFP": 6, "PLACEFP": 33632, "PLACENS": 2805051, "GEOID": 633632, "NAMELSAD": "Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3367662, "AWATER": 0, "INTPTLAT": 37.520022, "INTPTLON": -122.3458995, "NAME": "Highlands,San Carlos,Emerald Lake Hills,San Mateo,Belmont,Baywood Park,Woodside", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1156, "felt:has_geometry": true, "felt:h3_index": 644722019384691861, "STATEFP": 6, "PLACEFP": 48760, "PLACENS": 2408858, "GEOID": 648760, "NAMELSAD": "Montara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10040503, "AWATER": 0, "INTPTLAT": 37.5482633, "INTPTLON": -122.4923623, "NAME": "Montara,Moss Beach,Pacifica,El Granada", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 94, "felt:has_geometry": true, "felt:h3_index": 644722022924517800, "STATEFP": 6, "PLACEFP": 58380, "PLACENS": 2412499, "GEOID": 658380, "NAMELSAD": "Portola Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23524913, "AWATER": 3741, "INTPTLAT": 37.3651909, "INTPTLON": -122.2327244, "NAME": "Portola Valley,La Honda,Pescadero,Loma Mar", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 114, "felt:has_geometry": true, "felt:h3_index": 644722025354083556, "STATEFP": 6, "PLACEFP": 49278, "PLACENS": 2411162, "GEOID": 649278, "NAME": "Morgan Hill", "NAMELSAD": "Morgan Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33509082, "AWATER": 0, "INTPTLAT": 37.132495, "INTPTLON": -121.6418905, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.125286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 54, "felt:has_geometry": true, "felt:h3_index": 644722025844024467, "STATEFP": 6, "PLACEFP": 68000, "PLACENS": 2411790, "GEOID": 668000, "NAME": "San Jose", "NAMELSAD": "San Jose city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 460811249, "AWATER": 8089813, "INTPTLAT": 37.2960112, "INTPTLON": -121.8145519, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.300275 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1371, "felt:has_geometry": true, "felt:h3_index": 644722029521602098, "STATEFP": 6, "PLACEFP": 68238, "PLACENS": 2409264, "GEOID": 668238, "NAMELSAD": "San Martin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30043758, "AWATER": 0, "INTPTLAT": 37.0828811, "INTPTLON": -121.5963221, "NAME": "San Martin,Gilroy", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 37.072710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 350, "felt:has_geometry": true, "felt:h3_index": 644722034050507336, "STATEFP": 6, "PLACEFP": 50916, "PLACENS": 2411238, "GEOID": 650916, "NAMELSAD": "Newark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36051023, "AWATER": 60526, "INTPTLAT": 37.5042533, "INTPTLON": -122.0319104, "NAME": "Newark,Fremont", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 287, "felt:has_geometry": true, "felt:h3_index": 644722034977957618, "STATEFP": 6, "PLACEFP": 60102, "PLACENS": 2410919, "GEOID": 660102, "NAMELSAD": "Redwood City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50080209, "AWATER": 39901457, "INTPTLAT": 37.5152736, "INTPTLON": -122.2136716, "NAME": "Redwood City,Foster City", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1457, "felt:has_geometry": true, "felt:h3_index": 644722036202290506, "STATEFP": 6, "PLACEFP": 77042, "PLACENS": 2410033, "GEOID": 677042, "NAME": "Sunol", "NAMELSAD": "Sunol CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73192610, "AWATER": 864654, "INTPTLAT": 37.5859346, "INTPTLON": -121.8804556, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 649, "felt:has_geometry": true, "felt:h3_index": 644722036724042293, "STATEFP": 6, "PLACEFP": 11964, "PLACENS": 2407987, "GEOID": 611964, "NAMELSAD": "Castro Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43637182, "AWATER": 571600, "INTPTLAT": 37.7082758, "INTPTLON": -122.0627686, "NAME": "Castro Valley,Fairview,Pleasanton,Union City,Hayward", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.058105, 37.701207 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 113, "felt:has_geometry": true, "felt:h3_index": 644722037696807841, "STATEFP": 6, "PLACEFP": 69084, "PLACENS": 2411816, "GEOID": 669084, "NAMELSAD": "Santa Clara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47336092, "AWATER": 0, "INTPTLAT": 37.3646207, "INTPTLON": -121.9679735, "NAME": "Santa Clara,Sunnyvale,Saratoga,Cupertino,Fruitdale,Burbank,Campbell", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1438, "felt:has_geometry": true, "felt:h3_index": 644722038728870165, "STATEFP": 6, "PLACEFP": 73906, "PLACENS": 2409994, "GEOID": 673906, "NAMELSAD": "Stanford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7123691, "AWATER": 117653, "INTPTLAT": 37.4269331, "INTPTLON": -122.1677411, "NAME": "Stanford,Palo Alto,Atherton,North Fair Oaks,West Menlo Park,Mountain View,East Palo Alto,Menlo Park,Los Altos Hills,Ladera,Los Altos,Loyola", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 508, "felt:has_geometry": true, "felt:h3_index": 644722040331327337, "STATEFP": 6, "PLACEFP": 1458, "PLACENS": 2407736, "GEOID": 601458, "NAMELSAD": "Alum Rock CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2250531, "AWATER": 0, "INTPTLAT": 37.3694076, "INTPTLON": -121.8238087, "NAME": "Alum Rock,East Foothills,Milpitas", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1166, "felt:has_geometry": true, "felt:h3_index": 644722059118655296, "STATEFP": 6, "PLACEFP": 49488, "PLACENS": 2408874, "GEOID": 649488, "NAMELSAD": "Moss Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1016538, "AWATER": 544792, "INTPTLAT": 36.8053889, "INTPTLON": -121.786577, "NAME": "Moss Landing,Pajaro Dunes,Elkhorn,Las Lomas,Castroville", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -121.794434, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 521, "felt:has_geometry": true, "felt:h3_index": 644722061849957702, "STATEFP": 6, "PLACEFP": 2812, "PLACENS": 2407764, "GEOID": 602812, "NAMELSAD": "Aromas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12263807, "AWATER": 27254, "INTPTLAT": 36.8747551, "INTPTLON": -121.6307316, "NAME": "Aromas,San Juan Bautista", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -121.618652, 36.879621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 510, "felt:has_geometry": true, "felt:h3_index": 644722062342416396, "STATEFP": 6, "PLACEFP": 1651, "PLACENS": 2407740, "GEOID": 601651, "NAMELSAD": "Amesti CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599656, "AWATER": 166652, "INTPTLAT": 36.9594832, "INTPTLON": -121.7817391, "NAME": "Amesti,Corralitos,Freedom,Day Valley,Watsonville,Rio del Mar,Aptos Hills-Larkin Valley,La Selva Beach,Interlaken,Pajaro", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -121.772461, 36.949892 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 308, "felt:has_geometry": true, "felt:h3_index": 644722063639663686, "STATEFP": 6, "PLACEFP": 45778, "PLACENS": 2411035, "GEOID": 645778, "NAMELSAD": "Marina city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23070824, "AWATER": 2333714, "INTPTLAT": 36.6802563, "INTPTLON": -121.7893682, "NAME": "Marina,Sand City,Seaside", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -121.794434, 36.686041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1302, "felt:has_geometry": true, "felt:h3_index": 644722065742801485, "STATEFP": 6, "PLACEFP": 58870, "PLACENS": 2409105, "GEOID": 658870, "NAMELSAD": "Prunedale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 119299815, "AWATER": 368885, "INTPTLAT": 36.8117473, "INTPTLON": -121.6549596, "NAME": "Prunedale,Salinas,Boronda", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 474, "felt:has_geometry": true, "felt:h3_index": 644722094550163509, "STATEFP": 6, "PLACEFP": 67000, "PLACENS": 2411786, "GEOID": 667000, "NAME": "San Francisco", "NAMELSAD": "San Francisco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 121045788, "AWATER": 479608103, "INTPTLAT": 37.7272391, "INTPTLON": -123.0322294, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -123.024902, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 160, "felt:has_geometry": true, "felt:h3_index": 644722145110743462, "STATEFP": 6, "PLACEFP": 61068, "PLACENS": 2410962, "GEOID": 661068, "NAMELSAD": "Riverbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12201597, "AWATER": 68157, "INTPTLAT": 37.7260221, "INTPTLON": -120.9448404, "NAME": "Riverbank,Escalon,Del Rio,Oakdale", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 267, "felt:has_geometry": true, "felt:h3_index": 644722146725976930, "STATEFP": 6, "PLACEFP": 61026, "PLACENS": 2410957, "GEOID": 661026, "NAMELSAD": "Ripon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13790583, "AWATER": 499649, "INTPTLAT": 37.7420067, "INTPTLON": -121.1303729, "NAME": "Ripon,Manteca", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 773, "felt:has_geometry": true, "felt:h3_index": 644722147748173379, "STATEFP": 6, "PLACEFP": 20907, "PLACENS": 2408714, "GEOID": 620907, "NAME": "East Oakdale", "NAMELSAD": "East Oakdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13966924, "AWATER": 386258, "INTPTLAT": 37.7838665, "INTPTLON": -120.7986313, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 830, "felt:has_geometry": true, "felt:h3_index": 644722148368832842, "STATEFP": 6, "PLACEFP": 23630, "PLACENS": 2408117, "GEOID": 623630, "NAMELSAD": "Farmington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6583893, "AWATER": 0, "INTPTLAT": 37.9298676, "INTPTLON": -121.0043672, "NAME": "Farmington,Valley Home", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.926868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 708, "felt:has_geometry": true, "felt:h3_index": 644722149397808885, "STATEFP": 6, "PLACEFP": 16762, "PLACENS": 2628723, "GEOID": 616762, "NAMELSAD": "Cowan CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 365090, "AWATER": 0, "INTPTLAT": 37.5601052, "INTPTLON": -120.9887874, "NAME": "Cowan,Rouse,West Modesto,Airport,Bystrom,Modesto,Bret Harte,Riverdale Park,Parklawn,Ceres,Hughson,Empire,Monterey Park Tract,Keyes", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1358, "felt:has_geometry": true, "felt:h3_index": 644722150813795148, "STATEFP": 6, "PLACEFP": 64210, "PLACENS": 2409237, "GEOID": 664210, "NAMELSAD": "Salida CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5741092, "AWATER": 7060, "INTPTLAT": 37.7091233, "INTPTLON": -121.0848247, "NAME": "Salida,Grayson", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -121.091309, 37.701207 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 161, "felt:has_geometry": true, "felt:h3_index": 644722152279216947, "STATEFP": 6, "PLACEFP": 83612, "PLACENS": 2412192, "GEOID": 683612, "NAMELSAD": "Waterford city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6108059, "AWATER": 63331, "INTPTLAT": 37.6426846, "INTPTLON": -120.754152, "NAME": "Waterford,Hickman", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -120.761719, 37.649034 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1053, "felt:has_geometry": true, "felt:h3_index": 644722153686720537, "STATEFP": 6, "PLACEFP": 41558, "PLACENS": 2408612, "GEOID": 641558, "NAMELSAD": "Lincoln Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1903792, "AWATER": 0, "INTPTLAT": 38.0054709, "INTPTLON": -121.3338427, "NAME": "Lincoln Village,Morada,Country Club,Stockton,August", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1477, "felt:has_geometry": true, "felt:h3_index": 644722154726546531, "STATEFP": 6, "PLACEFP": 78232, "PLACENS": 2628794, "GEOID": 678232, "NAME": "Terminous", "NAMELSAD": "Terminous CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2531348, "AWATER": 0, "INTPTLAT": 38.1152563, "INTPTLON": -121.4895583, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -121.486816, 38.117272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1525, "felt:has_geometry": true, "felt:h3_index": 644722155952659043, "STATEFP": 6, "PLACEFP": 82562, "PLACENS": 2583176, "GEOID": 682562, "NAMELSAD": "Victor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3270555, "AWATER": 0, "INTPTLAT": 38.1384653, "INTPTLON": -121.1987603, "NAME": "Victor,Lockeford,Waterloo", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1594, "felt:has_geometry": true, "felt:h3_index": 644722156921635881, "STATEFP": 6, "PLACEFP": 86230, "PLACENS": 2629783, "GEOID": 686230, "NAMELSAD": "Woodbridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7806489, "AWATER": 276560, "INTPTLAT": 38.1720647, "INTPTLON": -121.3089147, "NAME": "Woodbridge,Collierville,Acampo,Lodi", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 860, "felt:has_geometry": true, "felt:h3_index": 644722158255329873, "STATEFP": 6, "PLACEFP": 26028, "PLACENS": 2408261, "GEOID": 626028, "NAMELSAD": "French Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8013766, "AWATER": 0, "INTPTLAT": 37.8660235, "INTPTLON": -121.2741543, "NAME": "French Camp,Taft Mosswood,Lathrop", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 748, "felt:has_geometry": true, "felt:h3_index": 644722159723681665, "STATEFP": 6, "PLACEFP": 19339, "PLACENS": 2408672, "GEOID": 619339, "NAME": "Discovery Bay", "NAMELSAD": "Discovery Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14482205, "AWATER": 3514422, "INTPTLAT": 37.9081313, "INTPTLON": -121.5971956, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1264, "felt:has_geometry": true, "felt:h3_index": 644722160350871770, "STATEFP": 6, "PLACEFP": 56798, "PLACENS": 2583111, "GEOID": 656798, "NAMELSAD": "Peters CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6542371, "AWATER": 15743, "INTPTLAT": 37.9761571, "INTPTLON": -121.0438088, "NAME": "Peters,Linden,Garden Acres,Kennedy", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 671, "felt:has_geometry": true, "felt:h3_index": 644722162245424841, "STATEFP": 6, "PLACEFP": 13182, "PLACENS": 2408028, "GEOID": 613182, "NAME": "Chinese Camp", "NAMELSAD": "Chinese Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2325639, "AWATER": 6504, "INTPTLAT": 37.8702154, "INTPTLON": -120.444225, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 698, "felt:has_geometry": true, "felt:h3_index": 644722163433479414, "STATEFP": 6, "PLACEFP": 16210, "PLACENS": 2407658, "GEOID": 616210, "NAME": "Copperopolis", "NAMELSAD": "Copperopolis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 40377349, "AWATER": 63065, "INTPTLAT": 37.9653875, "INTPTLON": -120.6409728, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 783, "felt:has_geometry": true, "felt:h3_index": 644722164500125035, "STATEFP": 6, "PLACEFP": 21188, "PLACENS": 2408039, "GEOID": 621188, "NAMELSAD": "East Sonora CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334625, "AWATER": 13419, "INTPTLAT": 37.9742408, "INTPTLON": -120.3380353, "NAME": "East Sonora,Soulsbyville,Tuolumne City", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -120.344238, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1504, "felt:has_geometry": true, "felt:h3_index": 644722165472642858, "STATEFP": 6, "PLACEFP": 80896, "PLACENS": 2583171, "GEOID": 680896, "NAMELSAD": "Tuttletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19038413, "AWATER": 16981, "INTPTLAT": 38.0104362, "INTPTLON": -120.4412463, "NAME": "Tuttletown,Columbia,Jamestown,Sonora", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1000, "felt:has_geometry": true, "felt:h3_index": 644722166574720330, "STATEFP": 6, "PLACEFP": 39164, "PLACENS": 2805905, "GEOID": 639164, "NAMELSAD": "La Grange CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 241845, "AWATER": 0, "INTPTLAT": 37.6634557, "INTPTLON": -120.4631472, "NAME": "La Grange,Lake Don Pedro", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 37.666429 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1231, "felt:has_geometry": true, "felt:h3_index": 644722167714212917, "STATEFP": 6, "PLACEFP": 53987, "PLACENS": 2805247, "GEOID": 653987, "NAMELSAD": "Orange Blossom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9892153, "AWATER": 396333, "INTPTLAT": 37.8147224, "INTPTLON": -120.6873321, "NAME": "Orange Blossom,Knights Ferry", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 905, "felt:has_geometry": true, "felt:h3_index": 644722169033053790, "STATEFP": 6, "PLACEFP": 31372, "PLACENS": 2628856, "GEOID": 631372, "NAMELSAD": "Groveland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24795516, "AWATER": 15061, "INTPTLAT": 37.831966, "INTPTLON": -120.2415805, "NAME": "Groveland,Coulterville", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1519, "felt:has_geometry": true, "felt:h3_index": 644722171019735662, "STATEFP": 6, "PLACEFP": 81890, "PLACENS": 2409398, "GEOID": 681890, "NAMELSAD": "Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10344077, "AWATER": 0, "INTPTLAT": 38.1694383, "INTPTLON": -120.825992, "NAME": "Valley Springs,Rancho Calaveras", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1536, "felt:has_geometry": true, "felt:h3_index": 644722171893571600, "STATEFP": 6, "PLACEFP": 83304, "PLACENS": 2409523, "GEOID": 683304, "NAMELSAD": "Wallace CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11114771, "AWATER": 6972905, "INTPTLAT": 38.2069018, "INTPTLON": -120.9569815, "NAME": "Wallace,Camanche Village,Camanche North Shore", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 38.203655 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1364, "felt:has_geometry": true, "felt:h3_index": 644722173482720266, "STATEFP": 6, "PLACEFP": 64420, "PLACENS": 2409247, "GEOID": 664420, "NAME": "San Andreas", "NAMELSAD": "San Andreas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21730446, "AWATER": 41137, "INTPTLAT": 38.1762278, "INTPTLON": -120.6693068, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1150, "felt:has_geometry": true, "felt:h3_index": 644722174314327139, "STATEFP": 6, "PLACEFP": 48480, "PLACENS": 2408855, "GEOID": 648480, "NAMELSAD": "Mokelumne Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7974096, "AWATER": 6904, "INTPTLAT": 38.3084841, "INTPTLON": -120.7056169, "NAME": "Mokelumne Hill,Jackson,Martell", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 383, "felt:has_geometry": true, "felt:h3_index": 644722177498180508, "STATEFP": 6, "PLACEFP": 2112, "PLACENS": 2409709, "GEOID": 602112, "NAME": "Angels", "NAMELSAD": "Angels city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9407811, "AWATER": 12740, "INTPTLAT": 38.0710375, "INTPTLON": -120.5517286, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 718, "felt:has_geometry": true, "felt:h3_index": 644722179814613913, "STATEFP": 6, "PLACEFP": 17428, "PLACENS": 2582988, "GEOID": 617428, "NAME": "Crows Landing", "NAMELSAD": "Crows Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4282672, "AWATER": 0, "INTPTLAT": 37.3944426, "INTPTLON": -121.0751665, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 744, "felt:has_geometry": true, "felt:h3_index": 644722180488469587, "STATEFP": 6, "PLACEFP": 19155, "PLACENS": 2582995, "GEOID": 619155, "NAME": "Diablo Grande", "NAMELSAD": "Diablo Grande CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11132191, "AWATER": 24652, "INTPTLAT": 37.3990466, "INTPTLON": -121.263511, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 159, "felt:has_geometry": true, "felt:h3_index": 644722182674623566, "STATEFP": 6, "PLACEFP": 56112, "PLACENS": 2411383, "GEOID": 656112, "NAME": "Patterson", "NAMELSAD": "Patterson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20167365, "AWATER": 222151, "INTPTLAT": 37.4758755, "INTPTLON": -121.153882, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 83, "felt:has_geometry": true, "felt:h3_index": 644722185962898626, "STATEFP": 6, "PLACEFP": 51140, "PLACENS": 2411247, "GEOID": 651140, "NAMELSAD": "Newman city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5553070, "AWATER": 0, "INTPTLAT": 37.3161283, "INTPTLON": -121.0214244, "NAME": "Newman,Gustine", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -121.025391, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1169, "felt:has_geometry": true, "felt:h3_index": 644722191894960664, "STATEFP": 6, "PLACEFP": 49582, "PLACENS": 2628761, "GEOID": 649582, "NAMELSAD": "Mountain House CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11804529, "AWATER": 0, "INTPTLAT": 37.7673008, "INTPTLON": -121.5449342, "NAME": "Mountain House,Tracy", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1555, "felt:has_geometry": true, "felt:h3_index": 644722194778856006, "STATEFP": 6, "PLACEFP": 84480, "PLACENS": 2409574, "GEOID": 684480, "NAME": "Westley", "NAMELSAD": "Westley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 879991, "AWATER": 0, "INTPTLAT": 37.5469077, "INTPTLON": -121.2009154, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1577, "felt:has_geometry": true, "felt:h3_index": 644722197092022646, "STATEFP": 6, "PLACEFP": 86076, "PLACENS": 2409616, "GEOID": 686076, "NAMELSAD": "Winton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7875727, "AWATER": 0, "INTPTLAT": 37.3854272, "INTPTLON": -120.6173641, "NAME": "Winton,Cressey", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 735, "felt:has_geometry": true, "felt:h3_index": 644722197644914963, "STATEFP": 6, "PLACEFP": 18856, "PLACENS": 2408657, "GEOID": 618856, "NAMELSAD": "Denair CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4253064, "AWATER": 0, "INTPTLAT": 37.5253977, "INTPTLON": -120.7974329, "NAME": "Denair,Delhi,Turlock,Ballico", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1415, "felt:has_geometry": true, "felt:h3_index": 644722198705800913, "STATEFP": 6, "PLACEFP": 72408, "PLACENS": 2583146, "GEOID": 672408, "NAME": "Snelling", "NAMELSAD": "Snelling CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399517, "AWATER": 13317, "INTPTLAT": 37.5244504, "INTPTLON": -120.436319, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 209, "felt:has_geometry": true, "felt:h3_index": 644722201269151280, "STATEFP": 6, "PLACEFP": 3162, "PLACENS": 2409752, "GEOID": 603162, "NAMELSAD": "Atwater city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17008587, "AWATER": 11735, "INTPTLAT": 37.3540494, "INTPTLON": -120.5971768, "NAME": "Atwater,McSwain,Franklin", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 37.352693 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 928, "felt:has_geometry": true, "felt:h3_index": 644722202070526466, "STATEFP": 6, "PLACEFP": 33861, "PLACENS": 2408391, "GEOID": 633861, "NAMELSAD": "Hilmar-Irwin CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10171003, "AWATER": 0, "INTPTLAT": 37.4045429, "INTPTLON": -120.8504261, "NAME": "Hilmar-Irwin,Livingston,Stevinson", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1510, "felt:has_geometry": true, "felt:h3_index": 644722203002484523, "STATEFP": 6, "PLACEFP": 81312, "PLACENS": 2583172, "GEOID": 681312, "NAMELSAD": "University of California-Merced CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1689900, "AWATER": 20798, "INTPTLAT": 37.3640832, "INTPTLON": -120.4188311, "NAME": "University of California-Merced,Merced,Bear Creek,Tuttle", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 32, "felt:has_geometry": true, "felt:h3_index": 644737283856424154, "STATEFP": 6, "PLACEFP": 54652, "PLACENS": 2411347, "GEOID": 654652, "NAME": "Oxnard", "NAMELSAD": "Oxnard city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68707177, "AWATER": 32677585, "INTPTLAT": 34.1994364, "INTPTLON": -119.2075154, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 34.198173 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 425, "felt:has_geometry": true, "felt:h3_index": 644737290365243523, "STATEFP": 6, "PLACEFP": 69070, "PLACENS": 2411815, "GEOID": 669070, "NAMELSAD": "Santa Barbara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50517342, "AWATER": 58271494, "INTPTLAT": 34.4006009, "INTPTLON": -119.7129545, "NAME": "Santa Barbara,Montecito,Summerland", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1215, "felt:has_geometry": true, "felt:h3_index": 644737291269194562, "STATEFP": 6, "PLACEFP": 53182, "PLACENS": 2408966, "GEOID": 653182, "NAMELSAD": "Oak View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8822791, "AWATER": 0, "INTPTLAT": 34.4030366, "INTPTLON": -119.2989497, "NAME": "Oak View,Meiners Oaks,Ojai,Mira Monte", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -119.289551, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 402, "felt:has_geometry": true, "felt:h3_index": 644737292909635118, "STATEFP": 6, "PLACEFP": 11446, "PLACENS": 2409990, "GEOID": 611446, "NAMELSAD": "Carpinteria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6704026, "AWATER": 17313119, "INTPTLAT": 34.385234, "INTPTLON": -119.5007588, "NAME": "Carpinteria,Toro Canyon", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -119.487305, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 4, "felt:has_geometry": true, "felt:h3_index": 644737296019532323, "STATEFP": 6, "PLACEFP": 65042, "PLACENS": 2411779, "GEOID": 665042, "NAMELSAD": "San Buenaventura (Ventura) city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 56652007, "AWATER": 26982227, "INTPTLAT": 34.2677796, "INTPTLON": -119.2542062, "NAME": "San Buenaventura (Ventura),Channel Islands Beach,Port Hueneme", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -119.245605, 34.270836 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 424, "felt:has_geometry": true, "felt:h3_index": 644737350721453443, "STATEFP": 6, "PLACEFP": 42524, "PLACENS": 2410860, "GEOID": 642524, "NAME": "Lompoc", "NAMELSAD": "Lompoc city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30103860, "AWATER": 201559, "INTPTLAT": 34.6626889, "INTPTLON": -120.470837, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 34.669359 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 422, "felt:has_geometry": true, "felt:h3_index": 644737351347285339, "STATEFP": 6, "PLACEFP": 72576, "PLACENS": 2411925, "GEOID": 672576, "NAMELSAD": "Solvang city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6281307, "AWATER": 3053, "INTPTLAT": 34.5937578, "INTPTLON": -120.1396803, "NAME": "Solvang,Buellton,Santa Ynez,Los Olivos,Ballard", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 34.597042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1076, "felt:has_geometry": true, "felt:h3_index": 644737352855757984, "STATEFP": 6, "PLACEFP": 43252, "PLACENS": 2408131, "GEOID": 643252, "NAME": "Los Alamos", "NAMELSAD": "Los Alamos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2341055, "AWATER": 0, "INTPTLAT": 34.7418033, "INTPTLON": -120.2745961, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -120.278320, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 426, "felt:has_geometry": true, "felt:h3_index": 644737360445248156, "STATEFP": 6, "PLACEFP": 69196, "PLACENS": 2411824, "GEOID": 669196, "NAMELSAD": "Santa Maria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59078450, "AWATER": 1575636, "INTPTLAT": 34.9330764, "INTPTLON": -120.443559, "NAME": "Santa Maria,Casmalia,Orcutt", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 34.921971 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 403, "felt:has_geometry": true, "felt:h3_index": 644737361373050436, "STATEFP": 6, "PLACEFP": 31414, "PLACENS": 2410672, "GEOID": 631414, "NAME": "Guadalupe", "NAMELSAD": "Guadalupe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3394103, "AWATER": 10948, "INTPTLAT": 34.9649289, "INTPTLON": -120.5731271, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -120.563965, 34.957995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1522, "felt:has_geometry": true, "felt:h3_index": 644737364235949963, "STATEFP": 6, "PLACEFP": 82072, "PLACENS": 2409501, "GEOID": 682072, "NAMELSAD": "Vandenberg AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 57997811, "AWATER": 225536, "INTPTLAT": 34.7279857, "INTPTLON": -120.5064673, "NAME": "Vandenberg AFB,Vandenberg Village,Mission Hills", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 34.723555 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 634, "felt:has_geometry": true, "felt:h3_index": 644737841012000498, "STATEFP": 6, "PLACEFP": 11324, "PLACENS": 2407966, "GEOID": 611324, "NAME": "Carmel Valley Village", "NAMELSAD": "Carmel Valley Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49166228, "AWATER": 507112, "INTPTLAT": 36.5006267, "INTPTLON": -121.7318199, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 732, "felt:has_geometry": true, "felt:h3_index": 644737842093117469, "STATEFP": 6, "PLACEFP": 18590, "PLACENS": 2408650, "GEOID": 618590, "NAMELSAD": "Del Monte Forest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20787965, "AWATER": 6766175, "INTPTLAT": 36.5838337, "INTPTLON": -121.9467143, "NAME": "Del Monte Forest,Carmel-by-the-Sea,Del Rey Oaks,Pacific Grove,Monterey", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 36.580247 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1472, "felt:has_geometry": true, "felt:h3_index": 644745098859169157, "STATEFP": 6, "PLACEFP": 78050, "PLACENS": 2410062, "GEOID": 678050, "NAME": "Tecopa", "NAMELSAD": "Tecopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48145645, "AWATER": 177237, "INTPTLAT": 35.8205806, "INTPTLON": -116.2050514, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -116.191406, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1400, "felt:has_geometry": true, "felt:h3_index": 644745112573895528, "STATEFP": 6, "PLACEFP": 71680, "PLACENS": 2408733, "GEOID": 671680, "NAME": "Shoshone", "NAMELSAD": "Shoshone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 74361294, "AWATER": 618, "INTPTLAT": 35.9672297, "INTPTLON": -116.3087698, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -116.301270, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 662, "felt:has_geometry": true, "felt:h3_index": 644745127400902894, "STATEFP": 6, "PLACEFP": 12730, "PLACENS": 2804104, "GEOID": 612730, "NAME": "Charleston View", "NAMELSAD": "Charleston View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1949194, "AWATER": 0, "INTPTLAT": 35.9646291, "INTPTLON": -115.8972354, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -115.883789, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 531, "felt:has_geometry": true, "felt:h3_index": 644745138290378516, "STATEFP": 6, "PLACEFP": 3512, "PLACENS": 2628708, "GEOID": 603512, "NAME": "Baker", "NAMELSAD": "Baker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6961528, "AWATER": 0, "INTPTLAT": 35.2769184, "INTPTLON": -116.071735, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -116.059570, 35.281501 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 974, "felt:has_geometry": true, "felt:h3_index": 644745180210314029, "STATEFP": 6, "PLACEFP": 37918, "PLACENS": 2408466, "GEOID": 637918, "NAME": "Keeler", "NAMELSAD": "Keeler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987188, "AWATER": 0, "INTPTLAT": 36.4867184, "INTPTLON": -117.87333, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 868, "felt:has_geometry": true, "felt:h3_index": 644745184571321434, "STATEFP": 6, "PLACEFP": 28021, "PLACENS": 2408270, "GEOID": 628021, "NAME": "Furnace Creek", "NAMELSAD": "Furnace Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 81487361, "AWATER": 0, "INTPTLAT": 36.4276693, "INTPTLON": -116.8746901, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 934, "felt:has_geometry": true, "felt:h3_index": 644745200841135824, "STATEFP": 6, "PLACEFP": 34405, "PLACENS": 2583036, "GEOID": 634405, "NAMELSAD": "Homewood Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26546375, "AWATER": 0, "INTPTLAT": 35.8900404, "INTPTLON": -117.3864139, "NAME": "Homewood Canyon,Searles Valley", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -117.377930, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1520, "felt:has_geometry": true, "felt:h3_index": 644745203285080905, "STATEFP": 6, "PLACEFP": 81925, "PLACENS": 2408400, "GEOID": 681925, "NAME": "Valley Wells", "NAMELSAD": "Valley Wells CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27631920, "AWATER": 177128, "INTPTLAT": 35.8807292, "INTPTLON": -117.3356757, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 35.871247 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1499, "felt:has_geometry": true, "felt:h3_index": 644745206988314867, "STATEFP": 6, "PLACEFP": 80515, "PLACENS": 2583168, "GEOID": 680515, "NAME": "Trona", "NAMELSAD": "Trona CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24076929, "AWATER": 2011, "INTPTLAT": 35.8158211, "INTPTLON": -117.3473478, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1222, "felt:has_geometry": true, "felt:h3_index": 644745210226968732, "STATEFP": 6, "PLACEFP": 53490, "PLACENS": 2408982, "GEOID": 653490, "NAME": "Olancha", "NAMELSAD": "Olancha CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20311991, "AWATER": 79710, "INTPTLAT": 36.2697874, "INTPTLON": -118.0012577, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 36.261992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 724, "felt:has_geometry": true, "felt:h3_index": 644745211606247814, "STATEFP": 6, "PLACEFP": 18030, "PLACENS": 2408642, "GEOID": 618030, "NAME": "Darwin", "NAMELSAD": "Darwin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3484705, "AWATER": 0, "INTPTLAT": 36.2688034, "INTPTLON": -117.5890042, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -117.575684, 36.261992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1524, "felt:has_geometry": true, "felt:h3_index": 644745442198637355, "STATEFP": 6, "PLACEFP": 82334, "PLACENS": 2583175, "GEOID": 682334, "NAME": "Verdi", "NAMELSAD": "Verdi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10808119, "AWATER": 34863, "INTPTLAT": 39.5269686, "INTPTLON": -120.0233943, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.520992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 840, "felt:has_geometry": true, "felt:h3_index": 644745446426234952, "STATEFP": 6, "PLACEFP": 24526, "PLACENS": 2628731, "GEOID": 624526, "NAME": "Floriston", "NAMELSAD": "Floriston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2459249, "AWATER": 0, "INTPTLAT": 39.3929299, "INTPTLON": -120.0151127, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.385264 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 669, "felt:has_geometry": true, "felt:h3_index": 644745449965964333, "STATEFP": 6, "PLACEFP": 13077, "PLACENS": 2408024, "GEOID": 613077, "NAME": "Chilcoot-Vinton", "NAMELSAD": "Chilcoot-Vinton CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34207854, "AWATER": 0, "INTPTLAT": 39.806744, "INTPTLON": -120.1388608, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 545, "felt:has_geometry": true, "felt:h3_index": 644745450739046257, "STATEFP": 6, "PLACEFP": 4772, "PLACENS": 2407819, "GEOID": 604772, "NAME": "Beckwourth", "NAMELSAD": "Beckwourth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30257790, "AWATER": 13194, "INTPTLAT": 39.8439312, "INTPTLON": -120.4140086, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 39.842286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1401, "felt:has_geometry": true, "felt:h3_index": 644745453979918627, "STATEFP": 6, "PLACEFP": 71774, "PLACENS": 2583138, "GEOID": 671774, "NAME": "Sierra Brooks", "NAMELSAD": "Sierra Brooks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3549115, "AWATER": 0, "INTPTLAT": 39.6425925, "INTPTLON": -120.2153873, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -120.212402, 39.639538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 427, "felt:has_geometry": true, "felt:h3_index": 644745455174562523, "STATEFP": 6, "PLACEFP": 44364, "PLACENS": 2410891, "GEOID": 644364, "NAMELSAD": "Loyalton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 920711, "AWATER": 0, "INTPTLAT": 39.6768545, "INTPTLON": -120.2448111, "NAME": "Loyalton,Sierraville,Sattley", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1455, "felt:has_geometry": true, "felt:h3_index": 644745476582229400, "STATEFP": 6, "PLACEFP": 76015, "PLACENS": 2410030, "GEOID": 676015, "NAMELSAD": "Sunnyside-Tahoe City CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9016274, "AWATER": 858519, "INTPTLAT": 39.1483181, "INTPTLON": -120.1709376, "NAME": "Sunnyside-Tahoe City,Dollar Point,Tahoma", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 39.147103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 988, "felt:has_geometry": true, "felt:h3_index": 644745478633104960, "STATEFP": 6, "PLACEFP": 38548, "PLACENS": 2408481, "GEOID": 638548, "NAMELSAD": "Kings Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7403909, "AWATER": 301151, "INTPTLAT": 39.2475277, "INTPTLON": -120.0199033, "NAME": "Kings Beach,Tahoe Vista", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.249271 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 379, "felt:has_geometry": true, "felt:h3_index": 644745479806012125, "STATEFP": 6, "PLACEFP": 73108, "PLACENS": 2411938, "GEOID": 673108, "NAMELSAD": "South Lake Tahoe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26075509, "AWATER": 742938, "INTPTLAT": 38.9282184, "INTPTLON": -119.9809998, "NAME": "South Lake Tahoe,Meyers", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -119.970703, 38.925229 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1417, "felt:has_geometry": true, "felt:h3_index": 644745484573366443, "STATEFP": 6, "PLACEFP": 72492, "PLACENS": 2628790, "GEOID": 672492, "NAME": "Soda Springs", "NAMELSAD": "Soda Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 872163, "AWATER": 0, "INTPTLAT": 39.3247879, "INTPTLON": -120.3786654, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 206, "felt:has_geometry": true, "felt:h3_index": 644745486641487048, "STATEFP": 6, "PLACEFP": 80588, "PLACENS": 2413403, "GEOID": 680588, "NAME": "Truckee", "NAMELSAD": "Truckee town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 83740315, "AWATER": 3448642, "INTPTLAT": 39.3505478, "INTPTLON": -120.1939432, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 39.351290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 989, "felt:has_geometry": true, "felt:h3_index": 644745489669531938, "STATEFP": 6, "PLACEFP": 38604, "PLACENS": 2628744, "GEOID": 638604, "NAME": "Kingvale", "NAMELSAD": "Kingvale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2490334, "AWATER": 22032, "INTPTLAT": 39.3209972, "INTPTLON": -120.4383095, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 637, "felt:has_geometry": true, "felt:h3_index": 644745491153168563, "STATEFP": 6, "PLACEFP": 11418, "PLACENS": 2628716, "GEOID": 611418, "NAMELSAD": "Carnelian Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3364143, "AWATER": 516530, "INTPTLAT": 39.2351651, "INTPTLON": -120.0782068, "NAME": "Carnelian Bay,Cedar Flat", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 552, "felt:has_geometry": true, "felt:h3_index": 644745647903540376, "STATEFP": 6, "PLACEFP": 5346, "PLACENS": 2582943, "GEOID": 605346, "NAME": "Benton", "NAMELSAD": "Benton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73732744, "AWATER": 52423, "INTPTLAT": 37.8224379, "INTPTLON": -118.4876873, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1245, "felt:has_geometry": true, "felt:h3_index": 644745681741189878, "STATEFP": 6, "PLACEFP": 55528, "PLACENS": 2583105, "GEOID": 655528, "NAMELSAD": "Paradise CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11271636, "AWATER": 0, "INTPTLAT": 37.4828526, "INTPTLON": -118.602213, "NAME": "Paradise,Swall Meadows", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1094, "felt:has_geometry": true, "felt:h3_index": 644745682823441733, "STATEFP": 6, "PLACEFP": 44830, "PLACENS": 2583068, "GEOID": 644830, "NAME": "McGee Creek", "NAMELSAD": "McGee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10384180, "AWATER": 0, "INTPTLAT": 37.5726652, "INTPTLON": -118.7909998, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -118.784180, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 717, "felt:has_geometry": true, "felt:h3_index": 644745685214521227, "STATEFP": 6, "PLACEFP": 17372, "PLACENS": 2582987, "GEOID": 617372, "NAMELSAD": "Crowley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7475668, "AWATER": 6392, "INTPTLAT": 37.5687424, "INTPTLON": -118.7464214, "NAME": "Crowley Lake,Sunny Slopes,Aspen Springs", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -118.740234, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1350, "felt:has_geometry": true, "felt:h3_index": 644745688094170528, "STATEFP": 6, "PLACEFP": 63148, "PLACENS": 2409218, "GEOID": 663148, "NAMELSAD": "Round Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36227887, "AWATER": 30931, "INTPTLAT": 37.4141625, "INTPTLON": -118.5722734, "NAME": "Round Valley,Mesa,Dixon Lane-MeadowCreek,West Bishop", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -118.564453, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 972, "felt:has_geometry": true, "felt:h3_index": 644745690741369476, "STATEFP": 6, "PLACEFP": 37624, "PLACENS": 2583044, "GEOID": 637624, "NAME": "June Lake", "NAMELSAD": "June Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26694795, "AWATER": 2048342, "INTPTLAT": 37.7617827, "INTPTLON": -119.1147288, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -119.113770, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1042, "felt:has_geometry": true, "felt:h3_index": 644745693464166596, "STATEFP": 6, "PLACEFP": 40998, "PLACENS": 2583054, "GEOID": 640998, "NAME": "Lee Vining", "NAMELSAD": "Lee Vining CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13483686, "AWATER": 6196, "INTPTLAT": 37.9548986, "INTPTLON": -119.1220135, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -119.113770, 37.944198 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 315, "felt:has_geometry": true, "felt:h3_index": 644745694598468490, "STATEFP": 6, "PLACEFP": 45358, "PLACENS": 2412936, "GEOID": 645358, "NAME": "Mammoth Lakes", "NAMELSAD": "Mammoth Lakes town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 64402450, "AWATER": 1139030, "INTPTLAT": 37.6244355, "INTPTLON": -118.9884322, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -118.981934, 37.614231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 660, "felt:has_geometry": true, "felt:h3_index": 644745704178587667, "STATEFP": 6, "PLACEFP": 12594, "PLACENS": 2582973, "GEOID": 612594, "NAME": "Chalfant", "NAMELSAD": "Chalfant CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 72616470, "AWATER": 73304, "INTPTLAT": 37.4921149, "INTPTLON": -118.3904081, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 990, "felt:has_geometry": true, "felt:h3_index": 644745724699489955, "STATEFP": 6, "PLACEFP": 38646, "PLACENS": 2408489, "GEOID": 638646, "NAME": "Kirkwood", "NAMELSAD": "Kirkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11290203, "AWATER": 2525431, "INTPTLAT": 38.689265, "INTPTLON": -120.0549795, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 542, "felt:has_geometry": true, "felt:h3_index": 644745729533363345, "STATEFP": 6, "PLACEFP": 4716, "PLACENS": 2407814, "GEOID": 604716, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13352822, "AWATER": 56384, "INTPTLAT": 38.4723209, "INTPTLON": -120.0518467, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 38.462192 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 690, "felt:has_geometry": true, "felt:h3_index": 644745734195958914, "STATEFP": 6, "PLACEFP": 14484, "PLACENS": 2582978, "GEOID": 614484, "NAMELSAD": "Coleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49897132, "AWATER": 0, "INTPTLAT": 38.5805614, "INTPTLON": -119.502863, "NAME": "Coleville,Walker", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -119.509277, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 593, "felt:has_geometry": true, "felt:h3_index": 644745738094579731, "STATEFP": 6, "PLACEFP": 8240, "PLACENS": 2582950, "GEOID": 608240, "NAME": "Bridgeport", "NAMELSAD": "Bridgeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56306218, "AWATER": 21149, "INTPTLAT": 38.2552098, "INTPTLON": -119.2104243, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1130, "felt:has_geometry": true, "felt:h3_index": 644745742716440576, "STATEFP": 6, "PLACEFP": 47086, "PLACENS": 2408820, "GEOID": 647086, "NAMELSAD": "Mesa Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12627546, "AWATER": 0, "INTPTLAT": 38.8102875, "INTPTLON": -119.8032665, "NAME": "Mesa Vista,Alpine Village", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1112, "felt:has_geometry": true, "felt:h3_index": 644745747127928020, "STATEFP": 6, "PLACEFP": 45988, "PLACENS": 2408184, "GEOID": 645988, "NAME": "Markleeville", "NAMELSAD": "Markleeville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16914713, "AWATER": 0, "INTPTLAT": 38.6840021, "INTPTLON": -119.8227384, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -119.816895, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1491, "felt:has_geometry": true, "felt:h3_index": 644745748747336713, "STATEFP": 6, "PLACEFP": 79030, "PLACENS": 2583165, "GEOID": 679030, "NAME": "Topaz", "NAMELSAD": "Topaz CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31537286, "AWATER": 3359715, "INTPTLAT": 38.6380591, "INTPTLON": -119.5018074, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -119.509277, 38.634036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1403, "felt:has_geometry": true, "felt:h3_index": 644745751414771748, "STATEFP": 6, "PLACEFP": 71834, "PLACENS": 2583140, "GEOID": 671834, "NAMELSAD": "Sierra Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6661587, "AWATER": 9750, "INTPTLAT": 38.0756273, "INTPTLON": -120.1593364, "NAME": "Sierra Village,Mi-Wuk Village", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -120.146484, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1276, "felt:has_geometry": true, "felt:h3_index": 644745756209086464, "STATEFP": 6, "PLACEFP": 57244, "PLACENS": 2583115, "GEOID": 657244, "NAMELSAD": "Pine Mountain Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49108026, "AWATER": 726370, "INTPTLAT": 37.8595397, "INTPTLON": -120.1816624, "NAME": "Pine Mountain Lake,Buck Meadows", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 753, "felt:has_geometry": true, "felt:h3_index": 644745759144041310, "STATEFP": 6, "PLACEFP": 19570, "PLACENS": 2408683, "GEOID": 619570, "NAMELSAD": "Dorrington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10600543, "AWATER": 12551, "INTPTLAT": 38.304479, "INTPTLON": -120.2663205, "NAME": "Dorrington,Arnold,Avery", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -120.256348, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1307, "felt:has_geometry": true, "felt:h3_index": 644745760524114544, "STATEFP": 6, "PLACEFP": 59220, "PLACENS": 2409122, "GEOID": 659220, "NAME": "Rail Road Flat", "NAMELSAD": "Rail Road Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23510266, "AWATER": 371269, "INTPTLAT": 38.314374, "INTPTLON": -120.5074837, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 655, "felt:has_geometry": true, "felt:h3_index": 644745763100310698, "STATEFP": 6, "PLACEFP": 12300, "PLACENS": 2582970, "GEOID": 612300, "NAMELSAD": "Cedar Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20223241, "AWATER": 22466, "INTPTLAT": 38.0657363, "INTPTLON": -120.2738689, "NAME": "Cedar Ridge,Phoenix Lake,Mono Vista,Twain Harte", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -120.278320, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1180, "felt:has_geometry": true, "felt:h3_index": 644745764178711459, "STATEFP": 6, "PLACEFP": 50034, "PLACENS": 2408892, "GEOID": 650034, "NAMELSAD": "Murphys CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10955540, "AWATER": 6287, "INTPTLAT": 38.1360927, "INTPTLON": -120.4439416, "NAME": "Murphys,Mountain Ranch,Forest Meadows,Vallecito", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1449, "felt:has_geometry": true, "felt:h3_index": 644745765491435668, "STATEFP": 6, "PLACEFP": 75322, "PLACENS": 2628792, "GEOID": 675322, "NAMELSAD": "Strawberry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1350627, "AWATER": 21432, "INTPTLAT": 38.198384, "INTPTLON": -120.0103432, "NAME": "Strawberry,Long Barn,Cold Springs", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 38.203655 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1507, "felt:has_geometry": true, "felt:h3_index": 644745771458388790, "STATEFP": 6, "PLACEFP": 81048, "PLACENS": 2804105, "GEOID": 681048, "NAME": "Twin Lakes", "NAMELSAD": "Twin Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10798571, "AWATER": 2717491, "INTPTLAT": 38.1628855, "INTPTLON": -119.341063, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1531, "felt:has_geometry": true, "felt:h3_index": 644745773941054618, "STATEFP": 6, "PLACEFP": 82929, "PLACENS": 2804106, "GEOID": 682929, "NAMELSAD": "Virginia Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3741522, "AWATER": 216444, "INTPTLAT": 38.0434728, "INTPTLON": -119.2598767, "NAME": "Virginia Lakes,Mono City", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 38.048091 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 925, "felt:has_geometry": true, "felt:h3_index": 644747021604116150, "STATEFP": 6, "PLACEFP": 33574, "PLACENS": 2408383, "GEOID": 633574, "NAMELSAD": "Highgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8332742, "AWATER": 0, "INTPTLAT": 34.0105771, "INTPTLON": -117.3098172, "NAME": "Highgrove,Grand Terrace,Loma Linda,March ARB,Moreno Valley", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -117.312012, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 571, "felt:has_geometry": true, "felt:h3_index": 644747022568655702, "STATEFP": 6, "PLACEFP": 7064, "PLACENS": 2407863, "GEOID": 607064, "NAMELSAD": "Bloomington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15723229, "AWATER": 0, "INTPTLAT": 34.0600706, "INTPTLON": -117.4012379, "NAME": "Bloomington,Fontana,Colton,Rialto,Jurupa Valley", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -117.399902, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1126, "felt:has_geometry": true, "felt:h3_index": 644747023634293062, "STATEFP": 6, "PLACEFP": 46884, "PLACENS": 2408816, "GEOID": 646884, "NAMELSAD": "Mentone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15830890, "AWATER": 30802, "INTPTLAT": 34.0606386, "INTPTLON": -117.1150201, "NAME": "Mentone,Redlands,Yucaipa,Calimesa", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 277, "felt:has_geometry": true, "felt:h3_index": 644747025029171510, "STATEFP": 6, "PLACEFP": 33588, "PLACENS": 2410759, "GEOID": 633588, "NAMELSAD": "Highland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48099958, "AWATER": 244008, "INTPTLAT": 34.1134731, "INTPTLON": -117.1657294, "NAME": "Highland,San Bernardino", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 34.107256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 282, "felt:has_geometry": true, "felt:h3_index": 644747025862970516, "STATEFP": 6, "PLACEFP": 56700, "PLACENS": 2411403, "GEOID": 656700, "NAMELSAD": "Perris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 81748619, "AWATER": 279334, "INTPTLAT": 33.7898494, "INTPTLON": -117.2221715, "NAME": "Perris,Mead Valley,Nuevo,Good Hope,Meadowbrook", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -117.224121, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1580, "felt:has_geometry": true, "felt:h3_index": 644747027188063325, "STATEFP": 6, "PLACEFP": 86244, "PLACENS": 2409622, "GEOID": 686244, "NAMELSAD": "Woodcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29539146, "AWATER": 0, "INTPTLAT": 33.8789457, "INTPTLON": -117.368671, "NAME": "Woodcrest,Riverside,Home Gardens,El Sobrante,Lake Mathews", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -117.355957, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1026, "felt:has_geometry": true, "felt:h3_index": 644747028529011912, "STATEFP": 6, "PLACEFP": 39836, "PLACENS": 2408564, "GEOID": 639836, "NAME": "Lakeview", "NAMELSAD": "Lakeview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8442803, "AWATER": 0, "INTPTLAT": 33.8284655, "INTPTLON": -117.1233341, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1585, "felt:has_geometry": true, "felt:h3_index": 644747030219340659, "STATEFP": 6, "PLACEFP": 86594, "PLACENS": 2409630, "GEOID": 686594, "NAME": "Wrightwood", "NAMELSAD": "Wrightwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15414197, "AWATER": 8669, "INTPTLAT": 34.3459882, "INTPTLON": -117.6275788, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -117.619629, 34.343436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1210, "felt:has_geometry": true, "felt:h3_index": 644747032231221429, "STATEFP": 6, "PLACEFP": 52760, "PLACENS": 2583100, "GEOID": 652760, "NAMELSAD": "Oak Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63496967, "AWATER": 0, "INTPTLAT": 34.3899435, "INTPTLON": -117.403094, "NAME": "Oak Hills,Hesperia", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -117.399902, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1278, "felt:has_geometry": true, "felt:h3_index": 644747033356132490, "STATEFP": 6, "PLACEFP": 57302, "PLACENS": 2627936, "GEOID": 657302, "NAMELSAD": "Piñon Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83177827, "AWATER": 7520, "INTPTLAT": 34.4456075, "INTPTLON": -117.6235632, "NAME": "Piñon Hills,Phelan", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -117.619629, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 48, "felt:has_geometry": true, "felt:h3_index": 644747034385786001, "STATEFP": 6, "PLACEFP": 59451, "PLACENS": 2411514, "GEOID": 659451, "NAMELSAD": "Rancho Cucamonga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120441408, "AWATER": 24723, "INTPTLAT": 34.1303055, "INTPTLON": -117.5660665, "NAME": "Rancho Cucamonga,San Antonio Heights,Ontario,Upland", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -117.553711, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 124, "felt:has_geometry": true, "felt:h3_index": 644747036025422032, "STATEFP": 6, "PLACEFP": 40830, "PLACENS": 2411584, "GEOID": 640830, "NAMELSAD": "La Verne city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21813497, "AWATER": 288109, "INTPTLAT": 34.1205212, "INTPTLON": -117.7699278, "NAME": "La Verne,Claremont", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1087, "felt:has_geometry": true, "felt:h3_index": 644747036710988390, "STATEFP": 6, "PLACEFP": 44644, "PLACENS": 2583066, "GEOID": 644644, "NAMELSAD": "Lytle Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15586138, "AWATER": 0, "INTPTLAT": 34.2499257, "INTPTLON": -117.5044314, "NAME": "Lytle Creek,Muscoy", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -117.509766, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1163, "felt:has_geometry": true, "felt:h3_index": 644747041432004253, "STATEFP": 6, "PLACEFP": 49348, "PLACENS": 2408870, "GEOID": 649348, "NAME": "Morongo Valley", "NAMELSAD": "Morongo Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 65317007, "AWATER": 0, "INTPTLAT": 34.0723774, "INTPTLON": -116.5627267, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -116.564941, 34.070862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 559, "felt:has_geometry": true, "felt:h3_index": 644747042063014814, "STATEFP": 6, "PLACEFP": 6406, "PLACENS": 2407838, "GEOID": 606406, "NAME": "Big Bear City", "NAMELSAD": "Big Bear City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82917622, "AWATER": 44975, "INTPTLAT": 34.2541177, "INTPTLON": -116.7963779, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 611, "felt:has_geometry": true, "felt:h3_index": 644747043144326483, "STATEFP": 6, "PLACEFP": 9360, "PLACENS": 2407936, "GEOID": 609360, "NAMELSAD": "Cabazon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12674708, "AWATER": 0, "INTPTLAT": 33.9127262, "INTPTLON": -116.7828306, "NAME": "Cabazon,Whitewater", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 33.906896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 185, "felt:has_geometry": true, "felt:h3_index": 644747044087445221, "STATEFP": 6, "PLACEFP": 3820, "PLACENS": 2409785, "GEOID": 603820, "NAMELSAD": "Banning city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60180482, "AWATER": 0, "INTPTLAT": 33.9459026, "INTPTLON": -116.8990441, "NAME": "Banning,Oak Glen,Cherry Valley", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 213, "felt:has_geometry": true, "felt:h3_index": 644747045905245580, "STATEFP": 6, "PLACEFP": 18996, "PLACENS": 2410328, "GEOID": 618996, "NAME": "Desert Hot Springs", "NAMELSAD": "Desert Hot Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78026380, "AWATER": 930813, "INTPTLAT": 33.9575914, "INTPTLON": -116.5422837, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 33.961586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1433, "felt:has_geometry": true, "felt:h3_index": 644747048544577545, "STATEFP": 6, "PLACEFP": 73700, "PLACENS": 2583150, "GEOID": 673700, "NAMELSAD": "Spring Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7833090, "AWATER": 885216, "INTPTLAT": 34.4968183, "INTPTLON": -117.267587, "NAME": "Spring Valley Lake,Apple Valley", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -117.268066, 34.488448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1086, "felt:has_geometry": true, "felt:h3_index": 644747049448031517, "STATEFP": 6, "PLACEFP": 44420, "PLACENS": 2627937, "GEOID": 644420, "NAME": "Lucerne Valley", "NAMELSAD": "Lucerne Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 273570981, "AWATER": 0, "INTPTLAT": 34.4427191, "INTPTLON": -116.9020927, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 34.434098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1354, "felt:has_geometry": true, "felt:h3_index": 644747051610516904, "STATEFP": 6, "PLACEFP": 63316, "PLACENS": 2409224, "GEOID": 663316, "NAME": "Running Springs", "NAMELSAD": "Running Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10888685, "AWATER": 23184, "INTPTLAT": 34.2113617, "INTPTLON": -117.1045717, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -117.092285, 34.216345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 712, "felt:has_geometry": true, "felt:h3_index": 644747053195790667, "STATEFP": 6, "PLACEFP": 17162, "PLACENS": 2407681, "GEOID": 617162, "NAMELSAD": "Crestline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36012359, "AWATER": 308820, "INTPTLAT": 34.2540767, "INTPTLON": -117.2867092, "NAME": "Crestline,Lake Arrowhead", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -117.290039, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 369, "felt:has_geometry": true, "felt:h3_index": 644747054570202468, "STATEFP": 6, "PLACEFP": 6434, "PLACENS": 2409843, "GEOID": 606434, "NAME": "Big Bear Lake", "NAMELSAD": "Big Bear Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16164304, "AWATER": 474774, "INTPTLAT": 34.2428884, "INTPTLON": -116.8938931, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 34.234512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 224, "felt:has_geometry": true, "felt:h3_index": 644747056982330284, "STATEFP": 6, "PLACEFP": 59587, "PLACENS": 2411517, "GEOID": 659587, "NAMELSAD": "Rancho Santa Margarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33483309, "AWATER": 122877, "INTPTLAT": 33.6323319, "INTPTLON": -117.5990075, "NAME": "Rancho Santa Margarita,Modjeska,Trabuco Canyon,Las Flores,Coto de Caza,Mission Viejo", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 33.632916 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 184, "felt:has_geometry": true, "felt:h3_index": 644747058044247465, "STATEFP": 6, "PLACEFP": 85446, "PLACENS": 2497148, "GEOID": 685446, "NAMELSAD": "Wildomar city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61496131, "AWATER": 0, "INTPTLAT": 33.6172783, "INTPTLON": -117.2583117, "NAME": "Wildomar,Canyon Lake,Menifee,Murrieta", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -117.246094, 33.614619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1474, "felt:has_geometry": true, "felt:h3_index": 644747059181708180, "STATEFP": 6, "PLACEFP": 78138, "PLACENS": 2629134, "GEOID": 678138, "NAMELSAD": "Temescal Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50080852, "AWATER": 92242, "INTPTLAT": 33.7580032, "INTPTLON": -117.4671588, "NAME": "Temescal Valley,Warm Springs,Lake Elsinore,Lakeland Village", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -117.465820, 33.760882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 226, "felt:has_geometry": true, "felt:h3_index": 644747061280164672, "STATEFP": 6, "PLACEFP": 65084, "PLACENS": 2411781, "GEOID": 665084, "NAMELSAD": "San Clemente city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47542789, "AWATER": 1940302, "INTPTLAT": 33.4491433, "INTPTLON": -117.6131198, "NAME": "San Clemente,Ladera Ranch,San Juan Capistrano,Rancho Mission Viejo", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -117.619629, 33.449777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 263, "felt:has_geometry": true, "felt:h3_index": 644747064429065921, "STATEFP": 6, "PLACEFP": 86832, "PLACENS": 2412321, "GEOID": 686832, "NAMELSAD": "Yorba Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51676743, "AWATER": 52602, "INTPTLAT": 33.8890375, "INTPTLON": -117.7720695, "NAME": "Yorba Linda,Anaheim,Chino Hills,Villa Park,Placentia", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 109, "felt:has_geometry": true, "felt:h3_index": 644747065500019905, "STATEFP": 6, "PLACEFP": 39304, "PLACENS": 2411572, "GEOID": 639304, "NAMELSAD": "La Habra Heights city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15951225, "AWATER": 4740, "INTPTLAT": 33.9589591, "INTPTLON": -117.9489729, "NAME": "La Habra Heights,La Habra,Hacienda Heights,Rowland Heights,South San Jose Hills,Fullerton,South Whittier,East Whittier,Brea", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.961586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 368, "felt:has_geometry": true, "felt:h3_index": 644747066559863579, "STATEFP": 6, "PLACEFP": 21230, "PLACENS": 2650584, "GEOID": 621230, "NAMELSAD": "Eastvale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32837284, "AWATER": 1143505, "INTPTLAT": 33.9632744, "INTPTLON": -117.5823688, "NAME": "Eastvale,Coronita,Chino,Norco", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -117.575684, 33.961586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 115, "felt:has_geometry": true, "felt:h3_index": 644747067680746824, "STATEFP": 6, "PLACEFP": 58072, "PLACENS": 2411454, "GEOID": 658072, "NAMELSAD": "Pomona city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59529294, "AWATER": 26188, "INTPTLAT": 34.0584937, "INTPTLON": -117.7610909, "NAME": "Pomona,San Dimas,Montclair,Walnut,Diamond Bar", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -117.751465, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1207, "felt:has_geometry": true, "felt:h3_index": 644747068844882610, "STATEFP": 6, "PLACEFP": 52379, "PLACENS": 2408951, "GEOID": 652379, "NAMELSAD": "North Tustin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17044859, "AWATER": 0, "INTPTLAT": 33.7635438, "INTPTLON": -117.7947169, "NAME": "North Tustin,Tustin,Irvine,Lake Forest", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -117.795410, 33.760882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 256, "felt:has_geometry": true, "felt:h3_index": 644747069863937115, "STATEFP": 6, "PLACEFP": 29000, "PLACENS": 2410568, "GEOID": 629000, "NAMELSAD": "Garden Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46498892, "AWATER": 31066, "INTPTLAT": 33.7787816, "INTPTLON": -117.9604719, "NAME": "Garden Grove,Orange,Fountain Valley,Stanton,Westminster,Midway City,Santa Ana", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 793, "felt:has_geometry": true, "felt:h3_index": 644747071172589648, "STATEFP": 6, "PLACEFP": 21810, "PLACENS": 2408053, "GEOID": 621810, "NAMELSAD": "El Cerrito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6738599, "AWATER": 558502, "INTPTLAT": 33.8381856, "INTPTLON": -117.522205, "NAME": "El Cerrito,Corona,Silverado,Williams Canyon", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -117.509766, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1357, "felt:has_geometry": true, "felt:h3_index": 644747073577834850, "STATEFP": 6, "PLACEFP": 64056, "PLACENS": 2812661, "GEOID": 664056, "NAME": "Sage", "NAMELSAD": "Sage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 176786860, "AWATER": 15601, "INTPTLAT": 33.594066, "INTPTLON": -116.9103847, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -116.916504, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 895, "felt:has_geometry": true, "felt:h3_index": 644747074075142700, "STATEFP": 6, "PLACEFP": 30944, "PLACENS": 2630600, "GEOID": 630944, "NAMELSAD": "Green Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3633842, "AWATER": 0, "INTPTLAT": 33.7349718, "INTPTLON": -117.0782441, "NAME": "Green Acres,Winchester,Homeland,Romoland,Hemet", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 946, "felt:has_geometry": true, "felt:h3_index": 644747075151599266, "STATEFP": 6, "PLACEFP": 36203, "PLACENS": 2408414, "GEOID": 636203, "NAMELSAD": "Idyllwild-Pine Cove CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35541508, "AWATER": 26090, "INTPTLAT": 33.7442086, "INTPTLON": -116.7306896, "NAME": "Idyllwild-Pine Cove,Mountain Center", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -116.718750, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 103, "felt:has_geometry": true, "felt:h3_index": 644747076412385956, "STATEFP": 6, "PLACEFP": 4758, "PLACENS": 2409805, "GEOID": 604758, "NAMELSAD": "Beaumont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78560690, "AWATER": 35531, "INTPTLAT": 33.8767216, "INTPTLON": -116.9530089, "NAME": "Beaumont,East Hemet,Valle Vista,San Jacinto", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -116.960449, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1020, "felt:has_geometry": true, "felt:h3_index": 644747077596899179, "STATEFP": 6, "PLACEFP": 39715, "PLACENS": 2583052, "GEOID": 639715, "NAMELSAD": "Lake Riverside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18888592, "AWATER": 216496, "INTPTLAT": 33.518735, "INTPTLON": -116.8121026, "NAME": "Lake Riverside,Aguanga", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -116.806641, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 862, "felt:has_geometry": true, "felt:h3_index": 644747078611887798, "STATEFP": 6, "PLACEFP": 26067, "PLACENS": 2583019, "GEOID": 626067, "NAMELSAD": "French Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28156302, "AWATER": 15910, "INTPTLAT": 33.5994608, "INTPTLON": -117.1064951, "NAME": "French Valley,Temecula", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 514, "felt:has_geometry": true, "felt:h3_index": 644747079546123337, "STATEFP": 6, "PLACEFP": 2294, "PLACENS": 2582935, "GEOID": 602294, "NAME": "Anza", "NAMELSAD": "Anza CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71470883, "AWATER": 212166, "INTPTLAT": 33.5615903, "INTPTLON": -116.6960661, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -116.696777, 33.559707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1050, "felt:has_geometry": true, "felt:h3_index": 644747092349047627, "STATEFP": 6, "PLACEFP": 41208, "PLACENS": 2583056, "GEOID": 641208, "NAME": "Leona Valley", "NAMELSAD": "Leona Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48155344, "AWATER": 70714, "INTPTLAT": 34.608144, "INTPTLON": -118.3013217, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 34.597042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1012, "felt:has_geometry": true, "felt:h3_index": 644747093450220424, "STATEFP": 6, "PLACEFP": 39556, "PLACENS": 2583050, "GEOID": 639556, "NAMELSAD": "Lake Hughes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27506574, "AWATER": 154600, "INTPTLAT": 34.682415399999999, "INTPTLON": -118.4519379, "NAME": "Lake Hughes,Elizabeth Lake,Green Valley", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -118.454590, 34.687428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 13, "felt:has_geometry": true, "felt:h3_index": 644747094663775622, "STATEFP": 6, "PLACEFP": 69088, "PLACENS": 2411819, "GEOID": 669088, "NAMELSAD": "Santa Clarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 183251253, "AWATER": 159487, "INTPTLAT": 34.4140833, "INTPTLON": -118.4947294, "NAME": "Santa Clarita,San Fernando", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -118.498535, 34.415973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1521, "felt:has_geometry": true, "felt:h3_index": 644747095689222760, "STATEFP": 6, "PLACEFP": 81967, "PLACENS": 2409388, "GEOID": 681967, "NAMELSAD": "Val Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6644174, "AWATER": 0, "INTPTLAT": 34.4504231, "INTPTLON": -118.6717843, "NAME": "Val Verde,Hasley Canyon,Castaic,Stevenson Ranch", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -118.674316, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 487, "felt:has_geometry": true, "felt:h3_index": 644747096810914953, "STATEFP": 6, "PLACEFP": 450, "PLACENS": 2582928, "GEOID": 600450, "NAME": "Agua Dulce", "NAMELSAD": "Agua Dulce CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 59181047, "AWATER": 14646, "INTPTLAT": 34.5016784, "INTPTLON": -118.3206796, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -118.322754, 34.506557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1019, "felt:has_geometry": true, "felt:h3_index": 644747100381466922, "STATEFP": 6, "PLACEFP": 39696, "PLACENS": 2408548, "GEOID": 639696, "NAMELSAD": "Lake of the Woods CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9166577, "AWATER": 1509, "INTPTLAT": 34.8271377, "INTPTLON": -118.997304, "NAME": "Lake of the Woods,Frazier Park,Lebec", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 34.831841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1458, "felt:has_geometry": true, "felt:h3_index": 644747107957582123, "STATEFP": 6, "PLACEFP": 77308, "PLACENS": 2583157, "GEOID": 677308, "NAMELSAD": "Sun Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27981975, "AWATER": 1222, "INTPTLAT": 34.5595244, "INTPTLON": -117.9567582, "NAME": "Sun Village,Littlerock", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 34.560859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 138, "felt:has_geometry": true, "felt:h3_index": 644747109159475888, "STATEFP": 6, "PLACEFP": 40130, "PLACENS": 2411620, "GEOID": 640130, "NAMELSAD": "Lancaster city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244189279, "AWATER": 651713, "INTPTLAT": 34.693558, "INTPTLON": -118.1753054, "NAME": "Lancaster,Quartz Hill", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 34.687428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1015, "felt:has_geometry": true, "felt:h3_index": 644747110137651232, "STATEFP": 6, "PLACEFP": 39612, "PLACENS": 2408541, "GEOID": 639612, "NAME": "Lake Los Angeles", "NAMELSAD": "Lake Los Angeles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25229336, "AWATER": 125676, "INTPTLAT": 34.609839, "INTPTLON": -117.8303369, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -117.817383, 34.615127 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 742, "felt:has_geometry": true, "felt:h3_index": 644747112917918427, "STATEFP": 6, "PLACEFP": 19052, "PLACENS": 2408666, "GEOID": 619052, "NAMELSAD": "Desert View Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1142187, "AWATER": 0, "INTPTLAT": 34.5902628, "INTPTLON": -118.1535367, "NAME": "Desert View Highlands,Palmdale,Acton", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -118.146973, 34.597042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1343, "felt:has_geometry": true, "felt:h3_index": 644747116795790004, "STATEFP": 6, "PLACEFP": 62826, "PLACENS": 2409208, "GEOID": 662826, "NAME": "Rosamond", "NAMELSAD": "Rosamond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 134995228, "AWATER": 551690, "INTPTLAT": 34.8656273, "INTPTLON": -118.2147671, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.867905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1149, "felt:has_geometry": true, "felt:h3_index": 644747118822955717, "STATEFP": 6, "PLACEFP": 48452, "PLACENS": 2408853, "GEOID": 648452, "NAME": "Mojave", "NAMELSAD": "Mojave CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 151185016, "AWATER": 207337, "INTPTLAT": 35.0149951, "INTPTLON": -118.1902086, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 35.012002 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1490, "felt:has_geometry": true, "felt:h3_index": 644747124543605603, "STATEFP": 6, "PLACEFP": 78960, "PLACENS": 2583164, "GEOID": 678960, "NAMELSAD": "Topanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49538336, "AWATER": 19528, "INTPTLAT": 34.0967768, "INTPTLON": -118.6060209, "NAME": "Topanga,Calabasas,Hidden Hills", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1212, "felt:has_geometry": true, "felt:h3_index": 644747125647071019, "STATEFP": 6, "PLACEFP": 53116, "PLACENS": 2408964, "GEOID": 653116, "NAMELSAD": "Oak Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713403, "AWATER": 0, "INTPTLAT": 34.1849839, "INTPTLON": -118.7669403, "NAME": "Oak Park,Agoura Hills,Lake Sherwood,Westlake Village", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -118.762207, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1379, "felt:has_geometry": true, "felt:h3_index": 644747128465883906, "STATEFP": 6, "PLACEFP": 70140, "PLACENS": 2585445, "GEOID": 670140, "NAMELSAD": "Santa Susana CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3250193, "AWATER": 0, "INTPTLAT": 34.2585666, "INTPTLON": -118.6643529, "NAME": "Santa Susana,Bell Canyon", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1261, "felt:has_geometry": true, "felt:h3_index": 644747130228595736, "STATEFP": 6, "PLACEFP": 56598, "PLACENS": 2805260, "GEOID": 656598, "NAMELSAD": "Pepperdine University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1393957, "AWATER": 0, "INTPTLAT": 34.0422775, "INTPTLON": -118.709182, "NAME": "Pepperdine University,Malibu", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -118.696289, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 45, "felt:has_geometry": true, "felt:h3_index": 644747131027237789, "STATEFP": 6, "PLACEFP": 44000, "PLACENS": 2410877, "GEOID": 644000, "NAMELSAD": "Los Angeles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1218634998, "AWATER": 80417875, "INTPTLAT": 34.0193936, "INTPTLON": -118.4108248, "NAME": "Los Angeles,Ladera Heights,Culver City,Beverly Hills,Marina del Rey,Santa Monica", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 31, "felt:has_geometry": true, "felt:h3_index": 644747133490056433, "STATEFP": 6, "PLACEFP": 24092, "PLACENS": 2410504, "GEOID": 624092, "NAME": "Fillmore", "NAMELSAD": "Fillmore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8553766, "AWATER": 0, "INTPTLAT": 34.3989578, "INTPTLON": -118.9174598, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1280, "felt:has_geometry": true, "felt:h3_index": 644747135884366873, "STATEFP": 6, "PLACEFP": 57372, "PLACENS": 2409077, "GEOID": 657372, "NAME": "Piru", "NAMELSAD": "Piru CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8233997, "AWATER": 40401, "INTPTLAT": 34.4056778, "INTPTLON": -118.80509670000001, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -118.806152, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1418, "felt:has_geometry": true, "felt:h3_index": 644747137630910901, "STATEFP": 6, "PLACEFP": 72632, "PLACENS": 2807036, "GEOID": 672632, "NAMELSAD": "Somis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8683406, "AWATER": 0, "INTPTLAT": 34.2652625, "INTPTLON": -118.9984062, "NAME": "Somis,Moorpark,Santa Rosa Valley,Casa Conejo,Camarillo,Thousand Oaks", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 34.270836 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 272, "felt:has_geometry": true, "felt:h3_index": 644747139012551940, "STATEFP": 6, "PLACEFP": 70042, "PLACENS": 2411826, "GEOID": 670042, "NAMELSAD": "Santa Paula city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14323012, "AWATER": 423953, "INTPTLAT": 34.35495, "INTPTLON": -119.0662804, "NAME": "Santa Paula,Saticoy,El Rio", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -119.069824, 34.361576 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 191, "felt:has_geometry": true, "felt:h3_index": 644747140464139555, "STATEFP": 6, "PLACEFP": 72016, "PLACENS": 2411904, "GEOID": 672016, "NAME": "Simi Valley", "NAMELSAD": "Simi Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107601139, "AWATER": 1831566, "INTPTLAT": 34.2668875, "INTPTLON": -118.7484575, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -118.740234, 34.270836 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 504, "felt:has_geometry": true, "felt:h3_index": 644747141745695387, "STATEFP": 6, "PLACEFP": 1290, "PLACENS": 2407732, "GEOID": 601290, "NAMELSAD": "Altadena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21924372, "AWATER": 40734, "INTPTLAT": 34.1922117, "INTPTLON": -118.1355893, "NAME": "Altadena,San Marino,San Pasqual,South Pasadena,Pasadena,Sierra Madre,East Pasadena,Arcadia", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -118.125000, 34.198173 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 127, "felt:has_geometry": true, "felt:h3_index": 644747143423834323, "STATEFP": 6, "PLACEFP": 8954, "PLACENS": 2409939, "GEOID": 608954, "NAMELSAD": "Burbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 44848115, "AWATER": 94723, "INTPTLAT": 34.1900793, "INTPTLON": -118.3264045, "NAME": "Burbank,La Crescenta-Montrose,La Cañada Flintridge", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -118.322754, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1425, "felt:has_geometry": true, "felt:h3_index": 644747146064096371, "STATEFP": 6, "PLACEFP": 73276, "PLACENS": 2408771, "GEOID": 673276, "NAMELSAD": "South San Gabriel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2160330, "AWATER": 685, "INTPTLAT": 34.0477943, "INTPTLON": -118.095678, "NAME": "South San Gabriel,Montebello,Alhambra,Monterey Park,South El Monte,Avocado Heights,San Gabriel,Temple City,East San Gabriel,Rosemead,Pico Rivera,Downey,Bell Gardens,East Los Angeles,Maywood,Commerce,Rose Hills,West Whittier-Los Nietos,Whittier", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -118.103027, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 43, "felt:has_geometry": true, "felt:h3_index": 644747147539074405, "STATEFP": 6, "PLACEFP": 30000, "PLACENS": 2410597, "GEOID": 630000, "NAMELSAD": "Glendale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78940369, "AWATER": 330542, "INTPTLAT": 34.1813929, "INTPTLON": -118.2458301, "NAME": "Glendale,West Hollywood", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -118.234863, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1528, "felt:has_geometry": true, "felt:h3_index": 644747148233723293, "STATEFP": 6, "PLACEFP": 82815, "PLACENS": 2409516, "GEOID": 682815, "NAMELSAD": "Vincent CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3814588, "AWATER": 0, "INTPTLAT": 34.0982678, "INTPTLON": -117.9238011, "NAME": "Vincent,Monrovia,Bradbury,Duarte,Glendora,Charter Oak,Citrus,Azusa,West Puente Valley,La Puente,Industry,Valinda,North El Monte,Irwindale,South Monrovia Island,Mayflower Village,El Monte,Baldwin Park,Covina,West Covina", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -117.927246, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 968, "felt:has_geometry": true, "felt:h3_index": 644747194024372355, "STATEFP": 6, "PLACEFP": 37554, "PLACENS": 2408454, "GEOID": 637554, "NAME": "Joshua Tree", "NAMELSAD": "Joshua Tree CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 93463461, "AWATER": 0, "INTPTLAT": 34.1236329, "INTPTLON": -116.3128622, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -116.301270, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 933, "felt:has_geometry": true, "felt:h3_index": 644747194572775696, "STATEFP": 6, "PLACEFP": 34392, "PLACENS": 2629366, "GEOID": 634392, "NAME": "Homestead Valley", "NAMELSAD": "Homestead Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87686964, "AWATER": 0, "INTPTLAT": 34.2730035, "INTPTLON": -116.4145486, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -116.411133, 34.270836 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 358, "felt:has_geometry": true, "felt:h3_index": 644747196022577172, "STATEFP": 6, "PLACEFP": 80994, "PLACENS": 2412119, "GEOID": 680994, "NAME": "Twentynine Palms", "NAMELSAD": "Twentynine Palms city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 152157672, "AWATER": 0, "INTPTLAT": 34.1478175, "INTPTLON": -116.0659586, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -116.059570, 34.143635 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 361, "felt:has_geometry": true, "felt:h3_index": 644747198802471755, "STATEFP": 6, "PLACEFP": 87056, "PLACENS": 2413524, "GEOID": 687056, "NAME": "Yucca Valley", "NAMELSAD": "Yucca Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103161847, "AWATER": 0, "INTPTLAT": 34.1233473, "INTPTLON": -116.4215573, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -116.411133, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 963, "felt:has_geometry": true, "felt:h3_index": 644747236764377309, "STATEFP": 6, "PLACEFP": 37400, "PLACENS": 2408446, "GEOID": 637400, "NAMELSAD": "Johannesburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6354495, "AWATER": 0, "INTPTLAT": 35.3718756, "INTPTLON": -117.6418025, "NAME": "Johannesburg,Randsburg", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 35.371135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 284, "felt:has_geometry": true, "felt:h3_index": 644747239564182225, "STATEFP": 6, "PLACEFP": 60704, "PLACENS": 2410944, "GEOID": 660704, "NAME": "Ridgecrest", "NAMELSAD": "Ridgecrest city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 54029088, "AWATER": 1671951, "INTPTLAT": 35.6285421, "INTPTLON": -117.6639923, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -117.663574, 35.621582 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 853, "felt:has_geometry": true, "felt:h3_index": 644747245305307165, "STATEFP": 6, "PLACEFP": 25114, "PLACENS": 2628733, "GEOID": 625114, "NAME": "Fort Irwin", "NAMELSAD": "Fort Irwin CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18040432, "AWATER": 0, "INTPTLAT": 35.2477015, "INTPTLON": -116.6834115, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -116.674805, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1408, "felt:has_geometry": true, "felt:h3_index": 644747264891429038, "STATEFP": 6, "PLACEFP": 71964, "PLACENS": 2583143, "GEOID": 671964, "NAME": "Silver Lakes", "NAMELSAD": "Silver Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13552756, "AWATER": 1165902, "INTPTLAT": 34.7478201, "INTPTLON": -117.3449658, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 364, "felt:has_geometry": true, "felt:h3_index": 644747266452686109, "STATEFP": 6, "PLACEFP": 296, "PLACENS": 2409663, "GEOID": 600296, "NAMELSAD": "Adelanto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 136923866, "AWATER": 41151, "INTPTLAT": 34.5809017, "INTPTLON": -117.4394577, "NAME": "Adelanto,Victorville,Mountain View Acres", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -117.443848, 34.578952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1197, "felt:has_geometry": true, "felt:h3_index": 644747270804527410, "STATEFP": 6, "PLACEFP": 51812, "PLACENS": 2408937, "GEOID": 651812, "NAMELSAD": "North Edwards CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33012003, "AWATER": 0, "INTPTLAT": 35.0473324, "INTPTLON": -117.8093616, "NAME": "North Edwards,Boron", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -117.817383, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 366, "felt:has_geometry": true, "felt:h3_index": 644747274542948770, "STATEFP": 6, "PLACEFP": 9780, "PLACENS": 2409960, "GEOID": 609780, "NAME": "California City", "NAMELSAD": "California City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 527395596, "AWATER": 174458, "INTPTLAT": 35.1465903, "INTPTLON": -117.8693463, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 35.137879 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 790, "felt:has_geometry": true, "felt:h3_index": 644747276044088179, "STATEFP": 6, "PLACEFP": 21600, "PLACENS": 2408048, "GEOID": 621600, "NAME": "Edwards AFB", "NAMELSAD": "Edwards AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44377479, "AWATER": 1729, "INTPTLAT": 34.9024079, "INTPTLON": -117.9218689, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -117.927246, 34.903953 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1049, "felt:has_geometry": true, "felt:h3_index": 644747280253347606, "STATEFP": 6, "PLACEFP": 41194, "PLACENS": 2408601, "GEOID": 641194, "NAMELSAD": "Lenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5389420, "AWATER": 0, "INTPTLAT": 34.8860557, "INTPTLON": -117.1077727, "NAME": "Lenwood,Barstow", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1587, "felt:has_geometry": true, "felt:h3_index": 644747281532308337, "STATEFP": 6, "PLACEFP": 86720, "PLACENS": 2805257, "GEOID": 686720, "NAME": "Yermo", "NAMELSAD": "Yermo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1680240, "AWATER": 12788, "INTPTLAT": 34.9066556, "INTPTLON": -116.8232743, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -116.828613, 34.903953 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 342, "felt:has_geometry": true, "felt:h3_index": 644747298923432365, "STATEFP": 6, "PLACEFP": 58520, "PLACENS": 2411480, "GEOID": 658520, "NAMELSAD": "Poway city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 101210495, "AWATER": 223435, "INTPTLAT": 32.9876765, "INTPTLON": -117.0218144, "NAME": "Poway,Santee", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -117.026367, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 372, "felt:has_geometry": true, "felt:h3_index": 644747299588038765, "STATEFP": 6, "PLACEFP": 72506, "PLACENS": 2411923, "GEOID": 672506, "NAMELSAD": "Solana Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8841642, "AWATER": 270081, "INTPTLAT": 32.9913002, "INTPTLON": -117.2580617, "NAME": "Solana Beach,Encinitas,Fairbanks Ranch,Rancho Santa Fe,Del Mar", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -117.246094, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 302, "felt:has_geometry": true, "felt:h3_index": 644747300973930090, "STATEFP": 6, "PLACEFP": 16378, "PLACENS": 2410233, "GEOID": 616378, "NAME": "Coronado", "NAMELSAD": "Coronado city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20215844, "AWATER": 63957492, "INTPTLAT": 32.6576246, "INTPTLON": -117.1565392, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 32.657876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 318, "felt:has_geometry": true, "felt:h3_index": 644747302892672018, "STATEFP": 6, "PLACEFP": 41124, "PLACENS": 2410818, "GEOID": 641124, "NAMELSAD": "Lemon Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10045731, "AWATER": 0, "INTPTLAT": 32.7330712, "INTPTLON": -117.0344134, "NAME": "Lemon Grove,San Diego,La Mesa,Casa de Oro-Mount Helix,National City,La Presa,Bonita", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -117.026367, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 629, "felt:has_geometry": true, "felt:h3_index": 644747307116790155, "STATEFP": 6, "PLACEFP": 10561, "PLACENS": 2407947, "GEOID": 610561, "NAMELSAD": "Camp Pendleton South CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17965903, "AWATER": 1062655, "INTPTLAT": 33.2318244, "INTPTLON": -117.391998, "NAME": "Camp Pendleton South,Oceanside", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -117.399902, 33.229498 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 501, "felt:has_geometry": true, "felt:h3_index": 644747314123622017, "STATEFP": 6, "PLACEFP": 1192, "PLACENS": 2407726, "GEOID": 601192, "NAME": "Alpine", "NAMELSAD": "Alpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69374324, "AWATER": 1475, "INTPTLAT": 32.842487, "INTPTLON": -116.7559106, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -116.762695, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1310, "felt:has_geometry": true, "felt:h3_index": 644747315001812819, "STATEFP": 6, "PLACEFP": 59346, "PLACENS": 2409128, "GEOID": 659346, "NAME": "Ramona", "NAMELSAD": "Ramona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 99548576, "AWATER": 49343, "INTPTLAT": 33.0458112, "INTPTLON": -116.8775465, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 33.045508 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1367, "felt:has_geometry": true, "felt:h3_index": 644747317368534028, "STATEFP": 6, "PLACEFP": 66004, "PLACENS": 2409252, "GEOID": 666004, "NAME": "San Diego Country Estates", "NAMELSAD": "San Diego Country Estates CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43471183, "AWATER": 0, "INTPTLAT": 33.0093755, "INTPTLON": -116.7873141, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 33.008663 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1609, "felt:has_geometry": true, "felt:h3_index": 644747318909765468, "STATEFP": 6, "PLACEFP": 85992, "PLACENS": 2409614, "GEOID": 685992, "NAMELSAD": "Winter Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11447561, "AWATER": 1027, "INTPTLAT": 32.8375118, "INTPTLON": -116.9265552, "NAME": "Winter Gardens,Lakeside,Granite Hills,Eucalyptus Hills,Harbison Canyon,Rancho San Diego,El Cajon,Bostonia,Crest", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -116.916504, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 737, "felt:has_geometry": true, "felt:h3_index": 644747320189325364, "STATEFP": 6, "PLACEFP": 18940, "PLACENS": 2582992, "GEOID": 618940, "NAMELSAD": "Descanso CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49613062, "AWATER": 0, "INTPTLAT": 32.8695654, "INTPTLON": -116.6278783, "NAME": "Descanso,Pine Valley", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -116.630859, 32.861132 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1608, "felt:has_geometry": true, "felt:h3_index": 644747322470885632, "STATEFP": 6, "PLACEFP": 81736, "PLACENS": 2409396, "GEOID": 681736, "NAMELSAD": "Valley Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71083460, "AWATER": 0, "INTPTLAT": 33.2329944, "INTPTLON": -117.015763, "NAME": "Valley Center,Hidden Meadows", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -117.004395, 33.229498 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 828, "felt:has_geometry": true, "felt:h3_index": 644747323583501577, "STATEFP": 6, "PLACEFP": 23462, "PLACENS": 2408113, "GEOID": 623462, "NAMELSAD": "Fallbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45429891, "AWATER": 47337, "INTPTLAT": 33.3742351, "INTPTLON": -117.2203748, "NAME": "Fallbrook,Camp Pendleton Mainside,Bonsall", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -117.224121, 33.376412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1240, "felt:has_geometry": true, "felt:h3_index": 644747325903749669, "STATEFP": 6, "PLACEFP": 55058, "PLACENS": 2585656, "GEOID": 655058, "NAMELSAD": "Pala CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14449444, "AWATER": 0, "INTPTLAT": 33.3639256, "INTPTLON": -117.0677853, "NAME": "Pala,Rainbow", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 914, "felt:has_geometry": true, "felt:h3_index": 644747326632756579, "STATEFP": 6, "PLACEFP": 32212, "PLACENS": 2813413, "GEOID": 632212, "NAMELSAD": "Harmony Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7980769, "AWATER": 0, "INTPTLAT": 33.1007172, "INTPTLON": -117.1379923, "NAME": "Harmony Grove,Escondido,Elfin Forest,Del Dios", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 33.100745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 343, "felt:has_geometry": true, "felt:h3_index": 644747327819540016, "STATEFP": 6, "PLACEFP": 68196, "PLACENS": 2411797, "GEOID": 668196, "NAMELSAD": "San Marcos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 63624545, "AWATER": 52493, "INTPTLAT": 33.1325674, "INTPTLON": -117.1698921, "NAME": "San Marcos,Vista,Carlsbad,Lake San Marcos", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 33.137551 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 319, "felt:has_geometry": true, "felt:h3_index": 644747349465553050, "STATEFP": 6, "PLACEFP": 13392, "PLACENS": 2409461, "GEOID": 613392, "NAMELSAD": "Chula Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 128560729, "AWATER": 6360807, "INTPTLAT": 32.6276701, "INTPTLON": -117.0151696, "NAME": "Chula Vista,Imperial Beach", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -117.004395, 32.620870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1607, "felt:has_geometry": true, "felt:h3_index": 644747351250961776, "STATEFP": 6, "PLACEFP": 73696, "PLACENS": 2408796, "GEOID": 673696, "NAMELSAD": "Spring Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19015909, "AWATER": 88959, "INTPTLAT": 32.7299478, "INTPTLON": -116.9764015, "NAME": "Spring Valley,Jamul", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -116.982422, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 415, "felt:has_geometry": true, "felt:h3_index": 644747371654271030, "STATEFP": 6, "PLACEFP": 3274, "PLACENS": 2409763, "GEOID": 603274, "NAME": "Avalon", "NAMELSAD": "Avalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7473920, "AWATER": 12349954, "INTPTLAT": 33.3433354, "INTPTLON": -118.3176149, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -118.322754, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 236, "felt:has_geometry": true, "felt:h3_index": 644747384394364529, "STATEFP": 6, "PLACEFP": 39178, "PLACENS": 2411595, "GEOID": 639178, "NAMELSAD": "Laguna Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23037592, "AWATER": 2512773, "INTPTLAT": 33.54337, "INTPTLON": -117.7618013, "NAME": "Laguna Beach,Laguna Woods,Aliso Viejo,Laguna Hills,Laguna Niguel,Dana Point", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -117.751465, 33.541395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 253, "felt:has_geometry": true, "felt:h3_index": 644747385956222806, "STATEFP": 6, "PLACEFP": 16532, "PLACENS": 2410239, "GEOID": 616532, "NAMELSAD": "Costa Mesa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40937010, "AWATER": 24554, "INTPTLAT": 33.6659055, "INTPTLON": -117.9123358, "NAME": "Costa Mesa,Newport Beach", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -117.905273, 33.669497 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1552, "felt:has_geometry": true, "felt:h3_index": 644747391002831275, "STATEFP": 6, "PLACEFP": 84144, "PLACENS": 2409546, "GEOID": 684144, "NAMELSAD": "West Carson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5868539, "AWATER": 33313, "INTPTLAT": 33.8231392, "INTPTLON": -118.2936849, "NAME": "West Carson,Lomita,Signal Hill,Long Beach,Carson,Rolling Hills,Rolling Hills Estates", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.815666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 431, "felt:has_geometry": true, "felt:h3_index": 644747391939978161, "STATEFP": 6, "PLACEFP": 33364, "PLACENS": 2410749, "GEOID": 633364, "NAMELSAD": "Hermosa Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3692737, "AWATER": 12981958, "INTPTLAT": 33.8698189, "INTPTLON": -118.4052955, "NAME": "Hermosa Beach,Alondra Park,Lawndale,Redondo Beach,El Segundo,Manhattan Beach,Palos Verdes Estates,Torrance", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 410, "felt:has_geometry": true, "felt:h3_index": 644747392977549932, "STATEFP": 6, "PLACEFP": 2896, "PLACENS": 2409735, "GEOID": 602896, "NAMELSAD": "Artesia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4196986, "AWATER": 0, "INTPTLAT": 33.8675912, "INTPTLON": -118.0806338, "NAME": "Artesia,Cerritos,Lakewood,Paramount,Bellflower,La Mirada,Buena Park,Santa Fe Springs,Norwalk,Cypress,Hawaiian Gardens,La Palma,Los Alamitos", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1562, "felt:has_geometry": true, "felt:h3_index": 644747394123115086, "STATEFP": 6, "PLACEFP": 84780, "PLACENS": 2409548, "GEOID": 684780, "NAMELSAD": "West Rancho Dominguez CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10284759, "AWATER": 13545, "INTPTLAT": 33.9043316, "INTPTLON": -118.2677765, "NAME": "West Rancho Dominguez,West Athens,Willowbrook,View Park-Windsor Hills,South Gate,Walnut Park,Cudahy,Bell,Lynwood,Vernon,Florence-Graham,Huntington Park,Gardena,Lennox,Westmont,Inglewood,Del Aire,Hawthorne,Compton,East Rancho Dominguez", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -118.256836, 33.906896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 136, "felt:has_geometry": true, "felt:h3_index": 644747396703175478, "STATEFP": 6, "PLACEFP": 59514, "PLACENS": 2411516, "GEOID": 659514, "NAME": "Rancho Palos Verdes", "NAMELSAD": "Rancho Palos Verdes city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34893929, "AWATER": 67929785, "INTPTLAT": 33.7385168, "INTPTLON": -118.3696845, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -118.366699, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 230, "felt:has_geometry": true, "felt:h3_index": 644747397645512960, "STATEFP": 6, "PLACEFP": 36000, "PLACENS": 2410811, "GEOID": 636000, "NAMELSAD": "Huntington Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69882014, "AWATER": 3455277, "INTPTLAT": 33.6980069, "INTPTLON": -118.0038344, "NAME": "Huntington Beach,Seal Beach,Rossmoor", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 741, "felt:has_geometry": true, "felt:h3_index": 644747433847119077, "STATEFP": 6, "PLACEFP": 19024, "PLACENS": 2408665, "GEOID": 619024, "NAMELSAD": "Desert Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1809312, "AWATER": 294345, "INTPTLAT": 33.4038032, "INTPTLON": -116.0392059, "NAME": "Desert Shores,Salton Sea Beach", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -116.037598, 33.394759 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1217, "felt:has_geometry": true, "felt:h3_index": 644747435151144662, "STATEFP": 6, "PLACEFP": 53224, "PLACENS": 2630708, "GEOID": 653224, "NAME": "Oasis", "NAMELSAD": "Oasis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50832299, "AWATER": 0, "INTPTLAT": 33.5275314, "INTPTLON": -116.12611389999999, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -116.125488, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1206, "felt:has_geometry": true, "felt:h3_index": 644747435951268661, "STATEFP": 6, "PLACEFP": 52302, "PLACENS": 2583097, "GEOID": 652302, "NAME": "North Shore", "NAMELSAD": "North Shore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28952350, "AWATER": 13989, "INTPTLAT": 33.5145756, "INTPTLON": -115.9109591, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -115.905762, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1123, "felt:has_geometry": true, "felt:h3_index": 644747437084350486, "STATEFP": 6, "PLACEFP": 46660, "PLACENS": 2408811, "GEOID": 646660, "NAMELSAD": "Mecca CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18042180, "AWATER": 0, "INTPTLAT": 33.5767084, "INTPTLON": -116.0645275, "NAME": "Mecca,Thermal", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -116.059570, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1360, "felt:has_geometry": true, "felt:h3_index": 644747440964263009, "STATEFP": 6, "PLACEFP": 64294, "PLACENS": 2409242, "GEOID": 664294, "NAME": "Salton City", "NAMELSAD": "Salton City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55521880, "AWATER": 0, "INTPTLAT": 33.299426, "INTPTLON": -115.9609466, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -115.949707, 33.302986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 108, "felt:has_geometry": true, "felt:h3_index": 644747442472890388, "STATEFP": 6, "PLACEFP": 55184, "PLACENS": 2411356, "GEOID": 655184, "NAMELSAD": "Palm Desert city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69352308, "AWATER": 528740, "INTPTLAT": 33.7376353, "INTPTLON": -116.3641448, "NAME": "Palm Desert,Rancho Mirage,Bermuda Dunes,Thousand Palms,Indian Wells", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -116.367188, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 214, "felt:has_geometry": true, "felt:h3_index": 644747443548210560, "STATEFP": 6, "PLACEFP": 55254, "PLACENS": 2411357, "GEOID": 655254, "NAMELSAD": "Palm Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244855729, "AWATER": 358065, "INTPTLAT": 33.8033613, "INTPTLON": -116.5382801, "NAME": "Palm Springs,Cathedral City", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 951, "felt:has_geometry": true, "felt:h3_index": 644747444529407400, "STATEFP": 6, "PLACEFP": 36452, "PLACENS": 2583039, "GEOID": 636452, "NAMELSAD": "Indio Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56620987, "AWATER": 0, "INTPTLAT": 33.8410604, "INTPTLON": -116.2484731, "NAME": "Indio Hills,Desert Palms", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -116.235352, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 739, "felt:has_geometry": true, "felt:h3_index": 644747445796426793, "STATEFP": 6, "PLACEFP": 18986, "PLACENS": 2582994, "GEOID": 618986, "NAMELSAD": "Desert Edge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5872955, "AWATER": 0, "INTPTLAT": 33.9222888, "INTPTLON": -116.4400922, "NAME": "Desert Edge,Garnet,Sky Valley", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -116.433105, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 202, "felt:has_geometry": true, "felt:h3_index": 644747449139910869, "STATEFP": 6, "PLACEFP": 14260, "PLACENS": 2409493, "GEOID": 614260, "NAMELSAD": "Coachella city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77484255, "AWATER": 0, "INTPTLAT": 33.6903799, "INTPTLON": -116.1431282, "NAME": "Coachella,Indio,Vista Santa Rosa,La Quinta", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -116.147461, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 577, "felt:has_geometry": true, "felt:h3_index": 644747456934429382, "STATEFP": 6, "PLACEFP": 7372, "PLACENS": 2407878, "GEOID": 607372, "NAME": "Bombay Beach", "NAMELSAD": "Bombay Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1719105, "AWATER": 0, "INTPTLAT": 33.3556097, "INTPTLON": -115.7269018, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -115.729980, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1178, "felt:has_geometry": true, "felt:h3_index": 644747474043667859, "STATEFP": 6, "PLACEFP": 49810, "PLACENS": 2628763, "GEOID": 649810, "NAME": "Mount Laguna", "NAMELSAD": "Mount Laguna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4395332, "AWATER": 0, "INTPTLAT": 32.871105, "INTPTLON": -116.4246869, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -116.411133, 32.861132 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 970, "felt:has_geometry": true, "felt:h3_index": 644747481633020677, "STATEFP": 6, "PLACEFP": 37582, "PLACENS": 2408455, "GEOID": 637582, "NAME": "Julian", "NAMELSAD": "Julian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20424527, "AWATER": 0, "INTPTLAT": 33.0735017, "INTPTLON": -116.588883, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -116.586914, 33.063924 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 586, "felt:has_geometry": true, "felt:h3_index": 644747483273028443, "STATEFP": 6, "PLACEFP": 7596, "PLACENS": 2407888, "GEOID": 607596, "NAME": "Borrego Springs", "NAMELSAD": "Borrego Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 112422778, "AWATER": 0, "INTPTLAT": 33.2409651, "INTPTLON": -116.3571189, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -116.345215, 33.229498 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1191, "felt:has_geometry": true, "felt:h3_index": 644747487865806163, "STATEFP": 6, "PLACEFP": 51392, "PLACENS": 2408926, "GEOID": 651392, "NAMELSAD": "Niland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1040220, "AWATER": 0, "INTPTLAT": 33.2387079, "INTPTLON": -115.5144396, "NAME": "Niland,Calipatria", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -115.510254, 33.229498 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 440, "felt:has_geometry": true, "felt:h3_index": 644747492481485891, "STATEFP": 6, "PLACEFP": 84606, "PLACENS": 2412239, "GEOID": 684606, "NAMELSAD": "Westmorland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1528294, "AWATER": 0, "INTPTLAT": 33.038922, "INTPTLON": -115.6223136, "NAME": "Westmorland,Brawley", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -115.620117, 33.045508 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1047, "felt:has_geometry": true, "felt:h3_index": 644747572466202214, "STATEFP": 6, "PLACEFP": 41166, "PLACENS": 2408599, "GEOID": 641166, "NAMELSAD": "Lemoore Station CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10965026, "AWATER": 0, "INTPTLAT": 36.2632777, "INTPTLON": -119.9048364, "NAME": "Lemoore Station,Stratford", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -119.904785, 36.261992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 519, "felt:has_geometry": true, "felt:h3_index": 644747574496057734, "STATEFP": 6, "PLACEFP": 2700, "PLACENS": 2407762, "GEOID": 602700, "NAMELSAD": "Armona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5317203, "AWATER": 0, "INTPTLAT": 36.3166068, "INTPTLON": -119.7053798, "NAME": "Armona,Grangeville,Hanford,Home Garden,Lemoore", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.315125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 986, "felt:has_geometry": true, "felt:h3_index": 644747577347466051, "STATEFP": 6, "PLACEFP": 38394, "PLACENS": 2408476, "GEOID": 638394, "NAME": "Kettleman City", "NAMELSAD": "Kettleman City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 546646, "AWATER": 0, "INTPTLAT": 36.0089852, "INTPTLON": -119.9628518, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -119.970703, 36.013561 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 363, "felt:has_geometry": true, "felt:h3_index": 644747577859302684, "STATEFP": 6, "PLACEFP": 16224, "PLACENS": 2410227, "GEOID": 616224, "NAMELSAD": "Corcoran city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19315232, "AWATER": 0, "INTPTLAT": 36.084057, "INTPTLON": -119.5612683, "NAME": "Corcoran,Waukena", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 36.084621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1029, "felt:has_geometry": true, "felt:h3_index": 644747580186125331, "STATEFP": 6, "PLACEFP": 40116, "PLACENS": 2408570, "GEOID": 640116, "NAMELSAD": "Lanare CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5232743, "AWATER": 0, "INTPTLAT": 36.4377234, "INTPTLON": -119.9321988, "NAME": "Lanare,Westside", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -119.926758, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 800, "felt:has_geometry": true, "felt:h3_index": 644747581565594317, "STATEFP": 6, "PLACEFP": 10816, "PLACENS": 2407954, "GEOID": 610816, "NAME": "Cantua Creek", "NAMELSAD": "Cantua Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832915, "AWATER": 0, "INTPTLAT": 36.5000453, "INTPTLON": -120.3163615, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -120.322266, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 801, "felt:has_geometry": true, "felt:h3_index": 644747581985458390, "STATEFP": 6, "PLACEFP": 11614, "PLACENS": 2407976, "GEOID": 611614, "NAME": "Caruthers", "NAMELSAD": "Caruthers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5238364, "AWATER": 0, "INTPTLAT": 36.5399071, "INTPTLON": -119.8450271, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -119.838867, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 291, "felt:has_geometry": true, "felt:h3_index": 644747584730061441, "STATEFP": 6, "PLACEFP": 36084, "PLACENS": 2410081, "GEOID": 636084, "NAME": "Huron", "NAMELSAD": "Huron city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4302328, "AWATER": 0, "INTPTLAT": 36.2042339, "INTPTLON": -120.0953108, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 36.208823 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1332, "felt:has_geometry": true, "felt:h3_index": 644747586678671960, "STATEFP": 6, "PLACEFP": 61096, "PLACENS": 2409186, "GEOID": 661096, "NAME": "Riverdale", "NAMELSAD": "Riverdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10164976, "AWATER": 0, "INTPTLAT": 36.4304021, "INTPTLON": -119.8671785, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -119.860840, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 406, "felt:has_geometry": true, "felt:h3_index": 644747588564558930, "STATEFP": 6, "PLACEFP": 23616, "PLACENS": 2410485, "GEOID": 623616, "NAMELSAD": "Farmersville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5860074, "AWATER": 0, "INTPTLAT": 36.3047394, "INTPTLON": -119.2086052, "NAME": "Farmersville,Linnell Camp,Hypericum,Tonyville,Exeter,Tooleville,East Tulare Villa,Lindsay", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.297418 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 176, "felt:has_geometry": true, "felt:h3_index": 644747589504949646, "STATEFP": 6, "PLACEFP": 82954, "PLACENS": 2412160, "GEOID": 682954, "NAMELSAD": "Visalia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 98720318, "AWATER": 51434, "INTPTLAT": 36.3280297, "INTPTLON": -119.3285195, "NAME": "Visalia,Goshen,Patterson Tract", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 36.332828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1045, "felt:has_geometry": true, "felt:h3_index": 644747590710743209, "STATEFP": 6, "PLACEFP": 41110, "PLACENS": 2408598, "GEOID": 641110, "NAMELSAD": "Lemon Cove CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3457953, "AWATER": 0, "INTPTLAT": 36.38088, "INTPTLON": -119.0284596, "NAME": "Lemon Cove,Lindcove", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 36.385913 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 957, "felt:has_geometry": true, "felt:h3_index": 644747591710840683, "STATEFP": 6, "PLACEFP": 36910, "PLACENS": 2408434, "GEOID": 636910, "NAMELSAD": "Ivanhoe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3392302, "AWATER": 0, "INTPTLAT": 36.3834389, "INTPTLON": -119.220088, "NAME": "Ivanhoe,Woodlake", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 36.385913 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1582, "felt:has_geometry": true, "felt:h3_index": 644747592708875594, "STATEFP": 6, "PLACEFP": 86482, "PLACENS": 2409628, "GEOID": 686482, "NAMELSAD": "Woodville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2584379, "AWATER": 0, "INTPTLAT": 36.0926804, "INTPTLON": -119.2012255, "NAME": "Woodville,Woodville Farm Labor Camp,Poplar-Cotton Center,Plainview", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.084621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1114, "felt:has_geometry": true, "felt:h3_index": 644747593825062285, "STATEFP": 6, "PLACEFP": 46223, "PLACENS": 2585433, "GEOID": 646223, "NAMELSAD": "Matheny CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1109244, "AWATER": 0, "INTPTLAT": 36.1706457, "INTPTLON": -119.3516084, "NAME": "Matheny,Tulare", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 36.173357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 812, "felt:has_geometry": true, "felt:h3_index": 644747595000689689, "STATEFP": 6, "PLACEFP": 22360, "PLACENS": 2585422, "GEOID": 622360, "NAMELSAD": "El Rancho CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55904, "AWATER": 0, "INTPTLAT": 36.2206835, "INTPTLON": -119.0683571, "NAME": "El Rancho,Strathmore", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -119.069824, 36.226550 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 460, "felt:has_geometry": true, "felt:h3_index": 644747597079579664, "STATEFP": 6, "PLACEFP": 38562, "PLACENS": 2411548, "GEOID": 638562, "NAMELSAD": "Kingsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9627176, "AWATER": 0, "INTPTLAT": 36.5251925, "INTPTLON": -119.5665645, "NAME": "Kingsburg,Selma,El Monte Mobile Village,Parlier,Delft Colony,London", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 459, "felt:has_geometry": true, "felt:h3_index": 644747598104416946, "STATEFP": 6, "PLACEFP": 25436, "PLACENS": 2410538, "GEOID": 625436, "NAMELSAD": "Fowler city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6924931, "AWATER": 0, "INTPTLAT": 36.6241197, "INTPTLON": -119.6746987, "NAME": "Fowler,Easton,Monmouth,Bowles", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -119.663086, 36.615528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 466, "felt:has_geometry": true, "felt:h3_index": 644747599237693969, "STATEFP": 6, "PLACEFP": 54008, "PLACENS": 2411327, "GEOID": 654008, "NAMELSAD": "Orange Cove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4640753, "AWATER": 0, "INTPTLAT": 36.6211449, "INTPTLON": -119.3187498, "NAME": "Orange Cove,Reedley", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 36.615528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 469, "felt:has_geometry": true, "felt:h3_index": 644747600295446035, "STATEFP": 6, "PLACEFP": 67056, "PLACENS": 2411811, "GEOID": 667056, "NAMELSAD": "Sanger city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14937115, "AWATER": 0, "INTPTLAT": 36.6989667, "INTPTLON": -119.5574831, "NAME": "Sanger,Minkler,Centerville,Del Rey", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 36.703660 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1495, "felt:has_geometry": true, "felt:h3_index": 644747601725891606, "STATEFP": 6, "PLACEFP": 80280, "PLACENS": 2409348, "GEOID": 680280, "NAMELSAD": "Traver CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1735180, "AWATER": 0, "INTPTLAT": 36.4541114, "INTPTLON": -119.4837296, "NAME": "Traver,West Goshen", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -119.487305, 36.456636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1038, "felt:has_geometry": true, "felt:h3_index": 644747602419724299, "STATEFP": 6, "PLACEFP": 40746, "PLACENS": 2408585, "GEOID": 640746, "NAMELSAD": "Laton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6545990, "AWATER": 0, "INTPTLAT": 36.4314103, "INTPTLON": -119.6975968, "NAME": "Laton,Hardwick", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -119.685059, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1154, "felt:has_geometry": true, "felt:h3_index": 644747603462808452, "STATEFP": 6, "PLACEFP": 48676, "PLACENS": 2585434, "GEOID": 648676, "NAMELSAD": "Monson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 523997, "AWATER": 0, "INTPTLAT": 36.4924201, "INTPTLON": -119.3361205, "NAME": "Monson,Dinuba,Yettem,Orosi,Sultana", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1081, "felt:has_geometry": true, "felt:h3_index": 644747612084539746, "STATEFP": 6, "PLACEFP": 44280, "PLACENS": 2408143, "GEOID": 644280, "NAME": "Lost Hills", "NAMELSAD": "Lost Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14378327, "AWATER": 30536, "INTPTLAT": 35.6327212, "INTPTLON": -119.6778893, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -119.685059, 35.621582 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 225, "felt:has_geometry": true, "felt:h3_index": 644747614544475188, "STATEFP": 6, "PLACEFP": 3302, "PLACENS": 2409764, "GEOID": 603302, "NAME": "Avenal", "NAMELSAD": "Avenal city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50459974, "AWATER": 0, "INTPTLAT": 36.0311072, "INTPTLON": -120.1161739, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 457, "felt:has_geometry": true, "felt:h3_index": 644747615712534694, "STATEFP": 6, "PLACEFP": 14274, "PLACENS": 2409495, "GEOID": 614274, "NAME": "Coalinga", "NAMELSAD": "Coalinga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17734580, "AWATER": 79727, "INTPTLAT": 36.1330557, "INTPTLON": -120.3390286, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -120.344238, 36.137875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 497, "felt:has_geometry": true, "felt:h3_index": 644747622956296557, "STATEFP": 6, "PLACEFP": 1010, "PLACENS": 2585402, "GEOID": 601010, "NAMELSAD": "Allensworth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8035085, "AWATER": 0, "INTPTLAT": 35.8498779, "INTPTLON": -119.389209, "NAME": "Allensworth,Delano", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -119.377441, 35.853440 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 500, "felt:has_geometry": true, "felt:h3_index": 644747623936866486, "STATEFP": 6, "PLACEFP": 1164, "PLACENS": 2407725, "GEOID": 601164, "NAME": "Alpaugh", "NAMELSAD": "Alpaugh CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1082836, "AWATER": 0, "INTPTLAT": 35.8890372, "INTPTLON": -119.4858089, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -119.487305, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 765, "felt:has_geometry": true, "felt:h3_index": 644747625667123280, "STATEFP": 6, "PLACEFP": 20438, "PLACENS": 2408701, "GEOID": 620438, "NAME": "Earlimart", "NAMELSAD": "Earlimart CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7519391, "AWATER": 0, "INTPTLAT": 35.8913541, "INTPTLON": -119.2720916, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1485, "felt:has_geometry": true, "felt:h3_index": 644747626384819344, "STATEFP": 6, "PLACEFP": 78750, "PLACENS": 2409325, "GEOID": 678750, "NAMELSAD": "Tipton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4471210, "AWATER": 0, "INTPTLAT": 36.0572328, "INTPTLON": -119.3135247, "NAME": "Tipton,Pixley,Teviston", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 36.049099 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 306, "felt:has_geometry": true, "felt:h3_index": 644747627426563821, "STATEFP": 6, "PLACEFP": 44826, "PLACENS": 2411062, "GEOID": 644826, "NAMELSAD": "McFarland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7875289, "AWATER": 0, "INTPTLAT": 35.6705643, "INTPTLON": -119.231681, "NAME": "McFarland,Wasco", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 969, "felt:has_geometry": true, "felt:h3_index": 644747629431316765, "STATEFP": 6, "PLACEFP": 37568, "PLACENS": 2805908, "GEOID": 637568, "NAMELSAD": "Jovista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260300, "AWATER": 0, "INTPTLAT": 35.7940141, "INTPTLON": -119.18957, "NAME": "Jovista,Richgrove,Rodriguez Camp", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -119.179688, 35.799994 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1496, "felt:has_geometry": true, "felt:h3_index": 644747653026284737, "STATEFP": 6, "PLACEFP": 80364, "PLACENS": 2583166, "GEOID": 680364, "NAME": "Tres Pinos", "NAMELSAD": "Tres Pinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9327895, "AWATER": 0, "INTPTLAT": 36.7903815, "INTPTLON": -121.3105643, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 445, "felt:has_geometry": true, "felt:h3_index": 644747654188651234, "STATEFP": 6, "PLACEFP": 34120, "PLACENS": 2410778, "GEOID": 634120, "NAMELSAD": "Hollister city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20622323, "AWATER": 0, "INTPTLAT": 36.8555992, "INTPTLON": -121.3985978, "NAME": "Hollister,Ridgemark", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 36.862043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 465, "felt:has_geometry": true, "felt:h3_index": 644747657149768426, "STATEFP": 6, "PLACEFP": 46828, "PLACENS": 2411078, "GEOID": 646828, "NAME": "Mendota", "NAMELSAD": "Mendota city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8788278, "AWATER": 8333, "INTPTLAT": 36.7575951, "INTPTLON": -120.3804737, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -120.388184, 36.756490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 458, "felt:has_geometry": true, "felt:h3_index": 644747660894821784, "STATEFP": 6, "PLACEFP": 24134, "PLACENS": 2410507, "GEOID": 624134, "NAME": "Firebaugh", "NAMELSAD": "Firebaugh city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9109030, "AWATER": 143103, "INTPTLAT": 36.8537446, "INTPTLON": -120.4537457, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 36.844461 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1483, "felt:has_geometry": true, "felt:h3_index": 644747662055020099, "STATEFP": 6, "PLACEFP": 78652, "PLACENS": 2583162, "GEOID": 678652, "NAME": "Three Rocks", "NAMELSAD": "Three Rocks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1941449, "AWATER": 0, "INTPTLAT": 36.5051483, "INTPTLON": -120.3935343, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -120.388184, 36.509636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1494, "felt:has_geometry": true, "felt:h3_index": 644747663648924314, "STATEFP": 6, "PLACEFP": 80266, "PLACENS": 2409347, "GEOID": 680266, "NAMELSAD": "Tranquillity CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1599152, "AWATER": 0, "INTPTLAT": 36.6480071, "INTPTLON": -120.2525415, "NAME": "Tranquillity,San Joaquin", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -120.256348, 36.650793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 198, "felt:has_geometry": true, "felt:h3_index": 644747665924608198, "STATEFP": 6, "PLACEFP": 44028, "PLACENS": 2410878, "GEOID": 644028, "NAME": "Los Banos", "NAMELSAD": "Los Banos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25891767, "AWATER": 320639, "INTPTLAT": 37.0631841, "INTPTLON": -120.8403045, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 37.055177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1534, "felt:has_geometry": true, "felt:h3_index": 644747666886413670, "STATEFP": 6, "PLACEFP": 83108, "PLACENS": 2583179, "GEOID": 683108, "NAMELSAD": "Volta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11318388, "AWATER": 165270, "INTPTLAT": 37.0823527, "INTPTLON": -120.9144798, "NAME": "Volta,Santa Nella", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 37.072710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 810, "felt:has_geometry": true, "felt:h3_index": 644747668223271726, "STATEFP": 6, "PLACEFP": 22286, "PLACENS": 2583007, "GEOID": 622286, "NAMELSAD": "El Nido CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8525668, "AWATER": 0, "INTPTLAT": 37.1323764, "INTPTLON": -120.4985513, "NAME": "El Nido,Dos Palos Y", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 37.125286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 86, "felt:has_geometry": true, "felt:h3_index": 644747672347326621, "STATEFP": 6, "PLACEFP": 19612, "PLACENS": 2410348, "GEOID": 619612, "NAMELSAD": "Dos Palos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3494393, "AWATER": 0, "INTPTLAT": 36.9854237, "INTPTLON": -120.6338446, "NAME": "Dos Palos,South Dos Palos", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 356, "felt:has_geometry": true, "felt:h3_index": 644747675028637091, "STATEFP": 6, "PLACEFP": 38520, "PLACENS": 2411544, "GEOID": 638520, "NAME": "King City", "NAMELSAD": "King City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9833874, "AWATER": 342510, "INTPTLAT": 36.2162833, "INTPTLON": -121.1319616, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 36.208823 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 293, "felt:has_geometry": true, "felt:h3_index": 644747675861780150, "STATEFP": 6, "PLACEFP": 30994, "PLACENS": 2410657, "GEOID": 630994, "NAME": "Greenfield", "NAMELSAD": "Greenfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7548415, "AWATER": 98210, "INTPTLAT": 36.3245614, "INTPTLON": -121.2426579, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 36.315125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1370, "felt:has_geometry": true, "felt:h3_index": 644747679034789924, "STATEFP": 6, "PLACEFP": 68140, "PLACENS": 2409261, "GEOID": 668140, "NAME": "San Lucas", "NAMELSAD": "San Lucas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1020818, "AWATER": 0, "INTPTLAT": 36.1283492, "INTPTLON": -121.0217318, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -121.025391, 36.120128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1271, "felt:has_geometry": true, "felt:h3_index": 644747679985378393, "STATEFP": 6, "PLACEFP": 57070, "PLACENS": 2583113, "GEOID": 657070, "NAME": "Pine Canyon", "NAMELSAD": "Pine Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8639261, "AWATER": 2301, "INTPTLAT": 36.1720725, "INTPTLON": -121.1430132, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 36.173357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 292, "felt:has_geometry": true, "felt:h3_index": 644747682967826784, "STATEFP": 6, "PLACEFP": 30392, "PLACENS": 2410617, "GEOID": 630392, "NAME": "Gonzales", "NAMELSAD": "Gonzales city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4955568, "AWATER": 98218, "INTPTLAT": 36.505979, "INTPTLON": -121.442918, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 36.509636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1430, "felt:has_geometry": true, "felt:h3_index": 644747684091471524, "STATEFP": 6, "PLACEFP": 73612, "PLACENS": 2408789, "GEOID": 673612, "NAMELSAD": "Spreckels CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 316377, "AWATER": 0, "INTPTLAT": 36.6247156, "INTPTLON": -121.646487, "NAME": "Spreckels,Chualar", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 36.615528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 311, "felt:has_geometry": true, "felt:h3_index": 644747689997471765, "STATEFP": 6, "PLACEFP": 72520, "PLACENS": 2411924, "GEOID": 672520, "NAME": "Soledad", "NAMELSAD": "Soledad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11551909, "AWATER": 492321, "INTPTLAT": 36.4345222, "INTPTLON": -121.31775879999999, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 948, "felt:has_geometry": true, "felt:h3_index": 644747731397256489, "STATEFP": 6, "PLACEFP": 36350, "PLACENS": 2408418, "GEOID": 636350, "NAME": "Independence", "NAMELSAD": "Independence CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12590232, "AWATER": 7190, "INTPTLAT": 36.8303101, "INTPTLON": -118.207855, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 36.826875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 563, "felt:has_geometry": true, "felt:h3_index": 644747734461914507, "STATEFP": 6, "PLACEFP": 6616, "PLACENS": 2407843, "GEOID": 606616, "NAME": "Big Pine", "NAMELSAD": "Big Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7636605, "AWATER": 4831, "INTPTLAT": 37.1655071, "INTPTLON": -118.2962618, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 337, "felt:has_geometry": true, "felt:h3_index": 644747737800824493, "STATEFP": 6, "PLACEFP": 6798, "PLACENS": 2409852, "GEOID": 606798, "NAMELSAD": "Bishop city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4827233, "AWATER": 122068, "INTPTLAT": 37.3663813, "INTPTLON": -118.3958082, "NAME": "Bishop,Wilkerson", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1611, "felt:has_geometry": true, "felt:h3_index": 644747744295196939, "STATEFP": 6, "PLACEFP": 78638, "PLACENS": 2409316, "GEOID": 678638, "NAME": "Three Rivers", "NAMELSAD": "Three Rivers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80245468, "AWATER": 268932, "INTPTLAT": 36.440041, "INTPTLON": -118.8802803, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1407, "felt:has_geometry": true, "felt:h3_index": 644747747066560809, "STATEFP": 6, "PLACEFP": 71932, "PLACENS": 2585449, "GEOID": 671932, "NAME": "Silver City", "NAMELSAD": "Silver City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 302352, "AWATER": 0, "INTPTLAT": 36.4663058, "INTPTLON": -118.6495083, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 36.456636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1389, "felt:has_geometry": true, "felt:h3_index": 644747747354917429, "STATEFP": 6, "PLACEFP": 70966, "PLACENS": 2585447, "GEOID": 670966, "NAMELSAD": "Sequoia Crest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646709, "AWATER": 0, "INTPTLAT": 36.1858823, "INTPTLON": -118.6256351, "NAME": "Sequoia Crest,Camp Nelson,Pierpoint,Cedar Slope", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -118.630371, 36.191092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 915, "felt:has_geometry": true, "felt:h3_index": 644747751962263715, "STATEFP": 6, "PLACEFP": 32324, "PLACENS": 2585423, "GEOID": 632324, "NAME": "Hartland", "NAMELSAD": "Hartland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 599099, "AWATER": 0, "INTPTLAT": 36.6538667, "INTPTLON": -118.9588124, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 36.650793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1435, "felt:has_geometry": true, "felt:h3_index": 644747752687112604, "STATEFP": 6, "PLACEFP": 73794, "PLACENS": 2408799, "GEOID": 673794, "NAME": "Squaw Valley", "NAMELSAD": "Squaw Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 164758384, "AWATER": 142813, "INTPTLAT": 36.719141, "INTPTLON": -119.2026773, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.721274 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1574, "felt:has_geometry": true, "felt:h3_index": 644747755709400800, "STATEFP": 6, "PLACEFP": 85866, "PLACENS": 2585464, "GEOID": 685866, "NAME": "Wilsonia", "NAMELSAD": "Wilsonia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 705824, "AWATER": 0, "INTPTLAT": 36.734598, "INTPTLON": -118.9558466, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 36.738884 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1391, "felt:has_geometry": true, "felt:h3_index": 644747757604606379, "STATEFP": 6, "PLACEFP": 71078, "PLACENS": 2585448, "GEOID": 671078, "NAMELSAD": "Seville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 712368, "AWATER": 0, "INTPTLAT": 36.4835333, "INTPTLON": -119.2258679, "NAME": "Seville,East Orosi,Cutler", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 36.474307 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1073, "felt:has_geometry": true, "felt:h3_index": 644747764256103088, "STATEFP": 6, "PLACEFP": 42580, "PLACENS": 2408123, "GEOID": 642580, "NAME": "Lone Pine", "NAMELSAD": "Lone Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49299705, "AWATER": 468049, "INTPTLAT": 36.5744471, "INTPTLON": -118.0806101, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 36.580247 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 639, "felt:has_geometry": true, "felt:h3_index": 644747764802586790, "STATEFP": 6, "PLACEFP": 11600, "PLACENS": 2407973, "GEOID": 611600, "NAME": "Cartago", "NAMELSAD": "Cartago CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3028826, "AWATER": 7192, "INTPTLAT": 36.3052395, "INTPTLON": -118.0271663, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -118.015137, 36.297418 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 684, "felt:has_geometry": true, "felt:h3_index": 644747777473030838, "STATEFP": 6, "PLACEFP": 14288, "PLACENS": 2628719, "GEOID": 614288, "NAMELSAD": "Coarsegold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44620400, "AWATER": 172119, "INTPTLAT": 37.2391838, "INTPTLON": -119.7009723, "NAME": "Coarsegold,Yosemite Lakes", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 536, "felt:has_geometry": true, "felt:h3_index": 644747779608432652, "STATEFP": 6, "PLACEFP": 4198, "PLACENS": 2628709, "GEOID": 604198, "NAMELSAD": "Bass Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4874800, "AWATER": 1570518, "INTPTLAT": 37.3272815, "INTPTLON": -119.565326, "NAME": "Bass Lake,Oakhurst", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1192, "felt:has_geometry": true, "felt:h3_index": 644747780594680515, "STATEFP": 6, "PLACEFP": 51470, "PLACENS": 2628765, "GEOID": 651470, "NAMELSAD": "Nipinnawasee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7990118, "AWATER": 0, "INTPTLAT": 37.4030526, "INTPTLON": -119.729269, "NAME": "Nipinnawasee,Ahwahnee", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -119.729004, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1200, "felt:has_geometry": true, "felt:h3_index": 644747784219067529, "STATEFP": 6, "PLACEFP": 51868, "PLACENS": 2804436, "GEOID": 651868, "NAME": "North Fork", "NAMELSAD": "North Fork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83490248, "AWATER": 112922, "INTPTLAT": 37.2346317, "INTPTLON": -119.5210379, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -119.509277, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 543, "felt:has_geometry": true, "felt:h3_index": 644747786170317588, "STATEFP": 6, "PLACEFP": 4730, "PLACENS": 2582941, "GEOID": 604730, "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6318984, "AWATER": 3006, "INTPTLAT": 37.5747403, "INTPTLON": -120.1360978, "NAME": "Bear Valley,Mt. Bullion", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -120.124512, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1135, "felt:has_geometry": true, "felt:h3_index": 644747788719416102, "STATEFP": 6, "PLACEFP": 47374, "PLACENS": 2583080, "GEOID": 647374, "NAME": "Midpines", "NAMELSAD": "Midpines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11289069, "AWATER": 8983, "INTPTLAT": 37.5534113, "INTPTLON": -119.928791, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -119.926758, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 893, "felt:has_geometry": true, "felt:h3_index": 644747789362004803, "STATEFP": 6, "PLACEFP": 30900, "PLACENS": 2583028, "GEOID": 630900, "NAME": "Greeley Hill", "NAMELSAD": "Greeley Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61850758, "AWATER": 119779, "INTPTLAT": 37.7570432, "INTPTLON": -120.1307588, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -120.124512, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 651, "felt:has_geometry": true, "felt:h3_index": 644747790500096218, "STATEFP": 6, "PLACEFP": 12062, "PLACENS": 2582968, "GEOID": 612062, "NAME": "Catheys Valley", "NAMELSAD": "Catheys Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61148098, "AWATER": 148425, "INTPTLAT": 37.4277063, "INTPTLON": -120.0960378, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 940, "felt:has_geometry": true, "felt:h3_index": 644747791803659437, "STATEFP": 6, "PLACEFP": 34708, "PLACENS": 2628740, "GEOID": 634708, "NAME": "Hornitos", "NAMELSAD": "Hornitos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2989557, "AWATER": 0, "INTPTLAT": 37.5025245, "INTPTLON": -120.238859, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 583, "felt:has_geometry": true, "felt:h3_index": 644747792508084312, "STATEFP": 6, "PLACEFP": 7525, "PLACENS": 2407885, "GEOID": 607525, "NAMELSAD": "Bootjack CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9924991, "AWATER": 80795, "INTPTLAT": 37.4740444, "INTPTLON": -119.8837998, "NAME": "Bootjack,Mariposa", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -119.882812, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 561, "felt:has_geometry": true, "felt:h3_index": 644747799558897750, "STATEFP": 6, "PLACEFP": 6518, "PLACENS": 2628711, "GEOID": 606518, "NAME": "Big Creek", "NAMELSAD": "Big Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1191495, "AWATER": 0, "INTPTLAT": 37.2035645, "INTPTLON": -119.2484886, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -119.245605, 37.195331 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 845, "felt:has_geometry": true, "felt:h3_index": 644747804294008897, "STATEFP": 6, "PLACEFP": 24792, "PLACENS": 2830231, "GEOID": 624792, "NAMELSAD": "Foresta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 958026, "AWATER": 0, "INTPTLAT": 37.6987793, "INTPTLON": -119.7482741, "NAME": "Foresta,El Portal", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -119.750977, 37.701207 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1591, "felt:has_geometry": true, "felt:h3_index": 644747807012362256, "STATEFP": 6, "PLACEFP": 86912, "PLACENS": 2409638, "GEOID": 686912, "NAME": "Yosemite Valley", "NAMELSAD": "Yosemite Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5330276, "AWATER": 158738, "INTPTLAT": 37.7425227, "INTPTLON": -119.577626, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -119.575195, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1545, "felt:has_geometry": true, "felt:h3_index": 644747807589428272, "STATEFP": 6, "PLACEFP": 83766, "PLACENS": 2583183, "GEOID": 683766, "NAMELSAD": "Wawona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2786953, "AWATER": 0, "INTPTLAT": 37.5446736, "INTPTLON": -119.6386738, "NAME": "Wawona,Fish Camp", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -119.641113, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1592, "felt:has_geometry": true, "felt:h3_index": 644747808967637762, "STATEFP": 6, "PLACEFP": 86916, "PLACENS": 2813254, "GEOID": 686916, "NAME": "Yosemite West", "NAMELSAD": "Yosemite West CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 708714, "AWATER": 0, "INTPTLAT": 37.6481932, "INTPTLON": -119.7182169, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 37.649034 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1224, "felt:has_geometry": true, "felt:h3_index": 644747812644395803, "STATEFP": 6, "PLACEFP": 53505, "PLACENS": 2583103, "GEOID": 653505, "NAME": "Old Fig Garden", "NAMELSAD": "Old Fig Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4317800, "AWATER": 0, "INTPTLAT": 36.7988446, "INTPTLON": -119.8051281, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1250, "felt:has_geometry": true, "felt:h3_index": 644747812842957570, "STATEFP": 6, "PLACEFP": 55842, "PLACENS": 2409036, "GEOID": 655842, "NAMELSAD": "Parkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1804074, "AWATER": 0, "INTPTLAT": 36.929270699999999, "INTPTLON": -120.04819, "NAME": "Parkwood,Madera,Parksdale,La Vina", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -120.036621, 36.932330 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 863, "felt:has_geometry": true, "felt:h3_index": 644747814374030657, "STATEFP": 6, "PLACEFP": 27014, "PLACENS": 2408265, "GEOID": 627014, "NAMELSAD": "Friant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239537, "AWATER": 130737, "INTPTLAT": 36.9840123, "INTPTLON": -119.7080595, "NAME": "Friant,Millerton,Fort Washington,Rolling Hills", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 578, "felt:has_geometry": true, "felt:h3_index": 644747815029937379, "STATEFP": 6, "PLACEFP": 7378, "PLACENS": 2805049, "GEOID": 607378, "NAMELSAD": "Bonadelle Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23343618, "AWATER": 0, "INTPTLAT": 36.9688065, "INTPTLON": -119.8927786, "NAME": "Bonadelle Ranchos,Madera Ranchos", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -119.882812, 36.967449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1559, "felt:has_geometry": true, "felt:h3_index": 644747816066885171, "STATEFP": 6, "PLACEFP": 84680, "PLACENS": 2628799, "GEOID": 684680, "NAMELSAD": "West Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4640398, "AWATER": 0, "INTPTLAT": 36.7055261, "INTPTLON": -119.8515482, "NAME": "West Park,Raisin City", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -119.838867, 36.703660 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 336, "felt:has_geometry": true, "felt:h3_index": 644747817176709852, "STATEFP": 6, "PLACEFP": 38226, "PLACENS": 2411536, "GEOID": 638226, "NAMELSAD": "Kerman city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8697690, "AWATER": 0, "INTPTLAT": 36.7250406, "INTPTLON": -120.0624734, "NAME": "Kerman,Biola", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 36.721274 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1470, "felt:has_geometry": true, "felt:h3_index": 644747818230253200, "STATEFP": 6, "PLACEFP": 77960, "PLACENS": 2583159, "GEOID": 677960, "NAMELSAD": "Tarpey Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2043494, "AWATER": 0, "INTPTLAT": 36.7940453, "INTPTLON": -119.7011976, "NAME": "Tarpey Village,Clovis,Calwa,Sunnyside,Malaga,Mayfair,Fresno", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 199, "felt:has_geometry": true, "felt:h3_index": 644747820390188740, "STATEFP": 6, "PLACEFP": 13294, "PLACENS": 2409459, "GEOID": 613294, "NAMELSAD": "Chowchilla city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28713589, "AWATER": 119504, "INTPTLAT": 37.1161043, "INTPTLON": -120.2419783, "NAME": "Chowchilla,Fairmead", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.107765 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1044, "felt:has_geometry": true, "felt:h3_index": 644747824191334660, "STATEFP": 6, "PLACEFP": 41040, "PLACENS": 2408590, "GEOID": 641040, "NAMELSAD": "Le Grand CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2953204, "AWATER": 0, "INTPTLAT": 37.2288146, "INTPTLON": -120.2540024, "NAME": "Le Grand,Planada", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -120.256348, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1099, "felt:has_geometry": true, "felt:h3_index": 644747827306739501, "STATEFP": 6, "PLACEFP": 45050, "PLACENS": 2408158, "GEOID": 645050, "NAME": "Madera Acres", "NAMELSAD": "Madera Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18560291, "AWATER": 0, "INTPTLAT": 37.0126384, "INTPTLON": -120.0797304, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 37.002553 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1394, "felt:has_geometry": true, "felt:h3_index": 644747832495626590, "STATEFP": 6, "PLACEFP": 71246, "PLACENS": 2408722, "GEOID": 671246, "NAMELSAD": "Shaver Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83623481, "AWATER": 5897217, "INTPTLAT": 37.0991842, "INTPTLON": -119.3256772, "NAME": "Shaver Lake,Auberry", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1185, "felt:has_geometry": true, "felt:h3_index": 644747846698677542, "STATEFP": 6, "PLACEFP": 51028, "PLACENS": 2583090, "GEOID": 651028, "NAME": "New Cuyama", "NAMELSAD": "New Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1637550, "AWATER": 0, "INTPTLAT": 34.9430572, "INTPTLON": -119.6820182, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -119.685059, 34.939985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 831, "felt:has_geometry": true, "felt:h3_index": 644747848426205812, "STATEFP": 6, "PLACEFP": 23812, "PLACENS": 2408207, "GEOID": 623812, "NAMELSAD": "Fellows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1801266, "AWATER": 0, "INTPTLAT": 35.1779287, "INTPTLON": -119.5472109, "NAME": "Fellows,Taft,Ford City,Taft Heights,South Taft,Maricopa", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 736, "felt:has_geometry": true, "felt:h3_index": 644747849762672988, "STATEFP": 6, "PLACEFP": 18926, "PLACENS": 2408660, "GEOID": 618926, "NAME": "Derby Acres", "NAMELSAD": "Derby Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9274814, "AWATER": 0, "INTPTLAT": 35.2440253, "INTPTLON": -119.603833, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -119.597168, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 721, "felt:has_geometry": true, "felt:h3_index": 644747850852946089, "STATEFP": 6, "PLACEFP": 17727, "PLACENS": 2582989, "GEOID": 617727, "NAME": "Cuyama", "NAMELSAD": "Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1174244, "AWATER": 11429, "INTPTLAT": 34.9310567, "INTPTLON": -119.6148797, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -119.619141, 34.921971 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 762, "felt:has_geometry": true, "felt:h3_index": 644747864549918555, "STATEFP": 6, "PLACEFP": 20284, "PLACENS": 2408697, "GEOID": 620284, "NAME": "Dustin Acres", "NAMELSAD": "Dustin Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9521683, "AWATER": 0, "INTPTLAT": 35.2159286, "INTPTLON": -119.3749872, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -119.377441, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 896, "felt:has_geometry": true, "felt:h3_index": 644747865589081875, "STATEFP": 6, "PLACEFP": 30987, "PLACENS": 2628815, "GEOID": 630987, "NAMELSAD": "Greenfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3433778, "AWATER": 0, "INTPTLAT": 35.269489, "INTPTLON": -119.0094914, "NAME": "Greenfield,Pumpkin Center,Weedpatch,El Adobe", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1225, "felt:has_geometry": true, "felt:h3_index": 644747867351624216, "STATEFP": 6, "PLACEFP": 53574, "PLACENS": 2804424, "GEOID": 653574, "NAMELSAD": "Old River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2550660, "AWATER": 0, "INTPTLAT": 35.2671232, "INTPTLON": -119.1055226, "NAME": "Old River,Lakeside", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1131, "felt:has_geometry": true, "felt:h3_index": 644747869765632337, "STATEFP": 6, "PLACEFP": 47164, "PLACENS": 2408825, "GEOID": 647164, "NAME": "Mettler", "NAMELSAD": "Mettler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 602290, "AWATER": 0, "INTPTLAT": 35.0635633, "INTPTLON": -118.9729799, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.065973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 608, "felt:has_geometry": true, "felt:h3_index": 644747872724656994, "STATEFP": 6, "PLACEFP": 9332, "PLACENS": 2407932, "GEOID": 609332, "NAME": "Buttonwillow", "NAMELSAD": "Buttonwillow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17941128, "AWATER": 0, "INTPTLAT": 35.4092286, "INTPTLON": -119.4406682, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 35.406961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1132, "felt:has_geometry": true, "felt:h3_index": 644747874819988396, "STATEFP": 6, "PLACEFP": 47192, "PLACENS": 2629763, "GEOID": 647192, "NAMELSAD": "Mexican Colony CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82312, "AWATER": 0, "INTPTLAT": 35.4689297, "INTPTLON": -119.2687123, "NAME": "Mexican Colony,Cherokee Strip,Smith Corner", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 35.460670 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1515, "felt:has_geometry": true, "felt:h3_index": 644747877064181579, "STATEFP": 6, "PLACEFP": 81722, "PLACENS": 2409395, "GEOID": 681722, "NAME": "Valley Acres", "NAMELSAD": "Valley Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10677289, "AWATER": 0, "INTPTLAT": 35.2086679, "INTPTLON": -119.4106505, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -119.399414, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1096, "felt:has_geometry": true, "felt:h3_index": 644747878039075036, "STATEFP": 6, "PLACEFP": 44924, "PLACENS": 2408203, "GEOID": 644924, "NAME": "McKittrick", "NAMELSAD": "McKittrick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778294, "AWATER": 0, "INTPTLAT": 35.2980277, "INTPTLON": -119.6249215, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -119.619141, 35.299435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1439, "felt:has_geometry": true, "felt:h3_index": 644747878718695588, "STATEFP": 6, "PLACEFP": 74021, "PLACENS": 2804431, "GEOID": 674021, "NAMELSAD": "Stebbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2588072, "AWATER": 0, "INTPTLAT": 35.4056497, "INTPTLON": -119.3141782, "NAME": "Stebbins,Tupman", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 35.406961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 767, "felt:has_geometry": true, "felt:h3_index": 644747884789663564, "STATEFP": 6, "PLACEFP": 20574, "PLACENS": 2813349, "GEOID": 620574, "NAMELSAD": "Eastern Goleta Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42981068, "AWATER": 755520, "INTPTLAT": 34.4439133, "INTPTLON": -119.7854766, "NAME": "Eastern Goleta Valley,Mission Canyon,Goleta,University of California-Santa Barbara,Isla Vista", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -119.772949, 34.434098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 872, "felt:has_geometry": true, "felt:h3_index": 644747894815397417, "STATEFP": 6, "PLACEFP": 29070, "PLACENS": 2583023, "GEOID": 629070, "NAMELSAD": "Garey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3275825, "AWATER": 9827, "INTPTLAT": 34.8858212, "INTPTLON": -120.3137504, "NAME": "Garey,Sisquoc", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -120.300293, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1275, "felt:has_geometry": true, "felt:h3_index": 644747899956521396, "STATEFP": 6, "PLACEFP": 57240, "PLACENS": 2409069, "GEOID": 657240, "NAME": "Pine Mountain Club", "NAMELSAD": "Pine Mountain Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43647394, "AWATER": 16918, "INTPTLAT": 34.8408949, "INTPTLON": -119.1685406, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -119.157715, 34.831841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 652, "felt:has_geometry": true, "felt:h3_index": 644747915418359645, "STATEFP": 6, "PLACEFP": 12132, "PLACENS": 2407994, "GEOID": 612132, "NAME": "Cayucos", "NAMELSAD": "Cayucos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8028952, "AWATER": 2418782, "INTPTLAT": 35.4395808, "INTPTLON": -120.8898281, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 35.442771 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 621, "felt:has_geometry": true, "felt:h3_index": 644747916666027178, "STATEFP": 6, "PLACEFP": 10074, "PLACENS": 2407941, "GEOID": 610074, "NAME": "Cambria", "NAMELSAD": "Cambria CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21803724, "AWATER": 0, "INTPTLAT": 35.5520688, "INTPTLON": -121.0841373, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -121.091309, 35.550105 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 453, "felt:has_geometry": true, "felt:h3_index": 644747917244440605, "STATEFP": 6, "PLACEFP": 22300, "PLACENS": 2410415, "GEOID": 622300, "NAMELSAD": "El Paso de Robles (Paso Robles) city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51579271, "AWATER": 29864, "INTPTLAT": 35.6285131, "INTPTLON": -120.6503559, "NAME": "El Paso de Robles (Paso Robles),Templeton", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 35.621582 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1017, "felt:has_geometry": true, "felt:h3_index": 644747918461971753, "STATEFP": 6, "PLACEFP": 39670, "PLACENS": 2408546, "GEOID": 639670, "NAME": "Lake Nacimiento", "NAMELSAD": "Lake Nacimiento CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27172014, "AWATER": 60669, "INTPTLAT": 35.730962, "INTPTLON": -120.8695164, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -120.871582, 35.728677 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 454, "felt:has_geometry": true, "felt:h3_index": 644747919127909449, "STATEFP": 6, "PLACEFP": 49362, "PLACENS": 2411169, "GEOID": 649362, "NAMELSAD": "Morro Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13826501, "AWATER": 12914764, "INTPTLAT": 35.3667732, "INTPTLON": -120.8682895, "NAME": "Morro Bay,Los Osos", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -120.871582, 35.371135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 375, "felt:has_geometry": true, "felt:h3_index": 644747921741987202, "STATEFP": 6, "PLACEFP": 3064, "PLACENS": 2409745, "GEOID": 603064, "NAMELSAD": "Atascadero city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67524872, "AWATER": 161112, "INTPTLAT": 35.4857179, "INTPTLON": -120.687942, "NAME": "Atascadero,Garden Farms,Santa Margarita", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 35.478565 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1066, "felt:has_geometry": true, "felt:h3_index": 644747925786418421, "STATEFP": 6, "PLACEFP": 42146, "PLACENS": 2583058, "GEOID": 642146, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28157116, "AWATER": 86923, "INTPTLAT": 35.9400827, "INTPTLON": -121.078282, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 35.942436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 852, "felt:has_geometry": true, "felt:h3_index": 644747926684172352, "STATEFP": 6, "PLACEFP": 25093, "PLACENS": 2805235, "GEOID": 625093, "NAME": "Fort Hunter Liggett", "NAMELSAD": "Fort Hunter Liggett CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7198561, "AWATER": 79767, "INTPTLAT": 35.992329, "INTPTLON": -121.2348698, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 35.995785 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1375, "felt:has_geometry": true, "felt:h3_index": 644747928544318214, "STATEFP": 6, "PLACEFP": 68434, "PLACENS": 2583127, "GEOID": 668434, "NAME": "San Simeon", "NAMELSAD": "San Simeon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2063264, "AWATER": 0, "INTPTLAT": 35.6182056, "INTPTLON": -121.137438, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 35.621582 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1214, "felt:has_geometry": true, "felt:h3_index": 644747930143155597, "STATEFP": 6, "PLACEFP": 53160, "PLACENS": 2583101, "GEOID": 653160, "NAME": "Oak Shores", "NAMELSAD": "Oak Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13178331, "AWATER": 2012447, "INTPTLAT": 35.7607589, "INTPTLON": -120.9828249, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 35.764343 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1392, "felt:has_geometry": true, "felt:h3_index": 644747932226194357, "STATEFP": 6, "PLACEFP": 71134, "PLACENS": 2408721, "GEOID": 671134, "NAME": "Shandon", "NAMELSAD": "Shandon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639224, "AWATER": 113009, "INTPTLAT": 35.6536085, "INTPTLON": -120.3831476, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -120.388184, 35.657296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1568, "felt:has_geometry": true, "felt:h3_index": 644747933888473602, "STATEFP": 6, "PLACEFP": 85222, "PLACENS": 2583185, "GEOID": 685222, "NAME": "Whitley Gardens", "NAMELSAD": "Whitley Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3396918, "AWATER": 28851, "INTPTLAT": 35.6563222, "INTPTLON": -120.5081122, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 35.657296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 713, "felt:has_geometry": true, "felt:h3_index": 644747937433283797, "STATEFP": 6, "PLACEFP": 17232, "PLACENS": 2628724, "GEOID": 617232, "NAME": "Creston", "NAMELSAD": "Creston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1460395, "AWATER": 12359, "INTPTLAT": 35.5170972, "INTPTLON": -120.518136, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -120.520020, 35.514343 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1366, "felt:has_geometry": true, "felt:h3_index": 644747941889770099, "STATEFP": 6, "PLACEFP": 64476, "PLACENS": 2409249, "GEOID": 664476, "NAME": "San Ardo", "NAMELSAD": "San Ardo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1163657, "AWATER": 0, "INTPTLAT": 36.023699, "INTPTLON": -120.9073068, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 36.013561 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1373, "felt:has_geometry": true, "felt:h3_index": 644747944890350233, "STATEFP": 6, "PLACEFP": 68266, "PLACENS": 2409265, "GEOID": 668266, "NAME": "San Miguel", "NAMELSAD": "San Miguel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350219, "AWATER": 0, "INTPTLAT": 35.753402, "INTPTLON": -120.6923925, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 35.746512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 591, "felt:has_geometry": true, "felt:h3_index": 644747946277486941, "STATEFP": 6, "PLACEFP": 7974, "PLACENS": 2407899, "GEOID": 607974, "NAME": "Bradley", "NAMELSAD": "Bradley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 222711, "AWATER": 0, "INTPTLAT": 35.8628398, "INTPTLON": -120.8042676, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 35.853440 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 789, "felt:has_geometry": true, "felt:h3_index": 644747967039661315, "STATEFP": 6, "PLACEFP": 21565, "PLACENS": 2583005, "GEOID": 621565, "NAME": "Edna", "NAMELSAD": "Edna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3158448, "AWATER": 0, "INTPTLAT": 35.2107858, "INTPTLON": -120.6059679, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 455, "felt:has_geometry": true, "felt:h3_index": 644747967536964293, "STATEFP": 6, "PLACEFP": 68154, "PLACENS": 2411796, "GEOID": 668154, "NAMELSAD": "San Luis Obispo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34883862, "AWATER": 380513, "INTPTLAT": 35.2661952, "INTPTLON": -120.6684376, "NAME": "San Luis Obispo,California Polytechnic State University,Los Ranchos", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1193, "felt:has_geometry": true, "felt:h3_index": 644747970713575779, "STATEFP": 6, "PLACEFP": 51476, "PLACENS": 2408927, "GEOID": 651476, "NAMELSAD": "Nipomo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39044101, "AWATER": 985, "INTPTLAT": 35.0306599, "INTPTLON": -120.4977565, "NAME": "Nipomo,Los Berros,Blacklake,Callender,Woodlands", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 377, "felt:has_geometry": true, "felt:h3_index": 644747971776234794, "STATEFP": 6, "PLACEFP": 57414, "PLACENS": 2411429, "GEOID": 657414, "NAMELSAD": "Pismo Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9057591, "AWATER": 25582378, "INTPTLAT": 35.1531734, "INTPTLON": -120.6738743, "NAME": "Pismo Beach,Avila Beach,Grover Beach,Arroyo Grande,Oceano", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 35.155846 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1013, "felt:has_geometry": true, "felt:h3_index": 644747983533164040, "STATEFP": 6, "PLACEFP": 39570, "PLACENS": 2408538, "GEOID": 639570, "NAMELSAD": "Lake Isabella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56239883, "AWATER": 1098346, "INTPTLAT": 35.6370977, "INTPTLON": -118.4826097, "NAME": "Lake Isabella,Mountain Mesa,Squirrel Mountain Valley,Bodfish", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 879, "felt:has_geometry": true, "felt:h3_index": 644747984836650157, "STATEFP": 6, "PLACEFP": 30126, "PLACENS": 2804407, "GEOID": 630126, "NAMELSAD": "Glennville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4889260, "AWATER": 0, "INTPTLAT": 35.7241937, "INTPTLON": -118.7152172, "NAME": "Glennville,Alta Sierra", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -118.718262, 35.728677 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1548, "felt:has_geometry": true, "felt:h3_index": 644747986326460268, "STATEFP": 6, "PLACEFP": 83948, "PLACENS": 2409540, "GEOID": 683948, "NAMELSAD": "Weldon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69057891, "AWATER": 391674, "INTPTLAT": 35.6441026, "INTPTLON": -118.3090882, "NAME": "Weldon,Onyx", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1578, "felt:has_geometry": true, "felt:h3_index": 644747987398547217, "STATEFP": 6, "PLACEFP": 86174, "PLACENS": 2409619, "GEOID": 686174, "NAMELSAD": "Wofford Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16579394, "AWATER": 460, "INTPTLAT": 35.714951, "INTPTLON": -118.4726643, "NAME": "Wofford Heights,Kernville", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 35.710838 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 207, "felt:has_geometry": true, "felt:h3_index": 644747993372731018, "STATEFP": 6, "PLACEFP": 58240, "PLACENS": 2411470, "GEOID": 658240, "NAMELSAD": "Porterville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48294868, "AWATER": 141831, "INTPTLAT": 36.063542, "INTPTLON": -119.0336003, "NAME": "Porterville,East Porterville,Terra Bella", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 36.066862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1434, "felt:has_geometry": true, "felt:h3_index": 644747995392888155, "STATEFP": 6, "PLACEFP": 73710, "PLACENS": 2408798, "GEOID": 673710, "NAME": "Springville", "NAMELSAD": "Springville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3933608, "AWATER": 35439, "INTPTLAT": 36.1208672, "INTPTLON": -118.822825, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -118.828125, 36.120128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1584, "felt:has_geometry": true, "felt:h3_index": 644747997053888913, "STATEFP": 6, "PLACEFP": 86496, "PLACENS": 2804433, "GEOID": 686496, "NAME": "Woody", "NAMELSAD": "Woody CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10453539, "AWATER": 0, "INTPTLAT": 35.7081483, "INTPTLON": -118.8143965, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -118.806152, 35.710838 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 759, "felt:has_geometry": true, "felt:h3_index": 644747997624067506, "STATEFP": 6, "PLACEFP": 20032, "PLACENS": 2408692, "GEOID": 620032, "NAME": "Ducor", "NAMELSAD": "Ducor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1442359, "AWATER": 0, "INTPTLAT": 35.892701, "INTPTLON": -119.0470096, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -119.047852, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 612, "felt:has_geometry": true, "felt:h3_index": 644747998616816278, "STATEFP": 6, "PLACEFP": 9822, "PLACENS": 2585404, "GEOID": 609822, "NAMELSAD": "California Hot Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2334885, "AWATER": 0, "INTPTLAT": 35.8875684, "INTPTLON": -118.6550221, "NAME": "California Hot Springs,Pine Flat,Idlewild,Posey,McClenney Tract,Poso Park,Sugarloaf Saw Mill,Sugarloaf Village,Panorama Heights", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1257, "felt:has_geometry": true, "felt:h3_index": 644748003553121640, "STATEFP": 6, "PLACEFP": 56294, "PLACENS": 2409043, "GEOID": 656294, "NAME": "Pearsonville", "NAMELSAD": "Pearsonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10648134, "AWATER": 210748, "INTPTLAT": 35.8229451, "INTPTLON": -117.87825, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 670, "felt:has_geometry": true, "felt:h3_index": 644748007264425394, "STATEFP": 6, "PLACEFP": 13157, "PLACENS": 2408027, "GEOID": 613157, "NAMELSAD": "China Lake Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13491529, "AWATER": 2579, "INTPTLAT": 35.6400189, "INTPTLON": -117.7664577, "NAME": "China Lake Acres,Inyokern,Ridgecrest Heights", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1290, "felt:has_geometry": true, "felt:h3_index": 644748011080167693, "STATEFP": 6, "PLACEFP": 58134, "PLACENS": 2585440, "GEOID": 658134, "NAME": "Ponderosa", "NAMELSAD": "Ponderosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2099863, "AWATER": 9090, "INTPTLAT": 36.1046931, "INTPTLON": -118.5319148, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -118.520508, 36.102376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 979, "felt:has_geometry": true, "felt:h3_index": 644748016219490121, "STATEFP": 6, "PLACEFP": 38076, "PLACENS": 2585427, "GEOID": 638076, "NAME": "Kennedy Meadows", "NAMELSAD": "Kennedy Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15080914, "AWATER": 0, "INTPTLAT": 36.0076393, "INTPTLON": -118.1099468, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -118.103027, 36.013561 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 975, "felt:has_geometry": true, "felt:h3_index": 644748017925478132, "STATEFP": 6, "PLACEFP": 37946, "PLACENS": 2408467, "GEOID": 637946, "NAMELSAD": "Keene CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24459682, "AWATER": 13903, "INTPTLAT": 35.2317801, "INTPTLON": -118.6130668, "NAME": "Keene,Bear Valley Springs", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 35.227672 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 787, "felt:has_geometry": true, "felt:h3_index": 644748019120552274, "STATEFP": 6, "PLACEFP": 21544, "PLACENS": 2804117, "GEOID": 621544, "NAMELSAD": "Edison CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2621330, "AWATER": 0, "INTPTLAT": 35.347313, "INTPTLON": -118.8698256, "NAME": "Edison,Edmundson Acres,Di Giorgio,Lamont", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 35.353216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1437, "felt:has_geometry": true, "felt:h3_index": 644748022420525610, "STATEFP": 6, "PLACEFP": 73868, "PLACENS": 2408801, "GEOID": 673868, "NAME": "Stallion Springs", "NAMELSAD": "Stallion Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35163160, "AWATER": 63046, "INTPTLAT": 35.0920157, "INTPTLON": -118.6576491, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 35.083956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 283, "felt:has_geometry": true, "felt:h3_index": 644748023430717729, "STATEFP": 6, "PLACEFP": 2924, "PLACENS": 2409738, "GEOID": 602924, "NAME": "Arvin", "NAMELSAD": "Arvin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12482061, "AWATER": 0, "INTPTLAT": 35.1943611, "INTPTLON": -118.8305687, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -118.828125, 35.191767 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 285, "felt:has_geometry": true, "felt:h3_index": 644748024436175472, "STATEFP": 6, "PLACEFP": 78092, "PLACENS": 2412041, "GEOID": 678092, "NAMELSAD": "Tehachapi city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26563140, "AWATER": 250130, "INTPTLAT": 35.1429585, "INTPTLON": -118.4460356, "NAME": "Tehachapi,Golden Hills,Mountain Meadows", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -118.432617, 35.137879 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 927, "felt:has_geometry": true, "felt:h3_index": 644748030809134761, "STATEFP": 6, "PLACEFP": 33689, "PLACENS": 2804409, "GEOID": 633689, "NAMELSAD": "Hillcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3569985, "AWATER": 0, "INTPTLAT": 35.3789699, "INTPTLON": -118.9578535, "NAME": "Hillcrest,La Cresta,East Bakersfield,Cottonwood,Potomac Park,Oildale,Bakersfield Country Club,East Niles,Goodmanville,Rivergrove,Rexland Acres,Casa Loma,Bakersfield,Old Stine,Olde Stockdale,Benton Park,Fairfax,Fuller Acres", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.371135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 321, "felt:has_geometry": true, "felt:h3_index": 644748031996254085, "STATEFP": 6, "PLACEFP": 71106, "PLACENS": 2411873, "GEOID": 671106, "NAMELSAD": "Shafter city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 100221605, "AWATER": 0, "INTPTLAT": 35.4794212, "INTPTLON": -119.2012851, "NAME": "Shafter,Rosedale,Greenacres", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 35.478565 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1469, "felt:has_geometry": true, "felt:h3_index": 644748033572608050, "STATEFP": 6, "PLACEFP": 77934, "PLACENS": 2804432, "GEOID": 677934, "NAMELSAD": "Tarina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11542573, "AWATER": 0, "INTPTLAT": 35.3807004, "INTPTLON": -118.8170881, "NAME": "Tarina,Choctaw Valley", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -118.806152, 35.371135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 331, "felt:has_geometry": true, "felt:h3_index": 644748247045125961, "STATEFP": 6, "PLACEFP": 50734, "PLACENS": 2411220, "GEOID": 650734, "NAME": "Needles", "NAMELSAD": "Needles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79196617, "AWATER": 1289442, "INTPTLAT": 34.8134263, "INTPTLON": -114.6266387, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -114.631348, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 564, "felt:has_geometry": true, "felt:h3_index": 644748481924483172, "STATEFP": 6, "PLACEFP": 6635, "PLACENS": 2407844, "GEOID": 606635, "NAME": "Big River", "NAMELSAD": "Big River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28050915, "AWATER": 1344398, "INTPTLAT": 34.1398232, "INTPTLON": -114.3620987, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -114.367676, 34.143635 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 572, "felt:has_geometry": true, "felt:h3_index": 644748484593699356, "STATEFP": 6, "PLACEFP": 7172, "PLACENS": 2407869, "GEOID": 607172, "NAME": "Bluewater", "NAMELSAD": "Bluewater CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2711814, "AWATER": 766390, "INTPTLAT": 34.1754314, "INTPTLON": -114.2649617, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -114.257812, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 738, "felt:has_geometry": true, "felt:h3_index": 644748511879802058, "STATEFP": 6, "PLACEFP": 18982, "PLACENS": 2582993, "GEOID": 618982, "NAME": "Desert Center", "NAMELSAD": "Desert Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799210, "AWATER": 0, "INTPTLAT": 33.7377986, "INTPTLON": -115.3666216, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -115.356445, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 280, "felt:has_geometry": true, "felt:h3_index": 644748516873606566, "STATEFP": 6, "PLACEFP": 7218, "PLACENS": 2409872, "GEOID": 607218, "NAME": "Blythe", "NAMELSAD": "Blythe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68645916, "AWATER": 2000747, "INTPTLAT": 33.6535205, "INTPTLON": -114.6218227, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -114.609375, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1129, "felt:has_geometry": true, "felt:h3_index": 644748522181272144, "STATEFP": 6, "PLACEFP": 47066, "PLACENS": 2583079, "GEOID": 647066, "NAME": "Mesa Verde", "NAMELSAD": "Mesa Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11139877, "AWATER": 0, "INTPTLAT": 33.5956999, "INTPTLON": -114.7316045, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -114.719238, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1297, "felt:has_geometry": true, "felt:h3_index": 645287510434742996, "STATEFP": 6, "PLACEFP": 58478, "PLACENS": 2628778, "GEOID": 658478, "NAMELSAD": "Potrero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8157788, "AWATER": 0, "INTPTLAT": 32.6130891, "INTPTLON": -116.6068146, "NAME": "Potrero,Campo", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -116.608887, 32.602362 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 589, "felt:has_geometry": true, "felt:h3_index": 645287511563970892, "STATEFP": 6, "PLACEFP": 7694, "PLACENS": 2582949, "GEOID": 607694, "NAMELSAD": "Boulevard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10115840, "AWATER": 0, "INTPTLAT": 32.6640221, "INTPTLON": -116.2896012, "NAME": "Boulevard,Jacumba", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -116.279297, 32.657876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1220, "felt:has_geometry": true, "felt:h3_index": 645287527842001954, "STATEFP": 6, "PLACEFP": 53378, "PLACENS": 2408976, "GEOID": 653378, "NAME": "Ocotillo", "NAMELSAD": "Ocotillo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22959357, "AWATER": 0, "INTPTLAT": 32.7431265, "INTPTLON": -116.0018794, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -115.993652, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1605, "felt:has_geometry": true, "felt:h3_index": 645287528099885134, "STATEFP": 6, "PLACEFP": 70798, "PLACENS": 2409303, "GEOID": 670798, "NAMELSAD": "Seeley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3660150, "AWATER": 78319, "INTPTLAT": 32.7904047, "INTPTLON": -115.685047, "NAME": "Seeley,El Centro Naval Air Facility", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -115.686035, 32.787275 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1606, "felt:has_geometry": true, "felt:h3_index": 645287644837329651, "STATEFP": 6, "PLACEFP": 86020, "PLACENS": 2409615, "GEOID": 686020, "NAME": "Winterhaven", "NAMELSAD": "Winterhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 630958, "AWATER": 0, "INTPTLAT": 32.7371834, "INTPTLON": -114.6377979, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -114.631348, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1331, "felt:has_geometry": true, "felt:h3_index": 645287667033610280, "STATEFP": 6, "PLACEFP": 61012, "PLACENS": 2583122, "GEOID": 661012, "NAMELSAD": "Ripley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4404857, "AWATER": 0, "INTPTLAT": 33.5237876, "INTPTLON": -114.6529919, "NAME": "Ripley,Palo Verde", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -114.653320, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 438, "felt:has_geometry": true, "felt:h3_index": 645287681026633739, "STATEFP": 6, "PLACEFP": 34246, "PLACENS": 2410780, "GEOID": 634246, "NAME": "Holtville", "NAMELSAD": "Holtville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2988033, "AWATER": 11902, "INTPTLAT": 32.8137812, "INTPTLON": -115.3783188, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -115.378418, 32.805745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 439, "felt:has_geometry": true, "felt:h3_index": 645287681701005467, "STATEFP": 6, "PLACEFP": 36280, "PLACENS": 2410097, "GEOID": 636280, "NAMELSAD": "Imperial city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16536838, "AWATER": 0, "INTPTLAT": 32.8388748, "INTPTLON": -115.5718415, "NAME": "Imperial,El Centro", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -115.576172, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 436, "felt:has_geometry": true, "felt:h3_index": 645287686261300440, "STATEFP": 6, "PLACEFP": 9710, "PLACENS": 2409958, "GEOID": 609710, "NAMELSAD": "Calexico city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22324358, "AWATER": 0, "INTPTLAT": 32.6849313, "INTPTLON": -115.4943572, "NAME": "Calexico,Heber", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -115.488281, 32.676373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAME": "Burnt Ranch", "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -123.508301, 40.805494 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1573, "felt:has_geometry": true, "felt:h3_index": 644718575030985218, "STATEFP": 6, "PLACEFP": 85642, "PLACENS": 2409598, "GEOID": 685642, "NAME": "Willow Creek", "NAMELSAD": "Willow Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78501415, "AWATER": 777004, "INTPTLAT": 40.9393305, "INTPTLON": -123.6410997, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -123.640137, 40.938415 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1362, "felt:has_geometry": true, "felt:h3_index": 644718575706457891, "STATEFP": 6, "PLACEFP": 64378, "PLACENS": 2804442, "GEOID": 664378, "NAMELSAD": "Salyer CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13662482, "AWATER": 113638, "INTPTLAT": 40.8767681, "INTPTLON": -123.5735007, "NAME": "Salyer,Trinity Village", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 40.871988 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAME": "Big Lagoon", "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -124.123535, 41.162114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 170, "felt:has_geometry": true, "felt:h3_index": 644718581837530794, "STATEFP": 6, "PLACEFP": 80448, "PLACENS": 2412093, "GEOID": 680448, "NAME": "Trinidad", "NAMELSAD": "Trinidad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1263717, "AWATER": 412146, "INTPTLAT": 41.0577077, "INTPTLON": -124.143255, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.062786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1554, "felt:has_geometry": true, "felt:h3_index": 644718582140418460, "STATEFP": 6, "PLACEFP": 84385, "PLACENS": 2409573, "GEOID": 684385, "NAME": "Westhaven-Moonstone", "NAMELSAD": "Westhaven-Moonstone CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20954630, "AWATER": 70662, "INTPTLAT": 41.0361167, "INTPTLON": -124.0908296, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -124.090576, 41.037931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 167, "felt:has_geometry": true, "felt:h3_index": 644718585258590224, "STATEFP": 6, "PLACEFP": 7162, "PLACENS": 2409868, "GEOID": 607162, "NAME": "Blue Lake", "NAMELSAD": "Blue Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1601834, "AWATER": 79994, "INTPTLAT": 40.8809929, "INTPTLON": -123.994912, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -123.991699, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1095, "felt:has_geometry": true, "felt:h3_index": 644718585915844358, "STATEFP": 6, "PLACEFP": 44910, "PLACENS": 2408201, "GEOID": 644910, "NAMELSAD": "McKinleyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54083206, "AWATER": 657148, "INTPTLAT": 40.9515707, "INTPTLON": -124.077357, "NAME": "McKinleyville,Fieldbrook", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.946714 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -123.079834, 40.730608 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAME": "Weitchpec", "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 937, "felt:has_geometry": true, "felt:h3_index": 644718603466353835, "STATEFP": 6, "PLACEFP": 34540, "PLACENS": 2585654, "GEOID": 634540, "NAME": "Hoopa", "NAMELSAD": "Hoopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52865786, "AWATER": 2013972, "INTPTLAT": 41.0796391, "INTPTLON": -123.6976603, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -123.695068, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6, "PLACEFP": 59906, "PLACENS": 2628781, "GEOID": 659906, "NAME": "Redcrest", "NAMELSAD": "Redcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190, "AWATER": 0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1102, "felt:has_geometry": true, "felt:h3_index": 644718609011754920, "STATEFP": 6, "PLACEFP": 45092, "PLACENS": 2583071, "GEOID": 645092, "NAME": "Mad River", "NAMELSAD": "Mad River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 91131300, "AWATER": 0, "INTPTLAT": 40.4325319, "INTPTLON": -123.4920607, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.430224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1143, "felt:has_geometry": true, "felt:h3_index": 644718610944688716, "STATEFP": 6, "PLACEFP": 48060, "PLACENS": 2611441, "GEOID": 648060, "NAMELSAD": "Miranda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3868285, "AWATER": 20675, "INTPTLAT": 40.2286868, "INTPTLON": -123.8175844, "NAME": "Miranda,Phillipsville", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 40.229218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1549, "felt:has_geometry": true, "felt:h3_index": 644718611563321866, "STATEFP": 6, "PLACEFP": 84004, "PLACENS": 2611454, "GEOID": 684004, "NAME": "Weott", "NAMELSAD": "Weott CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1946274, "AWATER": 48591, "INTPTLAT": 40.3227715, "INTPTLON": -123.9206222, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -123.914795, 40.321420 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1182, "felt:has_geometry": true, "felt:h3_index": 644718612146034330, "STATEFP": 6, "PLACEFP": 50146, "PLACENS": 2611442, "GEOID": 650146, "NAME": "Myers Flat", "NAMELSAD": "Myers Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1119279, "AWATER": 141837, "INTPTLAT": 40.2654783, "INTPTLON": -123.875548, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -123.870850, 40.262761 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6, "PLACEFP": 25296, "PLACENS": 2410532, "GEOID": 625296, "NAME": "Fortuna", "NAMELSAD": "Fortuna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391, "AWATER": 7169, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -124.134521, 40.588928 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 836, "felt:has_geometry": true, "felt:h3_index": 644718615895212352, "STATEFP": 6, "PLACEFP": 24022, "PLACENS": 2628730, "GEOID": 624022, "NAMELSAD": "Fields Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 716672, "AWATER": 7676, "INTPTLAT": 40.7242363, "INTPTLON": -124.2186025, "NAME": "Fields Landing,Humboldt Hill", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -124.211426, 40.722283 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1183, "felt:has_geometry": true, "felt:h3_index": 644718617862603099, "STATEFP": 6, "PLACEFP": 50188, "PLACENS": 2408896, "GEOID": 650188, "NAME": "Myrtletown", "NAMELSAD": "Myrtletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5432288, "AWATER": 192918, "INTPTLAT": 40.7887307, "INTPTLON": -124.1306576, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -124.123535, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1106, "felt:has_geometry": true, "felt:h3_index": 644718617907779420, "STATEFP": 6, "PLACEFP": 45414, "PLACENS": 2628755, "GEOID": 645414, "NAME": "Manila", "NAMELSAD": "Manila CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805140, "AWATER": 17823, "INTPTLAT": 40.8508972, "INTPTLON": -124.1631934, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -124.156494, 40.847060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 950, "felt:has_geometry": true, "felt:h3_index": 644718618129342877, "STATEFP": 6, "PLACEFP": 36420, "PLACENS": 2628741, "GEOID": 636420, "NAME": "Indianola", "NAMELSAD": "Indianola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3651825, "AWATER": 483, "INTPTLAT": 40.8099643, "INTPTLON": -124.0784473, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.805494 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 172, "felt:has_geometry": true, "felt:h3_index": 644718618271660166, "STATEFP": 6, "PLACEFP": 2476, "PLACENS": 2409723, "GEOID": 602476, "NAME": "Arcata", "NAMELSAD": "Arcata city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24388526, "AWATER": 5063020, "INTPTLAT": 40.8622905, "INTPTLON": -124.0749667, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 40.863680 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 720, "felt:has_geometry": true, "felt:h3_index": 644718618362166534, "STATEFP": 6, "PLACEFP": 17722, "PLACENS": 2408637, "GEOID": 617722, "NAMELSAD": "Cutten CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3325001, "AWATER": 0, "INTPTLAT": 40.7656839, "INTPTLON": -124.1444615, "NAME": "Cutten,Pine Hills", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 40.763901 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 824, "felt:has_geometry": true, "felt:h3_index": 644718618447979912, "STATEFP": 6, "PLACEFP": 23196, "PLACENS": 2628729, "GEOID": 623196, "NAMELSAD": "Fairhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682712, "AWATER": 0, "INTPTLAT": 40.7882931, "INTPTLON": -124.2014211, "NAME": "Fairhaven,Eureka,Samoa,Bayview", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -124.200439, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1385, "felt:has_geometry": true, "felt:h3_index": 644718618917114405, "STATEFP": 6, "PLACEFP": 70518, "PLACENS": 2611446, "GEOID": 670518, "NAMELSAD": "Scotia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1932251, "AWATER": 262552, "INTPTLAT": 40.4788133, "INTPTLON": -124.1046506, "NAME": "Scotia,Rio Dell", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -124.101562, 40.480381 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 943, "felt:has_geometry": true, "felt:h3_index": 644718619252568853, "STATEFP": 6, "PLACEFP": 36126, "PLACENS": 2408413, "GEOID": 636126, "NAME": "Hydesville", "NAMELSAD": "Hydesville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19424163, "AWATER": 0, "INTPTLAT": 40.5578746, "INTPTLON": -124.0822499, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.555548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 171, "felt:has_geometry": true, "felt:h3_index": 644718619950247158, "STATEFP": 6, "PLACEFP": 23910, "PLACENS": 2410497, "GEOID": 623910, "NAME": "Ferndale", "NAMELSAD": "Ferndale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3124819, "AWATER": 0, "INTPTLAT": 40.5781435, "INTPTLON": -124.261247, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -124.255371, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1068, "felt:has_geometry": true, "felt:h3_index": 644718620356135345, "STATEFP": 6, "PLACEFP": 42328, "PLACENS": 2611440, "GEOID": 642328, "NAME": "Loleta", "NAMELSAD": "Loleta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5500846, "AWATER": 0, "INTPTLAT": 40.6408852, "INTPTLON": -124.2225561, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -124.222412, 40.638967 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6, "PLACEFP": 36098, "PLACENS": 2583038, "GEOID": 636098, "NAME": "Hyampom", "NAMELSAD": "Hyampom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399, "AWATER": 0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -123.464355, 40.622292 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1598, "felt:has_geometry": true, "felt:h3_index": 644718625962206297, "STATEFP": 6, "PLACEFP": 32562, "PLACENS": 2408361, "GEOID": 632562, "NAME": "Hayfork", "NAMELSAD": "Hayfork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 186854161, "AWATER": 58222, "INTPTLAT": 40.5758706, "INTPTLON": -123.123629, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1295, "felt:has_geometry": true, "felt:h3_index": 644718627603356904, "STATEFP": 6, "PLACEFP": 58456, "PLACENS": 2804441, "GEOID": 658456, "NAME": "Post Mountain", "NAMELSAD": "Post Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32146965, "AWATER": 0, "INTPTLAT": 40.4159487, "INTPTLON": -123.2316042, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -123.233643, 40.413496 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 41.294317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1040, "felt:has_geometry": true, "felt:h3_index": 644718847372672021, "STATEFP": 6, "PLACEFP": 40928, "PLACENS": 2408589, "GEOID": 640928, "NAME": "Laytonville", "NAMELSAD": "Laytonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13908641, "AWATER": 163478, "INTPTLAT": 39.662256, "INTPTLON": -123.4950147, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -123.497314, 39.656456 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1396, "felt:has_geometry": true, "felt:h3_index": 644718856146322332, "STATEFP": 6, "PLACEFP": 71372, "PLACENS": 2611448, "GEOID": 671372, "NAME": "Shelter Cove", "NAMELSAD": "Shelter Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15098010, "AWATER": 0, "INTPTLAT": 40.0389543, "INTPTLON": -124.0558247, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 40.036027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 869, "felt:has_geometry": true, "felt:h3_index": 644718857436889222, "STATEFP": 6, "PLACEFP": 28154, "PLACENS": 2611433, "GEOID": 628154, "NAME": "Garberville", "NAMELSAD": "Garberville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6940712, "AWATER": 148102, "INTPTLAT": 40.1003058, "INTPTLON": -123.7943149, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 40.094882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 549, "felt:has_geometry": true, "felt:h3_index": 644718857983963529, "STATEFP": 6, "PLACEFP": 5262, "PLACENS": 2611375, "GEOID": 605262, "NAME": "Benbow", "NAMELSAD": "Benbow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12641980, "AWATER": 0, "INTPTLAT": 40.0602672, "INTPTLON": -123.7653807, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -123.760986, 40.061257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1320, "felt:has_geometry": true, "felt:h3_index": 644718859124743401, "STATEFP": 6, "PLACEFP": 60088, "PLACENS": 2409154, "GEOID": 660088, "NAME": "Redway", "NAMELSAD": "Redway CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239490, "AWATER": 55629, "INTPTLAT": 40.1202227, "INTPTLON": -123.8217768, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 40.120090 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1043, "felt:has_geometry": true, "felt:h3_index": 644718862050317412, "STATEFP": 6, "PLACEFP": 41026, "PLACENS": 2628750, "GEOID": 641026, "NAME": "Leggett", "NAMELSAD": "Leggett CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7003204, "AWATER": 0, "INTPTLAT": 39.8635391, "INTPTLON": -123.7251757, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -123.717041, 39.859155 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 707, "felt:has_geometry": true, "felt:h3_index": 644718869174552388, "STATEFP": 6, "PLACEFP": 16728, "PLACENS": 2407675, "GEOID": 616728, "NAME": "Covelo", "NAMELSAD": "Covelo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18377116, "AWATER": 111658, "INTPTLAT": 39.8001872, "INTPTLON": -123.2526012, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -123.244629, 39.800096 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 493, "felt:has_geometry": true, "felt:h3_index": 644718873994931008, "STATEFP": 6, "PLACEFP": 786, "PLACENS": 2611374, "GEOID": 600786, "NAME": "Alderpoint", "NAMELSAD": "Alderpoint CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6288254, "AWATER": 0, "INTPTLAT": 40.1613467, "INTPTLON": -123.6157293, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -123.618164, 40.162083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1355, "felt:has_geometry": true, "felt:h3_index": 644718875946399144, "STATEFP": 6, "PLACEFP": 63386, "PLACENS": 2628787, "GEOID": 663386, "NAME": "Ruth", "NAMELSAD": "Ruth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100658842, "AWATER": 4347223, "INTPTLAT": 40.2938485, "INTPTLON": -123.34833450000001, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -123.343506, 40.287907 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 695, "felt:has_geometry": true, "felt:h3_index": 644718881748979876, "STATEFP": 6, "PLACEFP": 15030, "PLACENS": 2628722, "GEOID": 615030, "NAME": "Comptche", "NAMELSAD": "Comptche CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987584, "AWATER": 0, "INTPTLAT": 39.2651343, "INTPTLON": -123.5897145, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -123.585205, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 644, "felt:has_geometry": true, "felt:h3_index": 644718882019752066, "STATEFP": 6, "PLACEFP": 11768, "PLACENS": 2628717, "GEOID": 611768, "NAME": "Caspar", "NAMELSAD": "Caspar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7748981, "AWATER": 0, "INTPTLAT": 39.3630629, "INTPTLON": -123.8041936, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -123.804932, 39.359785 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 335, "felt:has_geometry": true, "felt:h3_index": 644718882313740706, "STATEFP": 6, "PLACEFP": 25058, "PLACENS": 2410525, "GEOID": 625058, "NAME": "Fort Bragg", "NAMELSAD": "Fort Bragg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7483743, "AWATER": 71203, "INTPTLAT": 39.4398027, "INTPTLON": -123.8017566, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 39.436193 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1125, "felt:has_geometry": true, "felt:h3_index": 644718882790408492, "STATEFP": 6, "PLACEFP": 46814, "PLACENS": 2408815, "GEOID": 646814, "NAME": "Mendocino", "NAMELSAD": "Mendocino CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5846594, "AWATER": 2006861, "INTPTLAT": 39.3124505, "INTPTLON": -123.7924016, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 39.308800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 597, "felt:has_geometry": true, "felt:h3_index": 644718883285586088, "STATEFP": 6, "PLACEFP": 8530, "PLACENS": 2628713, "GEOID": 608530, "NAME": "Brooktrails", "NAMELSAD": "Brooktrails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18790840, "AWATER": 122096, "INTPTLAT": 39.4432827, "INTPTLON": -123.3938002, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -123.387451, 39.444678 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 492, "felt:has_geometry": true, "felt:h3_index": 644718886539187978, "STATEFP": 6, "PLACEFP": 716, "PLACENS": 2628703, "GEOID": 600716, "NAME": "Albion", "NAMELSAD": "Albion CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4701873, "AWATER": 96897, "INTPTLAT": 39.2253267, "INTPTLON": -123.7575859, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 39.223743 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1060, "felt:has_geometry": true, "felt:h3_index": 644718886715590917, "STATEFP": 6, "PLACEFP": 41866, "PLACENS": 2628752, "GEOID": 641866, "NAME": "Little River", "NAMELSAD": "Little River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4331558, "AWATER": 0, "INTPTLAT": 39.2702854, "INTPTLON": -123.7817494, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -123.782959, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 680, "felt:has_geometry": true, "felt:h3_index": 644718896773775600, "STATEFP": 6, "PLACEFP": 14008, "PLACENS": 2628718, "GEOID": 614008, "NAME": "Cleone", "NAMELSAD": "Cleone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4126679, "AWATER": 62762, "INTPTLAT": 39.4901542, "INTPTLON": -123.7756919, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -123.771973, 39.487085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1298, "felt:has_geometry": true, "felt:h3_index": 644718902778063776, "STATEFP": 6, "PLACEFP": 58506, "PLACENS": 2628779, "GEOID": 658506, "NAME": "Potter Valley", "NAMELSAD": "Potter Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10430292, "AWATER": 73557, "INTPTLAT": 39.3171408, "INTPTLON": -123.10986, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -123.101807, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1321, "felt:has_geometry": true, "felt:h3_index": 644718902978996387, "STATEFP": 6, "PLACEFP": 60214, "PLACENS": 2628782, "GEOID": 660214, "NAME": "Redwood Valley", "NAMELSAD": "Redwood Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7112072, "AWATER": 31597, "INTPTLAT": 39.2685476, "INTPTLON": -123.2027581, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -123.200684, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 65, "felt:has_geometry": true, "felt:h3_index": 644718903551286291, "STATEFP": 6, "PLACEFP": 85600, "PLACENS": 2412270, "GEOID": 685600, "NAME": "Willits", "NAMELSAD": "Willits city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7321585, "AWATER": 1546, "INTPTLAT": 39.4050065, "INTPTLON": -123.3488889, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -123.343506, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAME": "McArthur", "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 558, "felt:has_geometry": true, "felt:h3_index": 644719536896074354, "STATEFP": 6, "PLACEFP": 6336, "PLACENS": 2582944, "GEOID": 606336, "NAME": "Bieber", "NAMELSAD": "Bieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8944480, "AWATER": 148149, "INTPTLAT": 41.1384505, "INTPTLON": -121.1170059, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 41.137296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1208, "felt:has_geometry": true, "felt:h3_index": 644719537632617362, "STATEFP": 6, "PLACEFP": 52610, "PLACENS": 2628767, "GEOID": 652610, "NAME": "Nubieber", "NAMELSAD": "Nubieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1939993, "AWATER": 20921, "INTPTLAT": 41.0966269, "INTPTLON": -121.1821632, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 41.095912 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1062, "felt:has_geometry": true, "felt:h3_index": 644719539417787625, "STATEFP": 6, "PLACEFP": 41908, "PLACENS": 2611439, "GEOID": 641908, "NAME": "Little Valley", "NAMELSAD": "Little Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1076095, "AWATER": 26795, "INTPTLAT": 40.8930488, "INTPTLON": -121.1780413, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 40.888601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAME": "Likely", "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1098, "felt:has_geometry": true, "felt:h3_index": 644719557509073669, "STATEFP": 6, "PLACEFP": 45008, "PLACENS": 2804434, "GEOID": 645008, "NAME": "Madeline", "NAMELSAD": "Madeline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 137117, "AWATER": 0, "INTPTLAT": 41.0514103, "INTPTLON": -120.4754336, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 41.054502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6, "PLACEFP": 10732, "PLACENS": 2582963, "GEOID": 610732, "NAME": "Canby", "NAMELSAD": "Canby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540, "AWATER": 76979, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -120.882568, 41.450961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 486, "felt:has_geometry": true, "felt:h3_index": 644719563810683392, "STATEFP": 6, "PLACEFP": 310, "PLACENS": 2582927, "GEOID": 600310, "NAME": "Adin", "NAMELSAD": "Adin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7587701, "AWATER": 15858, "INTPTLAT": 41.1993122, "INTPTLON": -120.9567786, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 41.203456 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1075, "felt:has_geometry": true, "felt:h3_index": 644719565413754960, "STATEFP": 6, "PLACEFP": 43126, "PLACENS": 2583062, "GEOID": 643126, "NAME": "Lookout", "NAMELSAD": "Lookout CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14152115, "AWATER": 322967, "INTPTLAT": 41.210401, "INTPTLON": -121.1529597, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -121.146240, 41.211722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAME": "Old Station", "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -121.409912, 40.672306 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1540, "felt:has_geometry": true, "felt:h3_index": 644719573066894226, "STATEFP": 6, "PLACEFP": 83494, "PLACENS": 2583182, "GEOID": 683494, "NAME": "Warner Valley", "NAMELSAD": "Warner Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45059297, "AWATER": 74958, "INTPTLAT": 40.4043546, "INTPTLON": -121.3405621, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 40.405131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAME": "Burney", "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -121.673584, 40.888601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 964, "felt:has_geometry": true, "felt:h3_index": 644719577030895305, "STATEFP": 6, "PLACEFP": 37442, "PLACENS": 2813351, "GEOID": 637442, "NAME": "Johnson Park", "NAMELSAD": "Johnson Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2337519, "AWATER": 0, "INTPTLAT": 40.9211789, "INTPTLON": -121.6295305, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 40.921814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 829, "felt:has_geometry": true, "felt:h3_index": 644719579180700011, "STATEFP": 6, "PLACEFP": 23532, "PLACENS": 2408112, "GEOID": 623532, "NAME": "Fall River Mills", "NAMELSAD": "Fall River Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6859381, "AWATER": 269074, "INTPTLAT": 41.0072414, "INTPTLON": -121.4411337, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 645, "felt:has_geometry": true, "felt:h3_index": 644719579505466404, "STATEFP": 6, "PLACEFP": 11782, "PLACENS": 2611427, "GEOID": 611782, "NAME": "Cassel", "NAMELSAD": "Cassel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5246417, "AWATER": 193675, "INTPTLAT": 40.9250207, "INTPTLON": -121.5484758, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 40.921814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 918, "felt:has_geometry": true, "felt:h3_index": 644719583149349674, "STATEFP": 6, "PLACEFP": 32408, "PLACENS": 2583033, "GEOID": 632408, "NAME": "Hat Creek", "NAMELSAD": "Hat Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 129532652, "AWATER": 442608, "INTPTLAT": 40.7898058, "INTPTLON": -121.4745149, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAME": "Stones Landing", "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -120.728760, 40.688969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1429, "felt:has_geometry": true, "felt:h3_index": 644719585765267051, "STATEFP": 6, "PLACEFP": 73554, "PLACENS": 2583148, "GEOID": 673554, "NAME": "Spaulding", "NAMELSAD": "Spaulding CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8621924, "AWATER": 0, "INTPTLAT": 40.6556642, "INTPTLON": -120.7862597, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -120.783691, 40.655639 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6, "PLACEFP": 83850, "PLACENS": 2412201, "GEOID": 683850, "NAME": "Weed", "NAMELSAD": "Weed city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111, "AWATER": 13340, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 41.418015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 786, "felt:has_geometry": true, "felt:h3_index": 644719602563303620, "STATEFP": 6, "PLACEFP": 21530, "PLACENS": 2408045, "GEOID": 621530, "NAME": "Edgewood", "NAMELSAD": "Edgewood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2656702, "AWATER": 12263, "INTPTLAT": 41.4607727, "INTPTLON": -122.4256868, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 638, "felt:has_geometry": true, "felt:h3_index": 644719602869519795, "STATEFP": 6, "PLACEFP": 11481, "PLACENS": 2407970, "GEOID": 611481, "NAME": "Carrick", "NAMELSAD": "Carrick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 152301, "AWATER": 0, "INTPTLAT": 41.4467465, "INTPTLON": -122.3634572, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 41.450961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 875, "felt:has_geometry": true, "felt:h3_index": 644719603752455388, "STATEFP": 6, "PLACEFP": 29252, "PLACENS": 2408286, "GEOID": 629252, "NAME": "Gazelle", "NAMELSAD": "Gazelle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1739436, "AWATER": 1757, "INTPTLAT": 41.5118701, "INTPTLON": -122.5219457, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.516804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1022, "felt:has_geometry": true, "felt:h3_index": 644719606499957170, "STATEFP": 6, "PLACEFP": 39728, "PLACENS": 2805902, "GEOID": 639728, "NAME": "Lake Shastina", "NAMELSAD": "Lake Shastina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10393370, "AWATER": 2563420, "INTPTLAT": 41.5231272, "INTPTLON": -122.3763662, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 41.525030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 300, "felt:has_geometry": true, "felt:h3_index": 644719609596492310, "STATEFP": 6, "PLACEFP": 49852, "PLACENS": 2411181, "GEOID": 649852, "NAME": "Mount Shasta", "NAMELSAD": "Mount Shasta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9754373, "AWATER": 9660, "INTPTLAT": 41.3208797, "INTPTLON": -122.3154809, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.310791, 41.319076 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 38, "felt:has_geometry": true, "felt:h3_index": 644719616714914477, "STATEFP": 6, "PLACEFP": 25128, "PLACENS": 2410527, "GEOID": 625128, "NAME": "Fort Jones", "NAMELSAD": "Fort Jones city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1559876, "AWATER": 0, "INTPTLAT": 41.6084521, "INTPTLON": -122.8410656, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.838135, 41.607228 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 900, "felt:has_geometry": true, "felt:h3_index": 644719617245522853, "STATEFP": 6, "PLACEFP": 31134, "PLACENS": 2408333, "GEOID": 631134, "NAME": "Greenview", "NAMELSAD": "Greenview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3354179, "AWATER": 218772, "INTPTLAT": 41.5449224, "INTPTLON": -122.9209638, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 41.549700 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 902, "felt:has_geometry": true, "felt:h3_index": 644719617777944278, "STATEFP": 6, "PLACEFP": 31246, "PLACENS": 2408337, "GEOID": 631246, "NAME": "Grenada", "NAMELSAD": "Grenada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1335962, "AWATER": 3010, "INTPTLAT": 41.6401003, "INTPTLON": -122.5266271, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.640078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6, "PLACEFP": 78176, "PLACENS": 2410067, "GEOID": 678176, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560, "AWATER": 1194, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 41.582580 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAME": "Coffee Creek", "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1497, "felt:has_geometry": true, "felt:h3_index": 644719642529950797, "STATEFP": 6, "PLACEFP": 80476, "PLACENS": 2583167, "GEOID": 680476, "NAME": "Trinity Center", "NAMELSAD": "Trinity Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13547616, "AWATER": 0, "INTPTLAT": 40.9840636, "INTPTLON": -122.7083246, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 40.988192 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1011, "felt:has_geometry": true, "felt:h3_index": 644719643816705163, "STATEFP": 6, "PLACEFP": 39514, "PLACENS": 2408556, "GEOID": 639514, "NAME": "Lakehead", "NAMELSAD": "Lakehead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12160323, "AWATER": 1511480, "INTPTLAT": 40.9034358, "INTPTLON": -122.3996577, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 40.905210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6, "PLACEFP": 22972, "PLACENS": 2410458, "GEOID": 622972, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757, "AWATER": 2444, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.893066, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAME": "Dunsmuir", "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.266846, 41.236511 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1092, "felt:has_geometry": true, "felt:h3_index": 644719655508391001, "STATEFP": 6, "PLACEFP": 44784, "PLACENS": 2408196, "GEOID": 644784, "NAME": "McCloud", "NAMELSAD": "McCloud CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6273613, "AWATER": 170633, "INTPTLAT": 41.2547389, "INTPTLON": -122.1362211, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 41.253032 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 647, "felt:has_geometry": true, "felt:h3_index": 644719655759495833, "STATEFP": 6, "PLACEFP": 11824, "PLACENS": 2813347, "GEOID": 611824, "NAME": "Castella", "NAMELSAD": "Castella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2898121, "AWATER": 173038, "INTPTLAT": 41.1772527, "INTPTLON": -122.2872374, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 560, "felt:has_geometry": true, "felt:h3_index": 644719658497383694, "STATEFP": 6, "PLACEFP": 6475, "PLACENS": 2407839, "GEOID": 606475, "NAME": "Big Bend", "NAMELSAD": "Big Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14852515, "AWATER": 230960, "INTPTLAT": 41.0116239, "INTPTLON": -121.9304344, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6, "PLACEFP": 20424, "PLACENS": 2628727, "GEOID": 620424, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306, "AWATER": 0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 41.319076 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6, "PLACEFP": 17995, "PLACENS": 2582990, "GEOID": 617995, "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441, "AWATER": 4621, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069, "NAME": "Daphnedale Park,Alturas", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 657, "felt:has_geometry": true, "felt:h3_index": 644719717021977715, "STATEFP": 6, "PLACEFP": 12328, "PLACENS": 2582971, "GEOID": 612328, "NAME": "Cedarville", "NAMELSAD": "Cedarville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14095280, "AWATER": 8675, "INTPTLAT": 41.5286833, "INTPTLON": -120.1744329, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 41.533254 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 613, "felt:has_geometry": true, "felt:h3_index": 644719720153001358, "STATEFP": 6, "PLACEFP": 9834, "PLACENS": 2582955, "GEOID": 609834, "NAME": "California Pines", "NAMELSAD": "California Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19236734, "AWATER": 366425, "INTPTLAT": 41.413786, "INTPTLON": -120.6653096, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 41.418015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1120, "felt:has_geometry": true, "felt:h3_index": 644719808794191718, "STATEFP": 6, "PLACEFP": 46618, "PLACENS": 2408809, "GEOID": 646618, "NAME": "Meadow Valley", "NAMELSAD": "Meadow Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22066143, "AWATER": 0, "INTPTLAT": 39.9323117, "INTPTLON": -121.0830864, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1305, "felt:has_geometry": true, "felt:h3_index": 644719808859914265, "STATEFP": 6, "PLACEFP": 59080, "PLACENS": 2409118, "GEOID": 659080, "NAME": "Quincy", "NAMELSAD": "Quincy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10939488, "AWATER": 0, "INTPTLAT": 39.931017, "INTPTLON": -120.9548861, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -120.948486, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 546, "felt:has_geometry": true, "felt:h3_index": 644719810114116161, "STATEFP": 6, "PLACEFP": 4856, "PLACENS": 2407822, "GEOID": 604856, "NAME": "Belden", "NAMELSAD": "Belden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1578657, "AWATER": 299647, "INTPTLAT": 40.0067829, "INTPTLON": -121.2481908, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 40.002372 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1486, "felt:has_geometry": true, "felt:h3_index": 644719810400699058, "STATEFP": 6, "PLACEFP": 78792, "PLACENS": 2409326, "GEOID": 678792, "NAME": "Tobin", "NAMELSAD": "Tobin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13367665, "AWATER": 0, "INTPTLAT": 39.9357979, "INTPTLON": -121.2964913, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 39.935013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1471, "felt:has_geometry": true, "felt:h3_index": 644719811138119438, "STATEFP": 6, "PLACEFP": 78008, "PLACENS": 2410061, "GEOID": 678008, "NAME": "Taylorsville", "NAMELSAD": "Taylorsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8409829, "AWATER": 0, "INTPTLAT": 40.0586616, "INTPTLON": -120.8386751, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 40.052848 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 778, "felt:has_geometry": true, "felt:h3_index": 644719811307321225, "STATEFP": 6, "PLACEFP": 21026, "PLACENS": 2408033, "GEOID": 621026, "NAME": "East Quincy", "NAMELSAD": "East Quincy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31368457, "AWATER": 0, "INTPTLAT": 39.9164303, "INTPTLON": -120.9189403, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 39.918163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 973, "felt:has_geometry": true, "felt:h3_index": 644719811419101937, "STATEFP": 6, "PLACEFP": 37904, "PLACENS": 2408465, "GEOID": 637904, "NAME": "Keddie", "NAMELSAD": "Keddie CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1702275, "AWATER": 0, "INTPTLAT": 40.0059438, "INTPTLON": -120.9524163, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -120.948486, 40.002372 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 949, "felt:has_geometry": true, "felt:h3_index": 644719812106337004, "STATEFP": 6, "PLACEFP": 36364, "PLACENS": 2408419, "GEOID": 636364, "NAME": "Indian Falls", "NAMELSAD": "Indian Falls CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4770041, "AWATER": 0, "INTPTLAT": 40.0587497, "INTPTLON": -120.9803138, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 40.052848 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1505, "felt:has_geometry": true, "felt:h3_index": 644719812596426080, "STATEFP": 6, "PLACEFP": 80952, "PLACENS": 2409369, "GEOID": 680952, "NAMELSAD": "Twain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18622693, "AWATER": 0, "INTPTLAT": 40.0355031, "INTPTLON": -121.0403629, "NAME": "Twain,Paxton", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -121.036377, 40.036027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 600, "felt:has_geometry": true, "felt:h3_index": 644719814321859776, "STATEFP": 6, "PLACEFP": 8744, "PLACENS": 2407918, "GEOID": 608744, "NAME": "Bucks Lake", "NAMELSAD": "Bucks Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26784856, "AWATER": 21082, "INTPTLAT": 39.8795599, "INTPTLON": -121.1990806, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 39.876019 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 668, "felt:has_geometry": true, "felt:h3_index": 644719819322821830, "STATEFP": 6, "PLACEFP": 12930, "PLACENS": 2408021, "GEOID": 612930, "NAME": "Chester", "NAMELSAD": "Chester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18874561, "AWATER": 209672, "INTPTLAT": 40.3016748, "INTPTLON": -121.2325025, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -121.234131, 40.296287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1005, "felt:has_geometry": true, "felt:h3_index": 644719820097006417, "STATEFP": 6, "PLACEFP": 39425, "PLACENS": 2408531, "GEOID": 639425, "NAME": "Lake Almanor West", "NAMELSAD": "Lake Almanor West CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5920415, "AWATER": 0, "INTPTLAT": 40.2335734, "INTPTLON": -121.2020754, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 40.229218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 606, "felt:has_geometry": true, "felt:h3_index": 644719823364230032, "STATEFP": 6, "PLACEFP": 9318, "PLACENS": 2612474, "GEOID": 609318, "NAME": "Butte Meadows", "NAMELSAD": "Butte Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5554035, "AWATER": 1292, "INTPTLAT": 40.08531, "INTPTLON": -121.5426826, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 40.086477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 633, "felt:has_geometry": true, "felt:h3_index": 644719824497203826, "STATEFP": 6, "PLACEFP": 11166, "PLACENS": 2407962, "GEOID": 611166, "NAME": "Caribou", "NAMELSAD": "Caribou CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 419798, "AWATER": 0, "INTPTLAT": 40.073244, "INTPTLON": -121.1656703, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 40.069665 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1137, "felt:has_geometry": true, "felt:h3_index": 644719828371281477, "STATEFP": 6, "PLACEFP": 47472, "PLACENS": 2628757, "GEOID": 647472, "NAME": "Milford", "NAMELSAD": "Milford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13705685, "AWATER": 14513, "INTPTLAT": 40.1494665, "INTPTLON": -120.3701964, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 40.145289 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1009, "felt:has_geometry": true, "felt:h3_index": 644719830364330124, "STATEFP": 6, "PLACEFP": 39483, "PLACENS": 2408536, "GEOID": 639483, "NAME": "Lake Davis", "NAMELSAD": "Lake Davis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14080604, "AWATER": 11652, "INTPTLAT": 39.8524283, "INTPTLON": -120.4584099, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 39.850721 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 90, "felt:has_geometry": true, "felt:h3_index": 644719830826685152, "STATEFP": 6, "PLACEFP": 58352, "PLACENS": 2411473, "GEOID": 658352, "NAMELSAD": "Portola city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14003433, "AWATER": 0, "INTPTLAT": 39.820799, "INTPTLON": -120.474293, "NAME": "Portola,Delleker", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 39.816975 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 716, "felt:has_geometry": true, "felt:h3_index": 644719831736263315, "STATEFP": 6, "PLACEFP": 17288, "PLACENS": 2407684, "GEOID": 617288, "NAME": "Cromberg", "NAMELSAD": "Cromberg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23385108, "AWATER": 0, "INTPTLAT": 39.8683829, "INTPTLON": -120.6904463, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -120.684814, 39.867588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1431, "felt:has_geometry": true, "felt:h3_index": 644719831833414045, "STATEFP": 6, "PLACEFP": 73654, "PLACENS": 2408792, "GEOID": 673654, "NAMELSAD": "Spring Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1692573, "AWATER": 0, "INTPTLAT": 39.891971, "INTPTLON": -120.7866168, "NAME": "Spring Garden,Greenhorn", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -120.783691, 39.892880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1565, "felt:has_geometry": true, "felt:h3_index": 644719835009731402, "STATEFP": 6, "PLACEFP": 84928, "PLACENS": 2409578, "GEOID": 684928, "NAME": "Westwood", "NAMELSAD": "Westwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14392892, "AWATER": 182548, "INTPTLAT": 40.3052197, "INTPTLON": -121.0035026, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 40.304665 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 677, "felt:has_geometry": true, "felt:h3_index": 644719836288113161, "STATEFP": 6, "PLACEFP": 13910, "PLACENS": 2611428, "GEOID": 613910, "NAME": "Clear Creek", "NAMELSAD": "Clear Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2934098, "AWATER": 19595, "INTPTLAT": 40.307086, "INTPTLON": -121.0554, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 40.304665 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 709, "felt:has_geometry": true, "felt:h3_index": 644719839149759169, "STATEFP": 6, "PLACEFP": 17050, "PLACENS": 2407679, "GEOID": 617050, "NAME": "Crescent Mills", "NAMELSAD": "Crescent Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10985561, "AWATER": 0, "INTPTLAT": 40.1007411, "INTPTLON": -120.921706, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 40.094882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 901, "felt:has_geometry": true, "felt:h3_index": 644719839388509106, "STATEFP": 6, "PLACEFP": 31162, "PLACENS": 2408334, "GEOID": 631162, "NAME": "Greenville", "NAMELSAD": "Greenville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20701558, "AWATER": 0, "INTPTLAT": 40.1336027, "INTPTLON": -120.9453326, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 40.128491 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 782, "felt:has_geometry": true, "felt:h3_index": 644719839740906217, "STATEFP": 6, "PLACEFP": 21138, "PLACENS": 2408038, "GEOID": 621138, "NAME": "East Shore", "NAMELSAD": "East Shore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3063617, "AWATER": 0, "INTPTLAT": 40.2452687, "INTPTLON": -121.0767779, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1003, "felt:has_geometry": true, "felt:h3_index": 644719839847540496, "STATEFP": 6, "PLACEFP": 39411, "PLACENS": 2408529, "GEOID": 639411, "NAMELSAD": "Lake Almanor Country Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7104822, "AWATER": 0, "INTPTLAT": 40.2577714, "INTPTLON": -121.1469582, "NAME": "Lake Almanor Country Club,Hamilton Branch,Lake Almanor Peninsula", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -121.146240, 40.254377 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 632, "felt:has_geometry": true, "felt:h3_index": 644719840255551302, "STATEFP": 6, "PLACEFP": 10914, "PLACENS": 2407959, "GEOID": 610914, "NAME": "Canyondam", "NAMELSAD": "Canyondam CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1985597, "AWATER": 0, "INTPTLAT": 40.1698672, "INTPTLON": -121.0769858, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 40.170479 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1299, "felt:has_geometry": true, "felt:h3_index": 644719840357699611, "STATEFP": 6, "PLACEFP": 58618, "PLACENS": 2409103, "GEOID": 658618, "NAMELSAD": "Prattville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1561232, "AWATER": 0, "INTPTLAT": 40.2060047, "INTPTLON": -121.1574565, "NAME": "Prattville,Almanor", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 40.204050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 843, "felt:has_geometry": true, "felt:h3_index": 644719843107942596, "STATEFP": 6, "PLACEFP": 24750, "PLACENS": 2612480, "GEOID": 624750, "NAME": "Forbestown", "NAMELSAD": "Forbestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16250437, "AWATER": 15370, "INTPTLAT": 39.5275837, "INTPTLON": -121.2662224, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 39.529467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 682, "felt:has_geometry": true, "felt:h3_index": 644719843191971241, "STATEFP": 6, "PLACEFP": 14148, "PLACENS": 2612477, "GEOID": 614148, "NAME": "Clipper Mills", "NAMELSAD": "Clipper Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4503147, "AWATER": 0, "INTPTLAT": 39.5324242, "INTPTLON": -121.1665519, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 39.529467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 798, "felt:has_geometry": true, "felt:h3_index": 644719843459216096, "STATEFP": 6, "PLACEFP": 12612, "PLACENS": 2408008, "GEOID": 612612, "NAME": "Challenge-Brownsville", "NAMELSAD": "Challenge-Brownsville CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25135642, "AWATER": 0, "INTPTLAT": 39.4646167, "INTPTLON": -121.26325, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -121.256104, 39.461644 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1337, "felt:has_geometry": true, "felt:h3_index": 644719843663741011, "STATEFP": 6, "PLACEFP": 62200, "PLACENS": 2612487, "GEOID": 662200, "NAME": "Robinson Mill", "NAMELSAD": "Robinson Mill CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3411263, "AWATER": 0, "INTPTLAT": 39.4856263, "INTPTLON": -121.3201644, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 39.487085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 555, "felt:has_geometry": true, "felt:h3_index": 644719844406726684, "STATEFP": 6, "PLACEFP": 6070, "PLACENS": 2612472, "GEOID": 606070, "NAME": "Berry Creek", "NAMELSAD": "Berry Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 147940054, "AWATER": 154403, "INTPTLAT": 39.6318124, "INTPTLON": -121.4056211, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 976, "felt:has_geometry": true, "felt:h3_index": 644719844730946280, "STATEFP": 6, "PLACEFP": 38024, "PLACENS": 2612483, "GEOID": 638024, "NAME": "Kelly Ridge", "NAMELSAD": "Kelly Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5054047, "AWATER": 0, "INTPTLAT": 39.5288032, "INTPTLON": -121.4662586, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 39.529467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1030, "felt:has_geometry": true, "felt:h3_index": 644719845493462406, "STATEFP": 6, "PLACEFP": 40312, "PLACENS": 2408509, "GEOID": 640312, "NAME": "La Porte", "NAMELSAD": "La Porte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11543765, "AWATER": 0, "INTPTLAT": 39.6725081, "INTPTLON": -120.9852443, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 750, "felt:has_geometry": true, "felt:h3_index": 644719847200111876, "STATEFP": 6, "PLACEFP": 19416, "PLACENS": 2582996, "GEOID": 619416, "NAME": "Dobbins", "NAMELSAD": "Dobbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20051346, "AWATER": 187248, "INTPTLAT": 39.3565902, "INTPTLON": -121.2103783, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -121.212158, 39.351290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1205, "felt:has_geometry": true, "felt:h3_index": 644719847576080734, "STATEFP": 6, "PLACEFP": 52246, "PLACENS": 2628766, "GEOID": 652246, "NAME": "North San Juan", "NAMELSAD": "North San Juan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6275144, "AWATER": 0, "INTPTLAT": 39.37181, "INTPTLON": -121.1060793, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -121.102295, 39.368279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1306, "felt:has_geometry": true, "felt:h3_index": 644719848321460304, "STATEFP": 6, "PLACEFP": 59115, "PLACENS": 2612485, "GEOID": 659115, "NAME": "Rackerby", "NAMELSAD": "Rackerby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7650377, "AWATER": 0, "INTPTLAT": 39.4261136, "INTPTLON": -121.35419, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 39.427707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 535, "felt:has_geometry": true, "felt:h3_index": 644719848870971657, "STATEFP": 6, "PLACEFP": 3792, "PLACENS": 2612459, "GEOID": 603792, "NAME": "Bangor", "NAMELSAD": "Bangor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34765044, "AWATER": 0, "INTPTLAT": 39.3760873, "INTPTLON": -121.4116537, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -121.409912, 39.376772 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 630, "felt:has_geometry": true, "felt:h3_index": 644719849349908232, "STATEFP": 6, "PLACEFP": 10676, "PLACENS": 2628715, "GEOID": 610676, "NAME": "Camptonville", "NAMELSAD": "Camptonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221241, "AWATER": 0, "INTPTLAT": 39.4520717, "INTPTLON": -121.048668, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.453161 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1270, "felt:has_geometry": true, "felt:h3_index": 644719850214437276, "STATEFP": 6, "PLACEFP": 57036, "PLACENS": 2583112, "GEOID": 657036, "NAME": "Pike", "NAMELSAD": "Pike CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11194524, "AWATER": 0, "INTPTLAT": 39.427843, "INTPTLON": -120.9996815, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -120.992432, 39.427707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1103, "felt:has_geometry": true, "felt:h3_index": 644719851742904618, "STATEFP": 6, "PLACEFP": 45120, "PLACENS": 2408161, "GEOID": 645120, "NAME": "Magalia", "NAMELSAD": "Magalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36313238, "AWATER": 10648, "INTPTLAT": 39.8187523, "INTPTLON": -121.6077477, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -121.607666, 39.816975 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 362, "felt:has_geometry": true, "felt:h3_index": 644719852095185584, "STATEFP": 6, "PLACEFP": 55520, "PLACENS": 2413111, "GEOID": 655520, "NAME": "Paradise", "NAMELSAD": "Paradise town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47439306, "AWATER": 34214, "INTPTLAT": 39.7541919, "INTPTLON": -121.6064, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -121.607666, 39.749434 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 696, "felt:has_geometry": true, "felt:h3_index": 644719852337669908, "STATEFP": 6, "PLACEFP": 16035, "PLACENS": 2407652, "GEOID": 616035, "NAME": "Concow", "NAMELSAD": "Concow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 70981496, "AWATER": 968640, "INTPTLAT": 39.7703164, "INTPTLON": -121.513493, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 39.766325 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 848, "felt:has_geometry": true, "felt:h3_index": 644719852873437462, "STATEFP": 6, "PLACEFP": 24918, "PLACENS": 2612481, "GEOID": 624918, "NAME": "Forest Ranch", "NAMELSAD": "Forest Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36089639, "AWATER": 0, "INTPTLAT": 39.8952041, "INTPTLON": -121.6704507, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 39.892880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 687, "felt:has_geometry": true, "felt:h3_index": 644719852980995169, "STATEFP": 6, "PLACEFP": 14442, "PLACENS": 2612478, "GEOID": 614442, "NAME": "Cohasset", "NAMELSAD": "Cohasset CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 64868861, "AWATER": 0, "INTPTLAT": 39.9021522, "INTPTLON": -121.7453682, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -121.739502, 39.901309 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1443, "felt:has_geometry": true, "felt:h3_index": 644719855523273364, "STATEFP": 6, "PLACEFP": 74186, "PLACENS": 2612488, "GEOID": 674186, "NAME": "Stirling City", "NAMELSAD": "Stirling City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3048650, "AWATER": 2150, "INTPTLAT": 39.9049706, "INTPTLON": -121.5372635, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 39.901309 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 607, "felt:has_geometry": true, "felt:h3_index": 644719856012416565, "STATEFP": 6, "PLACEFP": 9324, "PLACENS": 2612475, "GEOID": 609324, "NAME": "Butte Valley", "NAMELSAD": "Butte Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47368451, "AWATER": 29332, "INTPTLAT": 39.6688146, "INTPTLON": -121.6458877, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 39.664914 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 664, "felt:has_geometry": true, "felt:h3_index": 644719856145358945, "STATEFP": 6, "PLACEFP": 12818, "PLACENS": 2612476, "GEOID": 612818, "NAME": "Cherokee", "NAMELSAD": "Cherokee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4533846, "AWATER": 442052, "INTPTLAT": 39.6508775, "INTPTLON": -121.5336463, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 39.647997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 154, "felt:has_geometry": true, "felt:h3_index": 644719857056874881, "STATEFP": 6, "PLACEFP": 13014, "PLACENS": 2409447, "GEOID": 613014, "NAME": "Chico", "NAMELSAD": "Chico city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89228953, "AWATER": 445035, "INTPTLAT": 39.7589514, "INTPTLON": -121.8177197, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 39.757880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 605, "felt:has_geometry": true, "felt:h3_index": 644719857380923420, "STATEFP": 6, "PLACEFP": 9310, "PLACENS": 2612473, "GEOID": 609310, "NAME": "Butte Creek Canyon", "NAMELSAD": "Butte Creek Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 53133631, "AWATER": 68391, "INTPTLAT": 39.744502, "INTPTLON": -121.7071314, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 761, "felt:has_geometry": true, "felt:h3_index": 644719857471115969, "STATEFP": 6, "PLACEFP": 20270, "PLACENS": 2408696, "GEOID": 620270, "NAME": "Durham", "NAMELSAD": "Durham CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 211567384, "AWATER": 393109, "INTPTLAT": 39.6293576, "INTPTLON": -121.7907705, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -121.783447, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1586, "felt:has_geometry": true, "felt:h3_index": 644719858703730989, "STATEFP": 6, "PLACEFP": 86678, "PLACENS": 2612489, "GEOID": 686678, "NAME": "Yankee Hill", "NAMELSAD": "Yankee Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15609188, "AWATER": 0, "INTPTLAT": 39.7007088, "INTPTLON": -121.5146882, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 39.698734 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1402, "felt:has_geometry": true, "felt:h3_index": 644719861002316968, "STATEFP": 6, "PLACEFP": 71778, "PLACENS": 2583139, "GEOID": 671778, "NAME": "Sierra City", "NAMELSAD": "Sierra City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569937, "AWATER": 728, "INTPTLAT": 39.5726584, "INTPTLON": -120.6276165, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 39.571822 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1059, "felt:has_geometry": true, "felt:h3_index": 644719861379633585, "STATEFP": 6, "PLACEFP": 41789, "PLACENS": 2408619, "GEOID": 641789, "NAME": "Little Grass Valley", "NAMELSAD": "Little Grass Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25897822, "AWATER": 0, "INTPTLAT": 39.7252456, "INTPTLON": -120.9590728, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 39.724089 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1566, "felt:has_geometry": true, "felt:h3_index": 644719862260292932, "STATEFP": 6, "PLACEFP": 85086, "PLACENS": 2409587, "GEOID": 685086, "NAME": "Whitehawk", "NAMELSAD": "Whitehawk CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693778, "AWATER": 0, "INTPTLAT": 39.7206086, "INTPTLON": -120.5535831, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -120.552979, 39.715638 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 681, "felt:has_geometry": true, "felt:h3_index": 644719862371191632, "STATEFP": 6, "PLACEFP": 14106, "PLACENS": 2407637, "GEOID": 614106, "NAMELSAD": "Clio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1514932, "AWATER": 0, "INTPTLAT": 39.754217, "INTPTLON": -120.566728, "NAME": "Clio,Mabie,C-Road,Valley Ranch", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -120.563965, 39.749434 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 955, "felt:has_geometry": true, "felt:h3_index": 644719862680070312, "STATEFP": 6, "PLACEFP": 36735, "PLACENS": 2408431, "GEOID": 636735, "NAMELSAD": "Iron Horse CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20055716, "AWATER": 0, "INTPTLAT": 39.7804812, "INTPTLON": -120.4822908, "NAME": "Iron Horse,Gold Mountain", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 617, "felt:has_geometry": true, "felt:h3_index": 644719863138919603, "STATEFP": 6, "PLACEFP": 10004, "PLACENS": 2582957, "GEOID": 610004, "NAME": "Calpine", "NAMELSAD": "Calpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1838557, "AWATER": 5712, "INTPTLAT": 39.663381, "INTPTLON": -120.4392769, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 39.664914 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 966, "felt:has_geometry": true, "felt:h3_index": 644719863315242262, "STATEFP": 6, "PLACEFP": 37512, "PLACENS": 2408450, "GEOID": 637512, "NAME": "Johnsville", "NAMELSAD": "Johnsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35638914, "AWATER": 134828, "INTPTLAT": 39.7697097, "INTPTLON": -120.6997827, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 39.766325 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1286, "felt:has_geometry": true, "felt:h3_index": 644719863603222288, "STATEFP": 6, "PLACEFP": 57828, "PLACENS": 2409082, "GEOID": 657828, "NAMELSAD": "Plumas Eureka CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10294401, "AWATER": 0, "INTPTLAT": 39.7982418, "INTPTLON": -120.664441, "NAME": "Plumas Eureka,Mohawk Vista,Blairsden", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 39.800096 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 887, "felt:has_geometry": true, "felt:h3_index": 644719864174749876, "STATEFP": 6, "PLACEFP": 30560, "PLACENS": 2408311, "GEOID": 630560, "NAME": "Graeagle", "NAMELSAD": "Graeagle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28666635, "AWATER": 147558, "INTPTLAT": 39.7524774, "INTPTLON": -120.6454492, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -120.640869, 39.749434 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 891, "felt:has_geometry": true, "felt:h3_index": 644719865152622803, "STATEFP": 6, "PLACEFP": 30714, "PLACENS": 2628735, "GEOID": 630714, "NAME": "Graniteville", "NAMELSAD": "Graniteville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3853000, "AWATER": 0, "INTPTLAT": 39.4443656, "INTPTLON": -120.7360303, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -120.728760, 39.444678 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 885, "felt:has_geometry": true, "felt:h3_index": 644719865476942560, "STATEFP": 6, "PLACEFP": 30420, "PLACENS": 2583027, "GEOID": 630420, "NAME": "Goodyears Bar", "NAMELSAD": "Goodyears Bar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5309072, "AWATER": 43381, "INTPTLAT": 39.552354, "INTPTLON": -120.8931017, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 39.546412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 756, "felt:has_geometry": true, "felt:h3_index": 644719865958048474, "STATEFP": 6, "PLACEFP": 19794, "PLACENS": 2583000, "GEOID": 619794, "NAME": "Downieville", "NAMELSAD": "Downieville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8237935, "AWATER": 14330, "INTPTLAT": 39.5786434, "INTPTLON": -120.8164052, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -120.816650, 39.580290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6, "PLACEFP": 16630, "PLACENS": 2407668, "GEOID": 616630, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530, "AWATER": 0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.310791, 40.388397 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 911, "felt:has_geometry": true, "felt:h3_index": 644719881235613325, "STATEFP": 6, "PLACEFP": 32036, "PLACENS": 2813350, "GEOID": 632036, "NAME": "Happy Valley", "NAMELSAD": "Happy Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43746583, "AWATER": 260613, "INTPTLAT": 40.4661408, "INTPTLON": -122.4179692, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 40.463666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 313, "felt:has_geometry": true, "felt:h3_index": 644719881388344180, "STATEFP": 6, "PLACEFP": 2042, "PLACENS": 2409706, "GEOID": 602042, "NAME": "Anderson", "NAMELSAD": "Anderson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18210820, "AWATER": 466513, "INTPTLAT": 40.4497548, "INTPTLON": -122.2950698, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 40.446947 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 294, "felt:has_geometry": true, "felt:h3_index": 644719882398990498, "STATEFP": 6, "PLACEFP": 59892, "PLACENS": 2411527, "GEOID": 659892, "NAME": "Red Bluff", "NAMELSAD": "Red Bluff city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19582197, "AWATER": 295207, "INTPTLAT": 40.1735147, "INTPTLON": -122.2415247, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 40.170479 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1007, "felt:has_geometry": true, "felt:h3_index": 644719883894269667, "STATEFP": 6, "PLACEFP": 39460, "PLACENS": 2628747, "GEOID": 639460, "NAME": "Lake California", "NAMELSAD": "Lake California CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16346691, "AWATER": 862108, "INTPTLAT": 40.3583551, "INTPTLON": -122.2088428, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 40.354917 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 722, "felt:has_geometry": true, "felt:h3_index": 644719884019783468, "STATEFP": 6, "PLACEFP": 17876, "PLACENS": 2804439, "GEOID": 617876, "NAME": "Dales", "NAMELSAD": "Dales CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1671161, "AWATER": 21566, "INTPTLAT": 40.3179889, "INTPTLON": -122.0538444, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 550, "felt:has_geometry": true, "felt:h3_index": 644719884450064174, "STATEFP": 6, "PLACEFP": 5276, "PLACENS": 2628710, "GEOID": 605276, "NAME": "Bend", "NAMELSAD": "Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7548202, "AWATER": 663196, "INTPTLAT": 40.2550916, "INTPTLON": -122.2109161, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 40.254377 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAME": "Weaverville", "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.926025, 40.738933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1599, "felt:has_geometry": true, "felt:h3_index": 644719887281349729, "STATEFP": 6, "PLACEFP": 41278, "PLACENS": 2408603, "GEOID": 641278, "NAME": "Lewiston", "NAMELSAD": "Lewiston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 51843522, "AWATER": 0, "INTPTLAT": 40.6969309, "INTPTLON": -122.8225094, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.816162, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 755, "felt:has_geometry": true, "felt:h3_index": 644719887485913369, "STATEFP": 6, "PLACEFP": 19724, "PLACENS": 2582999, "GEOID": 619724, "NAME": "Douglas City", "NAMELSAD": "Douglas City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799839, "AWATER": 32384, "INTPTLAT": 40.6449532, "INTPTLON": -122.9274263, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.926025, 40.638967 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 861, "felt:has_geometry": true, "felt:h3_index": 644719888692847857, "STATEFP": 6, "PLACEFP": 26056, "PLACENS": 2408262, "GEOID": 626056, "NAME": "French Gulch", "NAMELSAD": "French Gulch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31940354, "AWATER": 94840, "INTPTLAT": 40.7187929, "INTPTLON": -122.6293566, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1229, "felt:has_geometry": true, "felt:h3_index": 644719890515136884, "STATEFP": 6, "PLACEFP": 53882, "PLACENS": 2813354, "GEOID": 653882, "NAME": "Ono", "NAMELSAD": "Ono CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931419, "AWATER": 7877, "INTPTLAT": 40.4781165, "INTPTLON": -122.6254908, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.618408, 40.472024 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1393, "felt:has_geometry": true, "felt:h3_index": 644719892593200352, "STATEFP": 6, "PLACEFP": 71218, "PLACENS": 2583135, "GEOID": 671218, "NAME": "Shasta", "NAMELSAD": "Shasta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28306682, "AWATER": 11513, "INTPTLAT": 40.5920212, "INTPTLON": -122.477899, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 40.588928 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 985, "felt:has_geometry": true, "felt:h3_index": 644719892813896067, "STATEFP": 6, "PLACEFP": 38352, "PLACENS": 2583046, "GEOID": 638352, "NAME": "Keswick", "NAMELSAD": "Keswick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8778129, "AWATER": 325908, "INTPTLAT": 40.6129587, "INTPTLON": -122.4607792, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 947, "felt:has_geometry": true, "felt:h3_index": 644719892923169587, "STATEFP": 6, "PLACEFP": 36252, "PLACENS": 2813333, "GEOID": 636252, "NAME": "Igo", "NAMELSAD": "Igo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2632527, "AWATER": 1954, "INTPTLAT": 40.4977403, "INTPTLON": -122.5496208, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 40.497092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 659, "felt:has_geometry": true, "felt:h3_index": 644719893161305985, "STATEFP": 6, "PLACEFP": 12415, "PLACENS": 2813348, "GEOID": 612415, "NAME": "Centerville", "NAMELSAD": "Centerville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20842577, "AWATER": 105845, "INTPTLAT": 40.5429017, "INTPTLON": -122.4645048, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 40.538852 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6, "PLACEFP": 71568, "PLACENS": 2408728, "GEOID": 671568, "NAME": "Shingletown", "NAMELSAD": "Shingletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619, "AWATER": 177508, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 40.505446 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1107, "felt:has_geometry": true, "felt:h3_index": 644719895002153130, "STATEFP": 6, "PLACEFP": 45512, "PLACENS": 2408168, "GEOID": 645512, "NAME": "Manton", "NAMELSAD": "Manton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45833424, "AWATER": 67403, "INTPTLAT": 40.4266788, "INTPTLON": -121.8504212, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 40.421860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1569, "felt:has_geometry": true, "felt:h3_index": 644719895961197813, "STATEFP": 6, "PLACEFP": 85250, "PLACENS": 2813357, "GEOID": 685250, "NAME": "Whitmore", "NAMELSAD": "Whitmore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16909590, "AWATER": 14380, "INTPTLAT": 40.61251, "INTPTLON": -121.9359064, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1256, "felt:has_geometry": true, "felt:h3_index": 644719900619086381, "STATEFP": 6, "PLACEFP": 56196, "PLACENS": 2628773, "GEOID": 656196, "NAME": "Paynes Creek", "NAMELSAD": "Paynes Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8887673, "AWATER": 3777, "INTPTLAT": 40.3418999, "INTPTLON": -121.9249741, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 40.338170 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1140, "felt:has_geometry": true, "felt:h3_index": 644719901233689386, "STATEFP": 6, "PLACEFP": 47794, "PLACENS": 2408836, "GEOID": 647794, "NAME": "Mineral", "NAMELSAD": "Mineral CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 114744267, "AWATER": 286834, "INTPTLAT": 40.4027126, "INTPTLON": -121.5508439, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAME": "Jones Valley", "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1160, "felt:has_geometry": true, "felt:h3_index": 644719905524223196, "STATEFP": 6, "PLACEFP": 48998, "PLACENS": 2408863, "GEOID": 648998, "NAME": "Montgomery Creek", "NAMELSAD": "Montgomery Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8536890, "AWATER": 11338, "INTPTLAT": 40.8428384, "INTPTLON": -121.9206607, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 40.838749 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1349, "felt:has_geometry": true, "felt:h3_index": 644719906000834627, "STATEFP": 6, "PLACEFP": 63134, "PLACENS": 2409216, "GEOID": 663134, "NAME": "Round Mountain", "NAMELSAD": "Round Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4342857, "AWATER": 17581, "INTPTLAT": 40.7974631, "INTPTLON": -121.9379875, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.797177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1139, "felt:has_geometry": true, "felt:h3_index": 644719907922167830, "STATEFP": 6, "PLACEFP": 47724, "PLACENS": 2408834, "GEOID": 647724, "NAME": "Millville", "NAMELSAD": "Millville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20839153, "AWATER": 433331, "INTPTLAT": 40.5595689, "INTPTLON": -122.1755686, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 40.555548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1242, "felt:has_geometry": true, "felt:h3_index": 644719908070632019, "STATEFP": 6, "PLACEFP": 55296, "PLACENS": 2409021, "GEOID": 655296, "NAME": "Palo Cedro", "NAMELSAD": "Palo Cedro CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21184711, "AWATER": 280522, "INTPTLAT": 40.566236, "INTPTLON": -122.2428371, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.244873, 40.563895 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 274, "felt:has_geometry": true, "felt:h3_index": 644719908610551070, "STATEFP": 6, "PLACEFP": 71225, "PLACENS": 2411877, "GEOID": 671225, "NAME": "Shasta Lake", "NAMELSAD": "Shasta Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28229509, "AWATER": 14724, "INTPTLAT": 40.6765637, "INTPTLON": -122.3809091, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 40.672306 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 547, "felt:has_geometry": true, "felt:h3_index": 644719908744222592, "STATEFP": 6, "PLACEFP": 4926, "PLACENS": 2582942, "GEOID": 604926, "NAME": "Bella Vista", "NAMELSAD": "Bella Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68485004, "AWATER": 508710, "INTPTLAT": 40.6512049, "INTPTLON": -122.2563699, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 40.647304 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1168, "felt:has_geometry": true, "felt:h3_index": 644719908809770788, "STATEFP": 6, "PLACEFP": 49558, "PLACENS": 2628760, "GEOID": 649558, "NAME": "Mountain Gate", "NAMELSAD": "Mountain Gate CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5115620, "AWATER": 0, "INTPTLAT": 40.7184558, "INTPTLON": -122.3262249, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.321777, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 273, "felt:has_geometry": true, "felt:h3_index": 644719909015799626, "STATEFP": 6, "PLACEFP": 59920, "PLACENS": 2411531, "GEOID": 659920, "NAME": "Redding", "NAMELSAD": "Redding city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 154023453, "AWATER": 3904619, "INTPTLAT": 40.5702768, "INTPTLON": -122.3667659, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1213, "felt:has_geometry": true, "felt:h3_index": 644719909505289381, "STATEFP": 6, "PLACEFP": 53140, "PLACENS": 2813353, "GEOID": 653140, "NAME": "Oak Run", "NAMELSAD": "Oak Run CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7803833, "AWATER": 12670, "INTPTLAT": 40.6941964, "INTPTLON": -122.0250083, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 40.688969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1316, "felt:has_geometry": true, "felt:h3_index": 644719912127851366, "STATEFP": 6, "PLACEFP": 59604, "PLACENS": 2409139, "GEOID": 659604, "NAME": "Rancho Tehama Reserve", "NAMELSAD": "Rancho Tehama Reserve CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30267928, "AWATER": 200213, "INTPTLAT": 40.0040029, "INTPTLON": -122.4283397, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 40.002372 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 841, "felt:has_geometry": true, "felt:h3_index": 644719912447174310, "STATEFP": 6, "PLACEFP": 24568, "PLACENS": 2628732, "GEOID": 624568, "NAME": "Flournoy", "NAMELSAD": "Flournoy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15165230, "AWATER": 0, "INTPTLAT": 39.928339, "INTPTLON": -122.445793, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1252, "felt:has_geometry": true, "felt:h3_index": 644719917368957665, "STATEFP": 6, "PLACEFP": 56042, "PLACENS": 2628772, "GEOID": 656042, "NAME": "Paskenta", "NAMELSAD": "Paskenta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2799215, "AWATER": 0, "INTPTLAT": 39.8832746, "INTPTLON": -122.5458335, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 39.884450 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 96, "felt:has_geometry": true, "felt:h3_index": 644719918373734998, "STATEFP": 6, "PLACEFP": 16322, "PLACENS": 2410231, "GEOID": 616322, "NAME": "Corning", "NAMELSAD": "Corning city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9186897, "AWATER": 0, "INTPTLAT": 39.9282003, "INTPTLON": -122.1820088, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.178955, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6, "PLACEFP": 57666, "PLACENS": 2813355, "GEOID": 657666, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433, "AWATER": 0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 40.354917 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1036, "felt:has_geometry": true, "felt:h3_index": 644719930425005838, "STATEFP": 6, "PLACEFP": 40536, "PLACENS": 2628748, "GEOID": 640536, "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 926091, "AWATER": 0, "INTPTLAT": 40.072141, "INTPTLON": -122.1573122, "NAME": "Las Flores,Gerber,Proberta", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 40.069665 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1078, "felt:has_geometry": true, "felt:h3_index": 644719934649223755, "STATEFP": 6, "PLACEFP": 44140, "PLACENS": 2408138, "GEOID": 644140, "NAMELSAD": "Los Molinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5637051, "AWATER": 80526, "INTPTLAT": 40.0270736, "INTPTLON": -122.0979711, "NAME": "Los Molinos,Tehama", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.091064, 40.027614 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1324, "felt:has_geometry": true, "felt:h3_index": 644719934891659594, "STATEFP": 6, "PLACEFP": 60592, "PLACENS": 2628783, "GEOID": 660592, "NAME": "Richfield", "NAMELSAD": "Richfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1417240, "AWATER": 0, "INTPTLAT": 39.9738012, "INTPTLON": -122.1732337, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 39.968701 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1527, "felt:has_geometry": true, "felt:h3_index": 644719935080401107, "STATEFP": 6, "PLACEFP": 82786, "PLACENS": 2628796, "GEOID": 682786, "NAME": "Vina", "NAMELSAD": "Vina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3501362, "AWATER": 0, "INTPTLAT": 39.93418, "INTPTLON": -122.0517059, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 39.935013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1254, "felt:has_geometry": true, "felt:h3_index": 644719982062547848, "STATEFP": 6, "PLACEFP": 56140, "PLACENS": 2583109, "GEOID": 656140, "NAME": "Patton Village", "NAMELSAD": "Patton Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9040567, "AWATER": 0, "INTPTLAT": 40.1407242, "INTPTLON": -120.178123, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -120.179443, 40.136891 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 921, "felt:has_geometry": true, "felt:h3_index": 644719982293045926, "STATEFP": 6, "PLACEFP": 33336, "PLACENS": 2583035, "GEOID": 633336, "NAME": "Herlong", "NAMELSAD": "Herlong CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4320220, "AWATER": 0, "INTPTLAT": 40.1417221, "INTPTLON": -120.1396567, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 40.136891 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 757, "felt:has_geometry": true, "felt:h3_index": 644719986573508608, "STATEFP": 6, "PLACEFP": 19878, "PLACENS": 2583001, "GEOID": 619878, "NAME": "Doyle", "NAMELSAD": "Doyle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15817150, "AWATER": 1998, "INTPTLAT": 40.027223, "INTPTLON": -120.1153701, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 40.027614 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6, "PLACEFP": 41782, "PLACENS": 2628751, "GEOID": 641782, "NAME": "Litchfield", "NAMELSAD": "Litchfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458, "AWATER": 0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 40.388397 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 251, "felt:has_geometry": true, "felt:h3_index": 644719990755819776, "STATEFP": 6, "PLACEFP": 77364, "PLACENS": 2412017, "GEOID": 677364, "NAME": "Susanville", "NAMELSAD": "Susanville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20507839, "AWATER": 218688, "INTPTLAT": 40.433674, "INTPTLON": -120.6283062, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 40.430224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 965, "felt:has_geometry": true, "felt:h3_index": 644719994481830603, "STATEFP": 6, "PLACEFP": 37484, "PLACENS": 2583042, "GEOID": 637484, "NAME": "Johnstonville", "NAMELSAD": "Johnstonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22246440, "AWATER": 108930, "INTPTLAT": 40.3801984, "INTPTLON": -120.5861336, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 961, "felt:has_geometry": true, "felt:h3_index": 644719995172245941, "STATEFP": 6, "PLACEFP": 37134, "PLACENS": 2611437, "GEOID": 637134, "NAME": "Janesville", "NAMELSAD": "Janesville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87578550, "AWATER": 50416, "INTPTLAT": 40.3011047, "INTPTLON": -120.4903177, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -120.487061, 40.296287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAME": "Kep'el", "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 41.286062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1544, "felt:has_geometry": true, "felt:h3_index": 644720397144171416, "STATEFP": 6, "PLACEFP": 83730, "PLACENS": 2805900, "GEOID": 683730, "NAME": "Wautec", "NAMELSAD": "Wautec CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5973832, "AWATER": 0, "INTPTLAT": 41.3543145, "INTPTLON": -123.8622878, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -123.859863, 41.360319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 991, "felt:has_geometry": true, "felt:h3_index": 644720408322448306, "STATEFP": 6, "PLACEFP": 38702, "PLACENS": 2408492, "GEOID": 638702, "NAME": "Klamath", "NAMELSAD": "Klamath CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44592620, "AWATER": 0, "INTPTLAT": 41.5728585, "INTPTLON": -124.0556058, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 899, "felt:has_geometry": true, "felt:h3_index": 644721733138311369, "STATEFP": 6, "PLACEFP": 31099, "PLACENS": 2408330, "GEOID": 631099, "NAME": "Green Valley", "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21678078, "AWATER": 3847, "INTPTLAT": 38.2638424, "INTPTLON": -122.162496, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 38.264063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 390, "felt:has_geometry": true, "felt:h3_index": 644721733365930889, "STATEFP": 6, "PLACEFP": 1640, "PLACENS": 2409695, "GEOID": 601640, "NAME": "American Canyon", "NAMELSAD": "American Canyon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15780247, "AWATER": 102525, "INTPTLAT": 38.1790331, "INTPTLON": -122.2596023, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.177751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 29, "felt:has_geometry": true, "felt:h3_index": 644721733986016010, "STATEFP": 6, "PLACEFP": 72646, "PLACENS": 2411929, "GEOID": 672646, "NAME": "Sonoma", "NAMELSAD": "Sonoma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7105863, "AWATER": 0, "INTPTLAT": 38.2903313, "INTPTLON": -122.459831, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 38.289937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 354, "felt:has_geometry": true, "felt:h3_index": 644721734083250478, "STATEFP": 6, "PLACEFP": 50258, "PLACENS": 2411209, "GEOID": 650258, "NAME": "Napa", "NAMELSAD": "Napa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46714150, "AWATER": 810079, "INTPTLAT": 38.2978718, "INTPTLON": -122.3007407, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 476, "felt:has_geometry": true, "felt:h3_index": 644721734916323120, "STATEFP": 6, "PLACEFP": 23182, "PLACENS": 2410474, "GEOID": 623182, "NAME": "Fairfield", "NAMELSAD": "Fairfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107707592, "AWATER": 738306, "INTPTLAT": 38.2620602, "INTPTLON": -122.032386, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 38.264063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 477, "felt:has_geometry": true, "felt:h3_index": 644721735279050956, "STATEFP": 6, "PLACEFP": 81554, "PLACENS": 2412139, "GEOID": 681554, "NAME": "Vacaville", "NAMELSAD": "Vacaville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77363273, "AWATER": 600053, "INTPTLAT": 38.3586211, "INTPTLON": -121.9686015, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 25, "felt:has_geometry": true, "felt:h3_index": 644721735672430926, "STATEFP": 6, "PLACEFP": 75630, "PLACENS": 2411995, "GEOID": 675630, "NAME": "Suisun City", "NAMELSAD": "Suisun City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10373861, "AWATER": 156438, "INTPTLAT": 38.2483339, "INTPTLON": -122.0100659, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1406, "felt:has_geometry": true, "felt:h3_index": 644721736123308808, "STATEFP": 6, "PLACEFP": 71927, "PLACENS": 2583142, "GEOID": 671927, "NAME": "Silverado Resort", "NAMELSAD": "Silverado Resort CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4896980, "AWATER": 24818, "INTPTLAT": 38.3563023, "INTPTLON": -122.2563343, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1292, "felt:has_geometry": true, "felt:h3_index": 644721736992036100, "STATEFP": 6, "PLACEFP": 58226, "PLACENS": 2409091, "GEOID": 658226, "NAMELSAD": "Port Costa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 409759, "AWATER": 0, "INTPTLAT": 38.044543, "INTPTLON": -122.1849415, "NAME": "Port Costa,Crockett", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.178955, 38.039439 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 21, "felt:has_geometry": true, "felt:h3_index": 644721737460646404, "STATEFP": 6, "PLACEFP": 5290, "PLACENS": 2409833, "GEOID": 605290, "NAME": "Benicia", "NAMELSAD": "Benicia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33185399, "AWATER": 3386032, "INTPTLAT": 38.0727334, "INTPTLON": -122.1551689, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 38.074041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 243, "felt:has_geometry": true, "felt:h3_index": 644721737681884518, "STATEFP": 6, "PLACEFP": 33308, "PLACENS": 2410746, "GEOID": 633308, "NAMELSAD": "Hercules city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16608748, "AWATER": 35156475, "INTPTLAT": 38.0214271, "INTPTLON": -122.288929, "NAME": "Hercules,Rodeo", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 38.022131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 397, "felt:has_geometry": true, "felt:h3_index": 644721737833908141, "STATEFP": 6, "PLACEFP": 46114, "PLACENS": 2411045, "GEOID": 646114, "NAMELSAD": "Martinez city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32744877, "AWATER": 2607776, "INTPTLAT": 37.9981157, "INTPTLON": -122.1144193, "NAME": "Martinez,Mountain View,Alhambra Valley", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.113037, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 98, "felt:has_geometry": true, "felt:h3_index": 644721738430170984, "STATEFP": 6, "PLACEFP": 81666, "PLACENS": 2412142, "GEOID": 681666, "NAME": "Vallejo", "NAMELSAD": "Vallejo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78784262, "AWATER": 46317409, "INTPTLAT": 38.1069086, "INTPTLON": -122.2623386, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.108628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 355, "felt:has_geometry": true, "felt:h3_index": 644721741584868253, "STATEFP": 6, "PLACEFP": 64140, "PLACENS": 2411758, "GEOID": 664140, "NAME": "St. Helena", "NAMELSAD": "St. Helena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12838322, "AWATER": 327737, "INTPTLAT": 38.5128518, "INTPTLON": -122.4680218, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 982, "felt:has_geometry": true, "felt:h3_index": 644721742179512531, "STATEFP": 6, "PLACEFP": 38156, "PLACENS": 2583045, "GEOID": 638156, "NAME": "Kenwood", "NAMELSAD": "Kenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13381900, "AWATER": 0, "INTPTLAT": 38.4154075, "INTPTLON": -122.5387535, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 867, "felt:has_geometry": true, "felt:h3_index": 644721742913564084, "STATEFP": 6, "PLACEFP": 28014, "PLACENS": 2583021, "GEOID": 628014, "NAMELSAD": "Fulton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5047023, "AWATER": 0, "INTPTLAT": 38.4937089, "INTPTLON": -122.773417, "NAME": "Fulton,Larkfield-Wikiup", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.772217, 38.487995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 334, "felt:has_geometry": true, "felt:h3_index": 644721743088761758, "STATEFP": 6, "PLACEFP": 85922, "PLACENS": 2413495, "GEOID": 685922, "NAME": "Windsor", "NAMELSAD": "Windsor town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19260063, "AWATER": 60261, "INTPTLAT": 38.5420993, "INTPTLON": -122.8086133, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.805176, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 512, "felt:has_geometry": true, "felt:h3_index": 644721744154407233, "STATEFP": 6, "PLACEFP": 2168, "PLACENS": 2407744, "GEOID": 602168, "NAMELSAD": "Angwin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12507052, "AWATER": 108688, "INTPTLAT": 38.5778747, "INTPTLON": -122.4512239, "NAME": "Angwin,Deer Park", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 38.573938 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 391, "felt:has_geometry": true, "felt:h3_index": 644721745046755010, "STATEFP": 6, "PLACEFP": 9892, "PLACENS": 2409963, "GEOID": 609892, "NAME": "Calistoga", "NAMELSAD": "Calistoga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6673453, "AWATER": 46827, "INTPTLAT": 38.5814083, "INTPTLON": -122.5826961, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.574463, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1595, "felt:has_geometry": true, "felt:h3_index": 644721745632768365, "STATEFP": 6, "PLACEFP": 30028, "PLACENS": 2408299, "GEOID": 630028, "NAME": "Glen Ellen", "NAMELSAD": "Glen Ellen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5438518, "AWATER": 2744, "INTPTLAT": 38.3553229, "INTPTLON": -122.5433057, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 590, "felt:has_geometry": true, "felt:h3_index": 644721745922909084, "STATEFP": 6, "PLACEFP": 7848, "PLACENS": 2407898, "GEOID": 607848, "NAMELSAD": "Boyes Hot Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2746385, "AWATER": 0, "INTPTLAT": 38.3126328, "INTPTLON": -122.4887382, "NAME": "Boyes Hot Springs,Eldridge,Fetters Hot Springs-Agua Caliente", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 816, "felt:has_geometry": true, "felt:h3_index": 644721746443967017, "STATEFP": 6, "PLACEFP": 22510, "PLACENS": 2408064, "GEOID": 622510, "NAMELSAD": "El Verano CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2964283, "AWATER": 0, "INTPTLAT": 38.2974647, "INTPTLON": -122.4915444, "NAME": "El Verano,Temelec", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 217, "felt:has_geometry": true, "felt:h3_index": 644721747052855968, "STATEFP": 6, "PLACEFP": 70098, "PLACENS": 2411827, "GEOID": 670098, "NAME": "Santa Rosa", "NAMELSAD": "Santa Rosa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110141809, "AWATER": 451569, "INTPTLAT": 38.4458238, "INTPTLON": -122.7061814, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1419, "felt:has_geometry": true, "felt:h3_index": 644721747467622673, "STATEFP": 6, "PLACEFP": 72654, "PLACENS": 2805261, "GEOID": 672654, "NAMELSAD": "Sonoma State University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1081020, "AWATER": 0, "INTPTLAT": 38.3405648, "INTPTLON": -122.6728841, "NAME": "Sonoma State University,Rohnert Park,Cotati", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.673340, 38.341656 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 392, "felt:has_geometry": true, "felt:h3_index": 644721747833575956, "STATEFP": 6, "PLACEFP": 86930, "PLACENS": 2412323, "GEOID": 686930, "NAME": "Yountville", "NAMELSAD": "Yountville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3851793, "AWATER": 6876, "INTPTLAT": 38.3935118, "INTPTLON": -122.3655355, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 38.393339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1356, "felt:has_geometry": true, "felt:h3_index": 644721747861739331, "STATEFP": 6, "PLACEFP": 63400, "PLACENS": 2583124, "GEOID": 663400, "NAMELSAD": "Rutherford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350420, "AWATER": 10389, "INTPTLAT": 38.458864, "INTPTLON": -122.4288313, "NAME": "Rutherford,Oakville", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 38.453589 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 916, "felt:has_geometry": true, "felt:h3_index": 644721751107046290, "STATEFP": 6, "PLACEFP": 32340, "PLACENS": 2583031, "GEOID": 632340, "NAME": "Hartley", "NAMELSAD": "Hartley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16763354, "AWATER": 65391, "INTPTLAT": 38.4203928, "INTPTLON": -121.9508422, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 38.419166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 22, "felt:has_geometry": true, "felt:h3_index": 644721751384086856, "STATEFP": 6, "PLACEFP": 19402, "PLACENS": 2410343, "GEOID": 619402, "NAME": "Dixon", "NAMELSAD": "Dixon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18389794, "AWATER": 249127, "INTPTLAT": 38.447512, "INTPTLON": -121.8242225, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 808, "felt:has_geometry": true, "felt:h3_index": 644721751716803995, "STATEFP": 6, "PLACEFP": 22146, "PLACENS": 2408078, "GEOID": 622146, "NAME": "Elmira", "NAMELSAD": "Elmira CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1374924, "AWATER": 0, "INTPTLAT": 38.3523287, "INTPTLON": -121.9077188, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 936, "felt:has_geometry": true, "felt:h3_index": 644721752093549827, "STATEFP": 6, "PLACEFP": 34484, "PLACENS": 2583037, "GEOID": 634484, "NAME": "Hood", "NAMELSAD": "Hood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 816263, "AWATER": 0, "INTPTLAT": 38.3692915, "INTPTLON": -121.515488, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 38.367502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 675, "felt:has_geometry": true, "felt:h3_index": 644721752262400160, "STATEFP": 6, "PLACEFP": 13784, "PLACENS": 2582974, "GEOID": 613784, "NAME": "Clarksburg", "NAMELSAD": "Clarksburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5256094, "AWATER": 0, "INTPTLAT": 38.4193354, "INTPTLON": -121.5416175, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 38.419166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 859, "felt:has_geometry": true, "felt:h3_index": 644721752423147283, "STATEFP": 6, "PLACEFP": 25590, "PLACENS": 2583018, "GEOID": 625590, "NAME": "Freeport", "NAMELSAD": "Freeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 131496, "AWATER": 0, "INTPTLAT": 38.4629355, "INTPTLON": -121.5021071, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -121.497803, 38.462192 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 706, "felt:has_geometry": true, "felt:h3_index": 644721752646225988, "STATEFP": 6, "PLACEFP": 16714, "PLACENS": 2582985, "GEOID": 616714, "NAME": "Courtland", "NAMELSAD": "Courtland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4662083, "AWATER": 0, "INTPTLAT": 38.3329109, "INTPTLON": -121.5570263, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 38.333039 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 856, "felt:has_geometry": true, "felt:h3_index": 644721752829855008, "STATEFP": 6, "PLACEFP": 25506, "PLACENS": 2583017, "GEOID": 625506, "NAME": "Franklin", "NAMELSAD": "Franklin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5454315, "AWATER": 0, "INTPTLAT": 38.3675214, "INTPTLON": -121.461629, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -121.453857, 38.367502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 807, "felt:has_geometry": true, "felt:h3_index": 644721753555503523, "STATEFP": 6, "PLACEFP": 22104, "PLACENS": 2804443, "GEOID": 622104, "NAME": "El Macero", "NAMELSAD": "El Macero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1520806, "AWATER": 0, "INTPTLAT": 38.544019, "INTPTLON": -121.6851681, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -121.684570, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 23, "felt:has_geometry": true, "felt:h3_index": 644721754408758146, "STATEFP": 6, "PLACEFP": 60984, "PLACENS": 2410955, "GEOID": 660984, "NAME": "Rio Vista", "NAMELSAD": "Rio Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17094324, "AWATER": 1283585, "INTPTLAT": 38.1766715, "INTPTLON": -121.7034059, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -121.695557, 38.177751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 387, "felt:has_geometry": true, "felt:h3_index": 644721754442474178, "STATEFP": 6, "PLACEFP": 36882, "PLACENS": 2410122, "GEOID": 636882, "NAME": "Isleton", "NAMELSAD": "Isleton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1138589, "AWATER": 133509, "INTPTLAT": 38.161252, "INTPTLON": -121.6049577, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -121.607666, 38.160476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1537, "felt:has_geometry": true, "felt:h3_index": 644721756331221299, "STATEFP": 6, "PLACEFP": 83374, "PLACENS": 2409526, "GEOID": 683374, "NAME": "Walnut Grove", "NAMELSAD": "Walnut Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26419421, "AWATER": 1883606, "INTPTLAT": 38.2505944, "INTPTLON": -121.5349734, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1610, "felt:has_geometry": true, "felt:h3_index": 644721756662407266, "STATEFP": 6, "PLACEFP": 78568, "PLACENS": 2628795, "GEOID": 678568, "NAME": "Thornton", "NAMELSAD": "Thornton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5524658, "AWATER": 130915, "INTPTLAT": 38.2296592, "INTPTLON": -121.4260627, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -121.420898, 38.229550 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 297, "felt:has_geometry": true, "felt:h3_index": 644721759376263982, "STATEFP": 6, "PLACEFP": 86034, "PLACENS": 2412288, "GEOID": 686034, "NAME": "Winters", "NAMELSAD": "Winters city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7601165, "AWATER": 64542, "INTPTLAT": 38.5332708, "INTPTLON": -121.975473, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.530979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1161, "felt:has_geometry": true, "felt:h3_index": 644721760675158164, "STATEFP": 6, "PLACEFP": 49045, "PLACENS": 2583086, "GEOID": 649045, "NAME": "Monument Hills", "NAMELSAD": "Monument Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10328922, "AWATER": 0, "INTPTLAT": 38.6641053, "INTPTLON": -121.8753893, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -121.871338, 38.659778 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1101, "felt:has_geometry": true, "felt:h3_index": 644721761309348901, "STATEFP": 6, "PLACEFP": 45064, "PLACENS": 2583070, "GEOID": 645064, "NAME": "Madison", "NAMELSAD": "Madison CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4004365, "AWATER": 0, "INTPTLAT": 38.6749883, "INTPTLON": -121.9702536, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.676933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 596, "felt:has_geometry": true, "felt:h3_index": 644721762382294226, "STATEFP": 6, "PLACEFP": 8506, "PLACENS": 2805237, "GEOID": 608506, "NAME": "Brooks", "NAMELSAD": "Brooks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11146719, "AWATER": 0, "INTPTLAT": 38.7368801, "INTPTLON": -122.1468072, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.145996, 38.736946 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 820, "felt:has_geometry": true, "felt:h3_index": 644721762583755584, "STATEFP": 6, "PLACEFP": 22846, "PLACENS": 2408089, "GEOID": 622846, "NAME": "Esparto", "NAMELSAD": "Esparto CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11916729, "AWATER": 0, "INTPTLAT": 38.6934104, "INTPTLON": -122.0240465, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 38.694085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 496, "felt:has_geometry": true, "felt:h3_index": 644721763109407845, "STATEFP": 6, "PLACEFP": 996, "PLACENS": 2582932, "GEOID": 600996, "NAME": "Allendale", "NAMELSAD": "Allendale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15892908, "AWATER": 164542, "INTPTLAT": 38.4429856, "INTPTLON": -121.9833299, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1164, "felt:has_geometry": true, "felt:h3_index": 644721764727083330, "STATEFP": 6, "PLACEFP": 49432, "PLACENS": 2583087, "GEOID": 649432, "NAME": "Moskowite Corner", "NAMELSAD": "Moskowite Corner CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7338786, "AWATER": 11878, "INTPTLAT": 38.4438743, "INTPTLON": -122.1919904, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1509, "felt:has_geometry": true, "felt:h3_index": 644721765277335765, "STATEFP": 6, "PLACEFP": 81302, "PLACENS": 2628819, "GEOID": 681302, "NAME": "University of California-Davis", "NAMELSAD": "University of California-Davis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4473488, "AWATER": 0, "INTPTLAT": 38.5377038, "INTPTLON": -121.7578995, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 346, "felt:has_geometry": true, "felt:h3_index": 644721767494091681, "STATEFP": 6, "PLACEFP": 6000, "PLACENS": 2409837, "GEOID": 606000, "NAMELSAD": "Berkeley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27018309, "AWATER": 18712737, "INTPTLAT": 37.8656733, "INTPTLON": -122.2987247, "NAME": "Berkeley,Emeryville", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.866181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 344, "felt:has_geometry": true, "felt:h3_index": 644721767960709350, "STATEFP": 6, "PLACEFP": 562, "PLACENS": 2409669, "GEOID": 600562, "NAME": "Alameda", "NAMELSAD": "Alameda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26934009, "AWATER": 32581545, "INTPTLAT": 37.7419107, "INTPTLON": -122.2599139, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 323, "felt:has_geometry": true, "felt:h3_index": 644721768171489905, "STATEFP": 6, "PLACEFP": 70364, "PLACENS": 2411834, "GEOID": 670364, "NAMELSAD": "Sausalito city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4568773, "AWATER": 1276883, "INTPTLAT": 37.8583694, "INTPTLON": -122.4918436, "NAME": "Sausalito,Marin City", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 69, "felt:has_geometry": true, "felt:h3_index": 644721768297554245, "STATEFP": 6, "PLACEFP": 47710, "PLACENS": 2411109, "GEOID": 647710, "NAMELSAD": "Mill Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12385974, "AWATER": 218653, "INTPTLAT": 37.9081217, "INTPTLON": -122.5423253, "NAME": "Mill Valley,Tamalpais-Homestead Valley", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 70, "felt:has_geometry": true, "felt:h3_index": 644721768414402736, "STATEFP": 6, "PLACEFP": 78666, "PLACENS": 2413389, "GEOID": 678666, "NAMELSAD": "Tiburon town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11603822, "AWATER": 22626730, "INTPTLAT": 37.8867683, "INTPTLON": -122.4626194, "NAME": "Tiburon,Belvedere", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.883525 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 66, "felt:has_geometry": true, "felt:h3_index": 644721768589236761, "STATEFP": 6, "PLACEFP": 16462, "PLACENS": 2413247, "GEOID": 616462, "NAMELSAD": "Corte Madera town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8184887, "AWATER": 3216812, "INTPTLAT": 37.9318458, "INTPTLON": -122.5077378, "NAME": "Corte Madera,Strawberry,Alto", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.926868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1179, "felt:has_geometry": true, "felt:h3_index": 644721768851393033, "STATEFP": 6, "PLACEFP": 49950, "PLACENS": 2408888, "GEOID": 649950, "NAME": "Muir Beach", "NAMELSAD": "Muir Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1276408, "AWATER": 0, "INTPTLAT": 37.8615645, "INTPTLON": -122.5803215, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.574463, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 324, "felt:has_geometry": true, "felt:h3_index": 644721769203154334, "STATEFP": 6, "PLACEFP": 54232, "PLACENS": 2411334, "GEOID": 654232, "NAME": "Orinda", "NAMELSAD": "Orinda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33285592, "AWATER": 40530, "INTPTLAT": 37.8816103, "INTPTLON": -122.1685955, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.883525 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 483, "felt:has_geometry": true, "felt:h3_index": 644721769512851616, "STATEFP": 6, "PLACEFP": 135, "PLACENS": 2582926, "GEOID": 600135, "NAMELSAD": "Acalanes Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1193569, "AWATER": 0, "INTPTLAT": 37.904725, "INTPTLON": -122.0785674, "NAME": "Acalanes Ridge,Lafayette,Saranap", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.900865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 197, "felt:has_geometry": true, "felt:h3_index": 644721769761420697, "STATEFP": 6, "PLACEFP": 56938, "PLACENS": 2411418, "GEOID": 656938, "NAME": "Piedmont", "NAMELSAD": "Piedmont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4402396, "AWATER": 0, "INTPTLAT": 37.8225447, "INTPTLON": -122.2300241, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.222900, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 244, "felt:has_geometry": true, "felt:h3_index": 644721770010518059, "STATEFP": 6, "PLACEFP": 49187, "PLACENS": 2413013, "GEOID": 649187, "NAME": "Moraga", "NAMELSAD": "Moraga town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24504014, "AWATER": 22901, "INTPTLAT": 37.8456927, "INTPTLON": -122.123217, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.124023, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 326, "felt:has_geometry": true, "felt:h3_index": 644721770273784531, "STATEFP": 6, "PLACEFP": 60620, "PLACENS": 2410939, "GEOID": 660620, "NAMELSAD": "Richmond city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77809538, "AWATER": 58194574, "INTPTLAT": 37.9522779, "INTPTLON": -122.360609, "NAME": "Richmond,San Pablo,Rollingwood,North Richmond", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.354736, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 814, "felt:has_geometry": true, "felt:h3_index": 644721770557545161, "STATEFP": 6, "PLACEFP": 22454, "PLACENS": 2408062, "GEOID": 622454, "NAMELSAD": "El Sobrante CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8019027, "AWATER": 0, "INTPTLAT": 37.9736239, "INTPTLON": -122.303141, "NAME": "El Sobrante,East Richmond Heights", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 538, "felt:has_geometry": true, "felt:h3_index": 644721770680073371, "STATEFP": 6, "PLACEFP": 4470, "PLACENS": 2582940, "GEOID": 604470, "NAMELSAD": "Bayview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 789227, "AWATER": 209670, "INTPTLAT": 38.0062344, "INTPTLON": -122.3201647, "NAME": "Bayview,Montalvin Manor,Pinole,Tara Hills", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.321777, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 242, "felt:has_geometry": true, "felt:h3_index": 644721771141321579, "STATEFP": 6, "PLACEFP": 21796, "PLACENS": 2410410, "GEOID": 621796, "NAMELSAD": "El Cerrito city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9509903, "AWATER": 0, "INTPTLAT": 37.9195744, "INTPTLON": -122.302519, "NAME": "El Cerrito,Albany,Kensington", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.918201 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 72, "felt:has_geometry": true, "felt:h3_index": 644721771480288549, "STATEFP": 6, "PLACEFP": 8310, "PLACENS": 2409912, "GEOID": 608310, "NAMELSAD": "Brisbane city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7731744, "AWATER": 43981510, "INTPTLAT": 37.6757495, "INTPTLON": -122.383302, "NAME": "Brisbane,South San Francisco", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.675125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 179, "felt:has_geometry": true, "felt:h3_index": 644721771941101840, "STATEFP": 6, "PLACEFP": 9066, "PLACENS": 2409945, "GEOID": 609066, "NAMELSAD": "Burlingame city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11378235, "AWATER": 4261690, "INTPTLAT": 37.5899515, "INTPTLON": -122.3633425, "NAME": "Burlingame,Hillsborough", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.588119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 63, "felt:has_geometry": true, "felt:h3_index": 644721772034835745, "STATEFP": 6, "PLACEFP": 65028, "PLACENS": 2411778, "GEOID": 665028, "NAMELSAD": "San Bruno city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14215240, "AWATER": 0, "INTPTLAT": 37.6255598, "INTPTLON": -122.4313965, "NAME": "San Bruno,Millbrae", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.622934 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 594, "felt:has_geometry": true, "felt:h3_index": 644721772525304616, "STATEFP": 6, "PLACEFP": 8338, "PLACENS": 2407907, "GEOID": 608338, "NAME": "Broadmoor", "NAMELSAD": "Broadmoor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1118795, "AWATER": 0, "INTPTLAT": 37.6914953, "INTPTLON": -122.4813393, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.692514 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 180, "felt:has_geometry": true, "felt:h3_index": 644721773276848277, "STATEFP": 6, "PLACEFP": 17918, "PLACENS": 2410291, "GEOID": 617918, "NAMELSAD": "Daly City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19783516, "AWATER": 0, "INTPTLAT": 37.686193, "INTPTLON": -122.4686688, "NAME": "Daly City,Colma", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.683820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 351, "felt:has_geometry": true, "felt:h3_index": 644721773560687748, "STATEFP": 6, "PLACEFP": 68084, "PLACENS": 2411794, "GEOID": 668084, "NAME": "San Leandro", "NAMELSAD": "San Leandro city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34507478, "AWATER": 5587445, "INTPTLAT": 37.7033683, "INTPTLON": -122.163036, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 37.701207 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 316, "felt:has_geometry": true, "felt:h3_index": 644721773630909779, "STATEFP": 6, "PLACEFP": 53000, "PLACENS": 2411292, "GEOID": 653000, "NAME": "Oakland", "NAMELSAD": "Oakland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 144944705, "AWATER": 57160794, "INTPTLAT": 37.7698464, "INTPTLON": -122.22569, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.222900, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 523, "felt:has_geometry": true, "felt:h3_index": 644721774305353045, "STATEFP": 6, "PLACEFP": 2980, "PLACENS": 2407773, "GEOID": 602980, "NAMELSAD": "Ashland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4772238, "AWATER": 0, "INTPTLAT": 37.6941967, "INTPTLON": -122.1159367, "NAME": "Ashland,San Lorenzo,Cherryland", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.113037, 37.692514 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1188, "felt:has_geometry": true, "felt:h3_index": 644721775715343254, "STATEFP": 6, "PLACEFP": 51280, "PLACENS": 2628764, "GEOID": 651280, "NAME": "Nicasio", "NAMELSAD": "Nicasio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3379839, "AWATER": 0, "INTPTLAT": 38.0606215, "INTPTLON": -122.7008217, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.695312, 38.056742 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1368, "felt:has_geometry": true, "felt:h3_index": 644721776524472555, "STATEFP": 6, "PLACEFP": 67070, "PLACENS": 2409255, "GEOID": 667070, "NAMELSAD": "San Geronimo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3906938, "AWATER": 0, "INTPTLAT": 38.0067128, "INTPTLON": -122.6632659, "NAME": "San Geronimo,Lagunitas-Forest Knolls", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.662354, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 953, "felt:has_geometry": true, "felt:h3_index": 644721777604297910, "STATEFP": 6, "PLACEFP": 36616, "PLACENS": 2408428, "GEOID": 636616, "NAMELSAD": "Inverness CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16575794, "AWATER": 1130139, "INTPTLAT": 38.0827964, "INTPTLON": -122.8549425, "NAME": "Inverness,Point Reyes Station", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.849121, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 133, "felt:has_geometry": true, "felt:h3_index": 644721778397234201, "STATEFP": 6, "PLACEFP": 52582, "PLACENS": 2411283, "GEOID": 652582, "NAME": "Novato", "NAMELSAD": "Novato city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 71159604, "AWATER": 1320903, "INTPTLAT": 38.0850865, "INTPTLON": -122.5482145, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 568, "felt:has_geometry": true, "felt:h3_index": 644721778689154443, "STATEFP": 6, "PLACEFP": 6982, "PLACENS": 2407857, "GEOID": 606982, "NAME": "Black Point-Green Point", "NAMELSAD": "Black Point-Green Point CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7322458, "AWATER": 181453, "INTPTLAT": 38.1106512, "INTPTLON": -122.5190972, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 38.108628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1263, "felt:has_geometry": true, "felt:h3_index": 644721779093558966, "STATEFP": 6, "PLACEFP": 56786, "PLACENS": 2805236, "GEOID": 656786, "NAME": "Petaluma Center", "NAMELSAD": "Petaluma Center CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3038425, "AWATER": 0, "INTPTLAT": 38.2506525, "INTPTLON": -122.788841, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.783203, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 216, "felt:has_geometry": true, "felt:h3_index": 644721779234257729, "STATEFP": 6, "PLACEFP": 56784, "PLACENS": 2411407, "GEOID": 656784, "NAME": "Petaluma", "NAMELSAD": "Petaluma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37333943, "AWATER": 277684, "INTPTLAT": 38.2422507, "INTPTLON": -122.6287687, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 38.238180 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1258, "felt:has_geometry": true, "felt:h3_index": 644721779297944868, "STATEFP": 6, "PLACEFP": 56476, "PLACENS": 2583110, "GEOID": 656476, "NAME": "Penngrove", "NAMELSAD": "Penngrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10446983, "AWATER": 0, "INTPTLAT": 38.3006185, "INTPTLON": -122.670641, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.673340, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 576, "felt:has_geometry": true, "felt:h3_index": 644721779945822237, "STATEFP": 6, "PLACEFP": 7316, "PLACENS": 2407875, "GEOID": 607316, "NAME": "Bolinas", "NAMELSAD": "Bolinas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15090532, "AWATER": 0, "INTPTLAT": 37.9177251, "INTPTLON": -122.7095023, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 37.918201 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1442, "felt:has_geometry": true, "felt:h3_index": 644721780791206956, "STATEFP": 6, "PLACEFP": 74172, "PLACENS": 2410001, "GEOID": 674172, "NAME": "Stinson Beach", "NAMELSAD": "Stinson Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2311064, "AWATER": 0, "INTPTLAT": 37.902485, "INTPTLON": -122.6501156, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.651367, 37.900865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1380, "felt:has_geometry": true, "felt:h3_index": 644721782190917342, "STATEFP": 6, "PLACEFP": 70154, "PLACENS": 2409283, "GEOID": 670154, "NAME": "Santa Venetia", "NAMELSAD": "Santa Venetia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9489702, "AWATER": 74911, "INTPTLAT": 38.0055375, "INTPTLON": -122.5028107, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1084, "felt:has_geometry": true, "felt:h3_index": 644721782290946286, "STATEFP": 6, "PLACEFP": 44399, "PLACENS": 2408149, "GEOID": 644399, "NAME": "Lucas Valley-Marinwood", "NAMELSAD": "Lucas Valley-Marinwood CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14843405, "AWATER": 0, "INTPTLAT": 38.0405086, "INTPTLON": -122.5764817, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.574463, 38.039439 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 67, "felt:has_geometry": true, "felt:h3_index": 644721782642263842, "STATEFP": 6, "PLACEFP": 62980, "PLACENS": 2412578, "GEOID": 662980, "NAMELSAD": "Ross town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4036002, "AWATER": 0, "INTPTLAT": 37.9638206, "INTPTLON": -122.5616141, "NAME": "Ross,Kentfield,Larkspur", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.563477, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 131, "felt:has_geometry": true, "felt:h3_index": 644721782766523493, "STATEFP": 6, "PLACEFP": 23168, "PLACENS": 2412609, "GEOID": 623168, "NAMELSAD": "Fairfax town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5770768, "AWATER": 0, "INTPTLAT": 37.9885321, "INTPTLON": -122.5952079, "NAME": "Fairfax,Woodacre,Sleepy Hollow,San Anselmo", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.596436, 37.987504 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 288, "felt:has_geometry": true, "felt:h3_index": 644721782905196560, "STATEFP": 6, "PLACEFP": 68364, "PLACENS": 2411804, "GEOID": 668364, "NAME": "San Rafael", "NAMELSAD": "San Rafael city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42960193, "AWATER": 15426850, "INTPTLAT": 37.9810032, "INTPTLON": -122.5069297, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 394, "felt:has_geometry": true, "felt:h3_index": 644721784669758060, "STATEFP": 6, "PLACEFP": 2252, "PLACENS": 2409715, "GEOID": 602252, "NAME": "Antioch", "NAMELSAD": "Antioch city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75552859, "AWATER": 1995937, "INTPTLAT": 37.978336, "INTPTLON": -121.7960638, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -121.794434, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 395, "felt:has_geometry": true, "felt:h3_index": 644721785309273326, "STATEFP": 6, "PLACEFP": 16000, "PLACENS": 2410214, "GEOID": 616000, "NAME": "Concord", "NAMELSAD": "Concord city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79148766, "AWATER": 0, "INTPTLAT": 37.972186, "INTPTLON": -122.0015986, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 683, "felt:has_geometry": true, "felt:h3_index": 644721785477020004, "STATEFP": 6, "PLACEFP": 14232, "PLACENS": 2407641, "GEOID": 614232, "NAMELSAD": "Clyde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 364483, "AWATER": 0, "INTPTLAT": 38.0253897, "INTPTLON": -122.0280157, "NAME": "Clyde,Pacheco,Vine Hill", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 38.022131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 537, "felt:has_geometry": true, "felt:h3_index": 644721785814419763, "STATEFP": 6, "PLACEFP": 4415, "PLACENS": 2407808, "GEOID": 604415, "NAME": "Bay Point", "NAMELSAD": "Bay Point CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16643644, "AWATER": 2637541, "INTPTLAT": 38.032254, "INTPTLON": -121.9622357, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -121.959229, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1395, "felt:has_geometry": true, "felt:h3_index": 644721785849459616, "STATEFP": 6, "PLACEFP": 71362, "PLACENS": 2583136, "GEOID": 671362, "NAMELSAD": "Shell Ridge CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1114550, "AWATER": 0, "INTPTLAT": 37.9059194, "INTPTLON": -122.0343985, "NAME": "Shell Ridge,Contra Costa Centre,San Miguel,Walnut Creek,North Gate", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.900865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 399, "felt:has_geometry": true, "felt:h3_index": 644721785988555057, "STATEFP": 6, "PLACEFP": 57764, "PLACENS": 2411439, "GEOID": 657764, "NAMELSAD": "Pleasant Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18324535, "AWATER": 3158, "INTPTLAT": 37.9541635, "INTPTLON": -122.0757723, "NAME": "Pleasant Hill,Reliez Valley", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.069092, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 241, "felt:has_geometry": true, "felt:h3_index": 644721786155774469, "STATEFP": 6, "PLACEFP": 13882, "PLACENS": 2409474, "GEOID": 613882, "NAME": "Clayton", "NAMELSAD": "Clayton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9945279, "AWATER": 0, "INTPTLAT": 37.9403215, "INTPTLON": -121.9300745, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 37.935533 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 456, "felt:has_geometry": true, "felt:h3_index": 644721786404046512, "STATEFP": 6, "PLACEFP": 53070, "PLACENS": 2411294, "GEOID": 653070, "NAME": "Oakley", "NAMELSAD": "Oakley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 41091677, "AWATER": 789638, "INTPTLAT": 37.9961485, "INTPTLON": -121.6936235, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -121.695557, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 557, "felt:has_geometry": true, "felt:h3_index": 644721786665457922, "STATEFP": 6, "PLACEFP": 6210, "PLACENS": 2407834, "GEOID": 606210, "NAME": "Bethel Island", "NAMELSAD": "Bethel Island CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13599384, "AWATER": 1468307, "INTPTLAT": 38.0281297, "INTPTLON": -121.6298509, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 38.022131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 286, "felt:has_geometry": true, "felt:h3_index": 644721787001381217, "STATEFP": 6, "PLACEFP": 8142, "PLACENS": 2409902, "GEOID": 608142, "NAME": "Brentwood", "NAMELSAD": "Brentwood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38501266, "AWATER": 0, "INTPTLAT": 37.9355778, "INTPTLON": -121.7189698, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 37.935533 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 992, "felt:has_geometry": true, "felt:h3_index": 644721787210385566, "STATEFP": 6, "PLACEFP": 38772, "PLACENS": 2408496, "GEOID": 638772, "NAME": "Knightsen", "NAMELSAD": "Knightsen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21645449, "AWATER": 232033, "INTPTLAT": 37.9624258, "INTPTLON": -121.6485795, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 398, "felt:has_geometry": true, "felt:h3_index": 644721788008285010, "STATEFP": 6, "PLACEFP": 57456, "PLACENS": 2411430, "GEOID": 657456, "NAME": "Pittsburg", "NAMELSAD": "Pittsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45780277, "AWATER": 5359381, "INTPTLAT": 38.0167706, "INTPTLON": -121.8969477, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 625, "felt:has_geometry": true, "felt:h3_index": 644721788670447854, "STATEFP": 6, "PLACEFP": 10301, "PLACENS": 2583160, "GEOID": 610301, "NAME": "Camino Tassajara", "NAMELSAD": "Camino Tassajara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3305050, "AWATER": 0, "INTPTLAT": 37.7908857, "INTPTLON": -121.8850524, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 347, "felt:has_geometry": true, "felt:h3_index": 644721789270931524, "STATEFP": 6, "PLACEFP": 20018, "PLACENS": 2410362, "GEOID": 620018, "NAME": "Dublin", "NAMELSAD": "Dublin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39442778, "AWATER": 0, "INTPTLAT": 37.7161372, "INTPTLON": -121.8962293, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 164, "felt:has_geometry": true, "felt:h3_index": 644721789403418977, "STATEFP": 6, "PLACEFP": 41992, "PLACENS": 2410848, "GEOID": 641992, "NAME": "Livermore", "NAMELSAD": "Livermore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68816613, "AWATER": 9862, "INTPTLAT": 37.6869767, "INTPTLON": -121.7597808, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -121.761475, 37.683820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 396, "felt:has_geometry": true, "felt:h3_index": 644721789707702597, "STATEFP": 6, "PLACEFP": 17988, "PLACENS": 2412403, "GEOID": 617988, "NAME": "Danville", "NAMELSAD": "Danville town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46821256, "AWATER": 0, "INTPTLAT": 37.8121416, "INTPTLON": -121.9698235, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 37.814124 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 648, "felt:has_geometry": true, "felt:h3_index": 644721789792742642, "STATEFP": 6, "PLACEFP": 11915, "PLACENS": 2582967, "GEOID": 611915, "NAME": "Castle Hill", "NAMELSAD": "Castle Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1513889, "AWATER": 0, "INTPTLAT": 37.8747175, "INTPTLON": -122.0585817, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.058105, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 743, "felt:has_geometry": true, "felt:h3_index": 644721789885605172, "STATEFP": 6, "PLACEFP": 19150, "PLACENS": 2408668, "GEOID": 619150, "NAMELSAD": "Diablo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3531932, "AWATER": 0, "INTPTLAT": 37.8407738, "INTPTLON": -121.956477, "NAME": "Diablo,Blackhawk", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 491, "felt:has_geometry": true, "felt:h3_index": 644721790097115892, "STATEFP": 6, "PLACEFP": 618, "PLACENS": 2407707, "GEOID": 600618, "NAME": "Alamo", "NAMELSAD": "Alamo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25422415, "AWATER": 0, "INTPTLAT": 37.8547678, "INTPTLON": -122.0135573, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.848833 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1195, "felt:has_geometry": true, "felt:h3_index": 644721790249643235, "STATEFP": 6, "PLACEFP": 51622, "PLACENS": 2583094, "GEOID": 651622, "NAME": "Norris Canyon", "NAMELSAD": "Norris Canyon CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9350215, "AWATER": 0, "INTPTLAT": 37.7457574, "INTPTLON": -121.9880908, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 400, "felt:has_geometry": true, "felt:h3_index": 644721790516054444, "STATEFP": 6, "PLACEFP": 68378, "PLACENS": 2411805, "GEOID": 668378, "NAME": "San Ramon", "NAMELSAD": "San Ramon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51953230, "AWATER": 88389, "INTPTLAT": 37.7652582, "INTPTLON": -121.9319874, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 609, "felt:has_geometry": true, "felt:h3_index": 644721791153484726, "STATEFP": 6, "PLACEFP": 9346, "PLACENS": 2407934, "GEOID": 609346, "NAME": "Byron", "NAMELSAD": "Byron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16889207, "AWATER": 0, "INTPTLAT": 37.8756441, "INTPTLON": -121.6421196, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1387, "felt:has_geometry": true, "felt:h3_index": 644721805181993804, "STATEFP": 6, "PLACEFP": 70712, "PLACENS": 2583133, "GEOID": 670712, "NAME": "Sea Ranch", "NAMELSAD": "Sea Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41742090, "AWATER": 277559, "INTPTLAT": 38.7252743, "INTPTLON": -123.458314, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -123.453369, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1484, "felt:has_geometry": true, "felt:h3_index": 644721807929263001, "STATEFP": 6, "PLACEFP": 78715, "PLACENS": 2583163, "GEOID": 678715, "NAME": "Timber Cove", "NAMELSAD": "Timber Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14637533, "AWATER": 0, "INTPTLAT": 38.5410889, "INTPTLON": -123.258786, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -123.255615, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1105, "felt:has_geometry": true, "felt:h3_index": 644721812890509963, "STATEFP": 6, "PLACEFP": 45386, "PLACENS": 2628754, "GEOID": 645386, "NAME": "Manchester", "NAMELSAD": "Manchester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6780881, "AWATER": 0, "INTPTLAT": 38.9743844, "INTPTLON": -123.6909611, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 38.976492 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 64, "felt:has_geometry": true, "felt:h3_index": 644721816599915433, "STATEFP": 6, "PLACEFP": 57876, "PLACENS": 2411449, "GEOID": 657876, "NAME": "Point Arena", "NAMELSAD": "Point Arena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3537807, "AWATER": 0, "INTPTLAT": 38.912306, "INTPTLON": -123.6956087, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -123.695068, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 511, "felt:has_geometry": true, "felt:h3_index": 644721817248894376, "STATEFP": 6, "PLACEFP": 2028, "PLACENS": 2628706, "GEOID": 602028, "NAME": "Anchor Bay", "NAMELSAD": "Anchor Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9097805, "AWATER": 0, "INTPTLAT": 38.8126532, "INTPTLON": -123.5702668, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -123.563232, 38.814031 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 878, "felt:has_geometry": true, "felt:h3_index": 644721819421902640, "STATEFP": 6, "PLACEFP": 29420, "PLACENS": 2583024, "GEOID": 629420, "NAME": "Geyserville", "NAMELSAD": "Geyserville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11690104, "AWATER": 0, "INTPTLAT": 38.7173139, "INTPTLON": -122.9034234, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 38.711233 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 2, "felt:has_geometry": true, "felt:h3_index": 644721820507878737, "STATEFP": 6, "PLACEFP": 14190, "PLACENS": 2409487, "GEOID": 614190, "NAME": "Cloverdale", "NAMELSAD": "Cloverdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8120471, "AWATER": 0, "INTPTLAT": 38.7961178, "INTPTLON": -123.0150504, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -123.013916, 38.796908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 685, "felt:has_geometry": true, "felt:h3_index": 644721820850935306, "STATEFP": 6, "PLACEFP": 14302, "PLACENS": 2407643, "GEOID": 614302, "NAME": "Cobb", "NAMELSAD": "Cobb CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12897761, "AWATER": 22376, "INTPTLAT": 38.8353286, "INTPTLON": -122.7224347, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 38.831150 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 333, "felt:has_geometry": true, "felt:h3_index": 644721823180247955, "STATEFP": 6, "PLACEFP": 33056, "PLACENS": 2410726, "GEOID": 633056, "NAME": "Healdsburg", "NAMELSAD": "Healdsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11448706, "AWATER": 0, "INTPTLAT": 38.6225262, "INTPTLON": -122.8651327, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.860107, 38.616870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 582, "felt:has_geometry": true, "felt:h3_index": 644721827939161384, "STATEFP": 6, "PLACEFP": 7512, "PLACENS": 2628712, "GEOID": 607512, "NAME": "Boonville", "NAMELSAD": "Boonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14355353, "AWATER": 0, "INTPTLAT": 39.0114745, "INTPTLON": -123.3740428, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -123.376465, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1267, "felt:has_geometry": true, "felt:h3_index": 644721829088003747, "STATEFP": 6, "PLACEFP": 56868, "PLACENS": 2628777, "GEOID": 656868, "NAME": "Philo", "NAMELSAD": "Philo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5353556, "AWATER": 0, "INTPTLAT": 39.065757, "INTPTLON": -123.4450628, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -123.442383, 39.061849 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1465, "felt:has_geometry": true, "felt:h3_index": 644721830036626646, "STATEFP": 6, "PLACEFP": 77784, "PLACENS": 2410053, "GEOID": 677784, "NAME": "Talmage", "NAMELSAD": "Talmage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4117638, "AWATER": 4089, "INTPTLAT": 39.131198, "INTPTLON": -123.1638376, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -123.156738, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 616, "felt:has_geometry": true, "felt:h3_index": 644721830710044534, "STATEFP": 6, "PLACEFP": 9990, "PLACENS": 2628714, "GEOID": 609990, "NAME": "Calpella", "NAMELSAD": "Calpella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6598677, "AWATER": 64954, "INTPTLAT": 39.2337206, "INTPTLON": -123.1937598, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -123.189697, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 478, "felt:has_geometry": true, "felt:h3_index": 644721831311520371, "STATEFP": 6, "PLACEFP": 81134, "PLACENS": 2412125, "GEOID": 681134, "NAME": "Ukiah", "NAMELSAD": "Ukiah city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12346151, "AWATER": 116762, "INTPTLAT": 39.146614, "INTPTLON": -123.2103259, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -123.211670, 39.147103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 938, "felt:has_geometry": true, "felt:h3_index": 644721833631241384, "STATEFP": 6, "PLACEFP": 34652, "PLACENS": 2628739, "GEOID": 634652, "NAME": "Hopland", "NAMELSAD": "Hopland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9128964, "AWATER": 124597, "INTPTLAT": 38.9688302, "INTPTLON": -123.1168992, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 38.967951 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1390, "felt:has_geometry": true, "felt:h3_index": 644721853001019636, "STATEFP": 6, "PLACEFP": 71000, "PLACENS": 2583134, "GEOID": 671000, "NAMELSAD": "Sereno del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1909750, "AWATER": 0, "INTPTLAT": 38.3836712, "INTPTLON": -123.0731482, "NAME": "Sereno del Mar,Carmet,Salmon Creek", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -123.068848, 38.384728 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 574, "felt:has_geometry": true, "felt:h3_index": 644721853777715462, "STATEFP": 6, "PLACEFP": 7260, "PLACENS": 2407872, "GEOID": 607260, "NAME": "Bodega Bay", "NAMELSAD": "Bodega Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21676778, "AWATER": 10759202, "INTPTLAT": 38.3272149, "INTPTLON": -123.0292296, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -123.024902, 38.324420 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1596, "felt:has_geometry": true, "felt:h3_index": 644721855211045576, "STATEFP": 6, "PLACEFP": 30812, "PLACENS": 2408322, "GEOID": 630812, "NAME": "Graton", "NAMELSAD": "Graton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4090304, "AWATER": 0, "INTPTLAT": 38.4375168, "INTPTLON": -122.8659876, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.860107, 38.436380 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 849, "felt:has_geometry": true, "felt:h3_index": 644721855577540746, "STATEFP": 6, "PLACEFP": 24960, "PLACENS": 2408230, "GEOID": 624960, "NAME": "Forestville", "NAMELSAD": "Forestville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13615411, "AWATER": 0, "INTPTLAT": 38.4824914, "INTPTLON": -122.8898837, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.882080, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1218, "felt:has_geometry": true, "felt:h3_index": 644721855636553932, "STATEFP": 6, "PLACEFP": 53266, "PLACENS": 2408971, "GEOID": 653266, "NAME": "Occidental", "NAMELSAD": "Occidental CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12864926, "AWATER": 0, "INTPTLAT": 38.4003723, "INTPTLON": -122.9349457, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.937012, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 28, "felt:has_geometry": true, "felt:h3_index": 644721856003360475, "STATEFP": 6, "PLACEFP": 70770, "PLACENS": 2411857, "GEOID": 670770, "NAME": "Sebastopol", "NAMELSAD": "Sebastopol city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4874900, "AWATER": 0, "INTPTLAT": 38.400003, "INTPTLON": -122.8275864, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.827148, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 653, "felt:has_geometry": true, "felt:h3_index": 644721856191440666, "STATEFP": 6, "PLACEFP": 12146, "PLACENS": 2582969, "GEOID": 612146, "NAME": "Cazadero", "NAMELSAD": "Cazadero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18431243, "AWATER": 3546, "INTPTLAT": 38.5278309, "INTPTLON": -123.1097995, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -123.101807, 38.522384 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1597, "felt:has_geometry": true, "felt:h3_index": 644721856552297374, "STATEFP": 6, "PLACEFP": 31470, "PLACENS": 2408341, "GEOID": 631470, "NAME": "Guerneville", "NAMELSAD": "Guerneville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25147194, "AWATER": 440242, "INTPTLAT": 38.5171652, "INTPTLON": -122.989897, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.991943, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 962, "felt:has_geometry": true, "felt:h3_index": 644721856733564974, "STATEFP": 6, "PLACEFP": 37274, "PLACENS": 2583041, "GEOID": 637274, "NAME": "Jenner", "NAMELSAD": "Jenner CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5463963, "AWATER": 745264, "INTPTLAT": 38.459034, "INTPTLON": -123.1274672, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 38.453589 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1159, "felt:has_geometry": true, "felt:h3_index": 644721856976331166, "STATEFP": 6, "PLACEFP": 48928, "PLACENS": 2408860, "GEOID": 648928, "NAME": "Monte Rio", "NAMELSAD": "Monte Rio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4934760, "AWATER": 208218, "INTPTLAT": 38.4736108, "INTPTLON": -123.0261783, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -123.024902, 38.470794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 747, "felt:has_geometry": true, "felt:h3_index": 644721857553584128, "STATEFP": 6, "PLACEFP": 19262, "PLACENS": 2408671, "GEOID": 619262, "NAME": "Dillon Beach", "NAMELSAD": "Dillon Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7727875, "AWATER": 0, "INTPTLAT": 38.2434883, "INTPTLON": -122.955955, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.947998, 38.238180 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 573, "felt:has_geometry": true, "felt:h3_index": 644721859550923989, "STATEFP": 6, "PLACEFP": 7246, "PLACENS": 2582947, "GEOID": 607246, "NAMELSAD": "Bodega CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7515783, "AWATER": 0, "INTPTLAT": 38.3488408, "INTPTLON": -122.9711641, "NAME": "Bodega,Valley Ford", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.969971, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 570, "felt:has_geometry": true, "felt:h3_index": 644721859681798678, "STATEFP": 6, "PLACEFP": 7036, "PLACENS": 2582946, "GEOID": 607036, "NAME": "Bloomfield", "NAMELSAD": "Bloomfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21076160, "AWATER": 17431, "INTPTLAT": 38.3220688, "INTPTLON": -122.834464, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.827148, 38.315801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1487, "felt:has_geometry": true, "felt:h3_index": 644721859974432546, "STATEFP": 6, "PLACEFP": 78890, "PLACENS": 2409330, "GEOID": 678890, "NAME": "Tomales", "NAMELSAD": "Tomales CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 859286, "AWATER": 0, "INTPTLAT": 38.2470303, "INTPTLON": -122.9053554, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 526, "felt:has_geometry": true, "felt:h3_index": 644721870536811062, "STATEFP": 6, "PLACEFP": 3205, "PLACENS": 2582982, "GEOID": 603205, "NAME": "Auburn Lake Trails", "NAMELSAD": "Auburn Lake Trails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32963739, "AWATER": 56719, "INTPTLAT": 38.8862376, "INTPTLON": -120.9796991, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.882481 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 194, "felt:has_geometry": true, "felt:h3_index": 644721871577874962, "STATEFP": 6, "PLACEFP": 3204, "PLACENS": 2409754, "GEOID": 603204, "NAME": "Auburn", "NAMELSAD": "Auburn city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18588528, "AWATER": 71271, "INTPTLAT": 38.8950746, "INTPTLON": -121.0767393, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 61, "felt:has_geometry": true, "felt:h3_index": 644721871899756892, "STATEFP": 6, "PLACEFP": 41474, "PLACENS": 2410835, "GEOID": 641474, "NAME": "Lincoln", "NAMELSAD": "Lincoln city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62599874, "AWATER": 110309, "INTPTLAT": 38.8744639, "INTPTLON": -121.2928862, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 38.873929 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1260, "felt:has_geometry": true, "felt:h3_index": 644721872035284622, "STATEFP": 6, "PLACEFP": 56546, "PLACENS": 2628774, "GEOID": 656546, "NAMELSAD": "Penryn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4928719, "AWATER": 0, "INTPTLAT": 38.8482176, "INTPTLON": -121.1698087, "NAME": "Penryn,Newcastle", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 38.848264 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 876, "felt:has_geometry": true, "felt:h3_index": 644721872278668419, "STATEFP": 6, "PLACEFP": 29350, "PLACENS": 2408289, "GEOID": 629350, "NAME": "Georgetown", "NAMELSAD": "Georgetown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39182259, "AWATER": 10741, "INTPTLAT": 38.9113533, "INTPTLON": -120.834624, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1018, "felt:has_geometry": true, "felt:h3_index": 644721873548962928, "STATEFP": 6, "PLACEFP": 39690, "PLACENS": 2408547, "GEOID": 639690, "NAMELSAD": "Lake of the Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6544587, "AWATER": 908432, "INTPTLAT": 39.0387456, "INTPTLON": -121.061341, "NAME": "Lake of the Pines,Meadow Vista", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -121.058350, 39.036253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1196, "felt:has_geometry": true, "felt:h3_index": 644721873915394837, "STATEFP": 6, "PLACEFP": 51637, "PLACENS": 2408934, "GEOID": 651637, "NAME": "North Auburn", "NAMELSAD": "North Auburn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20171681, "AWATER": 7171, "INTPTLAT": 38.930693, "INTPTLON": -121.0810812, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 38.925229 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 623, "felt:has_geometry": true, "felt:h3_index": 644721874429391405, "STATEFP": 6, "PLACEFP": 10256, "PLACENS": 2407944, "GEOID": 610256, "NAME": "Cameron Park", "NAMELSAD": "Cameron Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29078546, "AWATER": 186312, "INTPTLAT": 38.6740287, "INTPTLON": -120.9883375, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1398, "felt:has_geometry": true, "felt:h3_index": 644721874763290228, "STATEFP": 6, "PLACEFP": 71554, "PLACENS": 2408727, "GEOID": 671554, "NAME": "Shingle Springs", "NAMELSAD": "Shingle Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21235230, "AWATER": 99633, "INTPTLAT": 38.6658555, "INTPTLON": -120.9362083, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 38.659778 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 794, "felt:has_geometry": true, "felt:h3_index": 644721875136367770, "STATEFP": 6, "PLACEFP": 21880, "PLACENS": 2408055, "GEOID": 621880, "NAME": "El Dorado Hills", "NAMELSAD": "El Dorado Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 125511003, "AWATER": 6228621, "INTPTLAT": 38.6760816, "INTPTLON": -121.0476996, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 38.676933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 889, "felt:has_geometry": true, "felt:h3_index": 644721875553377348, "STATEFP": 6, "PLACEFP": 30693, "PLACENS": 2408318, "GEOID": 630693, "NAME": "Granite Bay", "NAMELSAD": "Granite Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55810220, "AWATER": 111696, "INTPTLAT": 38.7604413, "INTPTLON": -121.1681961, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 62, "felt:has_geometry": true, "felt:h3_index": 644721875920137428, "STATEFP": 6, "PLACEFP": 43140, "PLACENS": 2412914, "GEOID": 643140, "NAME": "Loomis", "NAMELSAD": "Loomis town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18820030, "AWATER": 0, "INTPTLAT": 38.809368, "INTPTLON": -121.1954675, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -121.190186, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1232, "felt:has_geometry": true, "felt:h3_index": 644721876056590418, "STATEFP": 6, "PLACEFP": 54092, "PLACENS": 2408995, "GEOID": 654092, "NAME": "Orangevale", "NAMELSAD": "Orangevale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29657948, "AWATER": 397602, "INTPTLAT": 38.6893591, "INTPTLON": -121.223077, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 441, "felt:has_geometry": true, "felt:h3_index": 644721876263162129, "STATEFP": 6, "PLACEFP": 13588, "PLACENS": 2409464, "GEOID": 613588, "NAME": "Citrus Heights", "NAMELSAD": "Citrus Heights city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36820409, "AWATER": 0, "INTPTLAT": 38.6948103, "INTPTLON": -121.2879525, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 38.694085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 386, "felt:has_geometry": true, "felt:h3_index": 644721876382532801, "STATEFP": 6, "PLACEFP": 24638, "PLACENS": 2410516, "GEOID": 624638, "NAME": "Folsom", "NAMELSAD": "Folsom city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 72210787, "AWATER": 5879392, "INTPTLAT": 38.6665966, "INTPTLON": -121.1416355, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 693, "felt:has_geometry": true, "felt:h3_index": 644721876709673065, "STATEFP": 6, "PLACEFP": 14764, "PLACENS": 2582981, "GEOID": 614764, "NAME": "Coloma", "NAMELSAD": "Coloma CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8689800, "AWATER": 0, "INTPTLAT": 38.802616, "INTPTLON": -120.8946346, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 38.796908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 745, "felt:has_geometry": true, "felt:h3_index": 644721877220861584, "STATEFP": 6, "PLACEFP": 19220, "PLACENS": 2408669, "GEOID": 619220, "NAME": "Diamond Springs", "NAMELSAD": "Diamond Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43097229, "AWATER": 187916, "INTPTLAT": 38.6920143, "INTPTLON": -120.8386844, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 38.694085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 688, "felt:has_geometry": true, "felt:h3_index": 644721877290423584, "STATEFP": 6, "PLACEFP": 14450, "PLACENS": 2628720, "GEOID": 614450, "NAME": "Cold Springs", "NAMELSAD": "Cold Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2526035, "AWATER": 0, "INTPTLAT": 38.7464398, "INTPTLON": -120.8738066, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -120.871582, 38.745515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 215, "felt:has_geometry": true, "felt:h3_index": 644721877398697560, "STATEFP": 6, "PLACEFP": 57540, "PLACENS": 2411433, "GEOID": 657540, "NAME": "Placerville", "NAMELSAD": "Placerville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15126090, "AWATER": 2192, "INTPTLAT": 38.7311162, "INTPTLON": -120.7976774, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -120.794678, 38.728376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 797, "felt:has_geometry": true, "felt:h3_index": 644721878823036244, "STATEFP": 6, "PLACEFP": 4576, "PLACENS": 2407813, "GEOID": 604576, "NAME": "Beale AFB", "NAMELSAD": "Beale AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26139571, "AWATER": 25614, "INTPTLAT": 39.1080613, "INTPTLON": -121.3512148, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -121.343994, 39.104489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 166, "felt:has_geometry": true, "felt:h3_index": 644721879329194324, "STATEFP": 6, "PLACEFP": 85012, "PLACENS": 2412249, "GEOID": 685012, "NAME": "Wheatland", "NAMELSAD": "Wheatland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21035376, "AWATER": 17378, "INTPTLAT": 39.0311632, "INTPTLON": -121.3899957, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -121.387939, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1054, "felt:has_geometry": true, "felt:h3_index": 644721880377435185, "STATEFP": 6, "PLACEFP": 41572, "PLACENS": 2408613, "GEOID": 641572, "NAMELSAD": "Linda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22236546, "AWATER": 0, "INTPTLAT": 39.1241415, "INTPTLON": -121.5421728, "NAME": "Linda,Marysville", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 39.121537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 385, "felt:has_geometry": true, "felt:h3_index": 644721880543344883, "STATEFP": 6, "PLACEFP": 86972, "PLACENS": 2412325, "GEOID": 686972, "NAME": "Yuba City", "NAMELSAD": "Yuba City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39703338, "AWATER": 201005, "INTPTLAT": 39.1338507, "INTPTLON": -121.6390282, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1259, "felt:has_geometry": true, "felt:h3_index": 644721880879674762, "STATEFP": 6, "PLACEFP": 56518, "PLACENS": 2409052, "GEOID": 656518, "NAMELSAD": "Penn Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494646, "AWATER": 0, "INTPTLAT": 39.1952969, "INTPTLON": -121.1941531, "NAME": "Penn Valley,Lake Wildwood", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -121.190186, 39.189691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1348, "felt:has_geometry": true, "felt:h3_index": 644721881197976219, "STATEFP": 6, "PLACEFP": 63106, "PLACENS": 2628785, "GEOID": 663106, "NAME": "Rough and Ready", "NAMELSAD": "Rough and Ready CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8217852, "AWATER": 0, "INTPTLAT": 39.2340228, "INTPTLON": -121.1380222, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1412, "felt:has_geometry": true, "felt:h3_index": 644721881599191398, "STATEFP": 6, "PLACEFP": 72282, "PLACENS": 2628789, "GEOID": 672282, "NAME": "Smartsville", "NAMELSAD": "Smartsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1856958, "AWATER": 0, "INTPTLAT": 39.2052729, "INTPTLON": -121.2929161, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 39.206719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1070, "felt:has_geometry": true, "felt:h3_index": 644721882114091755, "STATEFP": 6, "PLACEFP": 42412, "PLACENS": 2408121, "GEOID": 642412, "NAME": "Loma Rica", "NAMELSAD": "Loma Rica CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47881271, "AWATER": 0, "INTPTLAT": 39.3203182, "INTPTLON": -121.4038312, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1397, "felt:has_geometry": true, "felt:h3_index": 644721883050285421, "STATEFP": 6, "PLACEFP": 71414, "PLACENS": 2583137, "GEOID": 671414, "NAME": "Sheridan", "NAMELSAD": "Sheridan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 66129143, "AWATER": 15380, "INTPTLAT": 38.9731114, "INTPTLON": -121.350946, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -121.343994, 38.967951 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1228, "felt:has_geometry": true, "felt:h3_index": 644721884516457251, "STATEFP": 6, "PLACEFP": 53714, "PLACENS": 2408986, "GEOID": 653714, "NAME": "Olivehurst", "NAMELSAD": "Olivehurst CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21791564, "AWATER": 0, "INTPTLAT": 39.0794611, "INTPTLON": -121.5566594, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 39.078908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1287, "felt:has_geometry": true, "felt:h3_index": 644721884689601126, "STATEFP": 6, "PLACEFP": 57829, "PLACENS": 2583117, "GEOID": 657829, "NAMELSAD": "Plumas Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30658926, "AWATER": 891526, "INTPTLAT": 38.9791308, "INTPTLON": -121.5580559, "NAME": "Plumas Lake,Rio Oso", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 38.976492 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1289, "felt:has_geometry": true, "felt:h3_index": 644721892361966609, "STATEFP": 6, "PLACEFP": 58030, "PLACENS": 2409086, "GEOID": 658030, "NAME": "Pollock Pines", "NAMELSAD": "Pollock Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22335059, "AWATER": 83617, "INTPTLAT": 38.7576414, "INTPTLON": -120.5909566, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 763, "felt:has_geometry": true, "felt:h3_index": 644721896008771724, "STATEFP": 6, "PLACEFP": 20298, "PLACENS": 2628726, "GEOID": 620298, "NAME": "Dutch Flat", "NAMELSAD": "Dutch Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1534848, "AWATER": 0, "INTPTLAT": 39.2080078, "INTPTLON": -120.834476, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 39.206719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 503, "felt:has_geometry": true, "felt:h3_index": 644721896762133132, "STATEFP": 6, "PLACEFP": 1276, "PLACENS": 2628704, "GEOID": 601276, "NAME": "Alta", "NAMELSAD": "Alta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6173301, "AWATER": 17423, "INTPTLAT": 39.2156848, "INTPTLON": -120.7985091, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -120.794678, 39.215231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 205, "felt:has_geometry": true, "felt:h3_index": 644721897048647020, "STATEFP": 6, "PLACEFP": 50874, "PLACENS": 2411225, "GEOID": 650874, "NAME": "Nevada City", "NAMELSAD": "Nevada City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5661517, "AWATER": 9642, "INTPTLAT": 39.2596075, "INTPTLON": -121.0333263, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -121.025391, 39.257778 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 433, "felt:has_geometry": true, "felt:h3_index": 644721897520043152, "STATEFP": 6, "PLACEFP": 30798, "PLACENS": 2410651, "GEOID": 630798, "NAME": "Grass Valley", "NAMELSAD": "Grass Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13765037, "AWATER": 0, "INTPTLAT": 39.2237374, "INTPTLON": -121.052455, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.223743 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 495, "felt:has_geometry": true, "felt:h3_index": 644721899576338716, "STATEFP": 6, "PLACEFP": 982, "PLACENS": 2582931, "GEOID": 600982, "NAME": "Alleghany", "NAMELSAD": "Alleghany CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 904298, "AWATER": 0, "INTPTLAT": 39.4666605, "INTPTLON": -120.8411258, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 39.461644 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1541, "felt:has_geometry": true, "felt:h3_index": 644721899962385070, "STATEFP": 6, "PLACEFP": 83570, "PLACENS": 2628797, "GEOID": 683570, "NAME": "Washington", "NAMELSAD": "Washington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4922969, "AWATER": 0, "INTPTLAT": 39.3591578, "INTPTLON": -120.7904968, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -120.783691, 39.359785 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 846, "felt:has_geometry": true, "felt:h3_index": 644721900836195411, "STATEFP": 6, "PLACEFP": 24834, "PLACENS": 2408229, "GEOID": 624834, "NAME": "Foresthill", "NAMELSAD": "Foresthill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28969105, "AWATER": 0, "INTPTLAT": 39.0052862, "INTPTLON": -120.8313547, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 39.002110 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 506, "felt:has_geometry": true, "felt:h3_index": 644721901352885549, "STATEFP": 6, "PLACEFP": 1360, "PLACENS": 2407731, "GEOID": 601360, "NAME": "Alta Sierra", "NAMELSAD": "Alta Sierra CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21551268, "AWATER": 53117, "INTPTLAT": 39.1261741, "INTPTLON": -121.0490846, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.121537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 312, "felt:has_geometry": true, "felt:h3_index": 644721902177031257, "STATEFP": 6, "PLACEFP": 14498, "PLACENS": 2410190, "GEOID": 614498, "NAME": "Colfax", "NAMELSAD": "Colfax city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3641506, "AWATER": 0, "INTPTLAT": 39.0937989, "INTPTLON": -120.9532218, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -120.948486, 39.087436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1575, "felt:has_geometry": true, "felt:h3_index": 644721905207916763, "STATEFP": 6, "PLACEFP": 85880, "PLACENS": 2409604, "GEOID": 685880, "NAME": "Wilton", "NAMELSAD": "Wilton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75115869, "AWATER": 0, "INTPTLAT": 38.4129769, "INTPTLON": -121.2127181, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -121.212158, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1530, "felt:has_geometry": true, "felt:h3_index": 644721905672497181, "STATEFP": 6, "PLACEFP": 82852, "PLACENS": 2409518, "GEOID": 682852, "NAME": "Vineyard", "NAMELSAD": "Vineyard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48558204, "AWATER": 0, "INTPTLAT": 38.4740353, "INTPTLON": -121.3239951, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 38.470794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1346, "felt:has_geometry": true, "felt:h3_index": 644721905735646515, "STATEFP": 6, "PLACEFP": 62910, "PLACENS": 2409213, "GEOID": 662910, "NAME": "Rosemont", "NAMELSAD": "Rosemont CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11361196, "AWATER": 0, "INTPTLAT": 38.5477287, "INTPTLON": -121.3553712, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 442, "felt:has_geometry": true, "felt:h3_index": 644721906196764361, "STATEFP": 6, "PLACEFP": 22020, "PLACENS": 2410425, "GEOID": 622020, "NAME": "Elk Grove", "NAMELSAD": "Elk Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110336008, "AWATER": 533192, "INTPTLAT": 38.4146207, "INTPTLON": -121.3849614, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 839, "felt:has_geometry": true, "felt:h3_index": 644721906278224418, "STATEFP": 6, "PLACEFP": 24498, "PLACENS": 2408219, "GEOID": 624498, "NAME": "Florin", "NAMELSAD": "Florin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22500504, "AWATER": 0, "INTPTLAT": 38.4831505, "INTPTLON": -121.4043263, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 38.479395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1313, "felt:has_geometry": true, "felt:h3_index": 644721907311596229, "STATEFP": 6, "PLACEFP": 59506, "PLACENS": 2409136, "GEOID": 659506, "NAME": "Rancho Murieta", "NAMELSAD": "Rancho Murieta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30776825, "AWATER": 467881, "INTPTLAT": 38.5007005, "INTPTLON": -121.0740205, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 38.496594 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 882, "felt:has_geometry": true, "felt:h3_index": 644721907862682536, "STATEFP": 6, "PLACEFP": 30345, "PLACENS": 2408305, "GEOID": 630345, "NAME": "Gold River", "NAMELSAD": "Gold River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6884489, "AWATER": 213093, "INTPTLAT": 38.6268536, "INTPTLON": -121.2491637, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.625454 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 388, "felt:has_geometry": true, "felt:h3_index": 644721908446346637, "STATEFP": 6, "PLACEFP": 59444, "PLACENS": 2411513, "GEOID": 659444, "NAMELSAD": "Rancho Cordova city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89533865, "AWATER": 795317, "INTPTLAT": 38.5770789, "INTPTLON": -121.2361872, "NAME": "Rancho Cordova,Mather", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -121.234131, 38.573938 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 920, "felt:has_geometry": true, "felt:h3_index": 644721909016340648, "STATEFP": 6, "PLACEFP": 33294, "PLACENS": 2583034, "GEOID": 633294, "NAME": "Herald", "NAMELSAD": "Herald CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20406216, "AWATER": 57778, "INTPTLAT": 38.2884031, "INTPTLON": -121.2310658, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 38.289937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 676, "felt:has_geometry": true, "felt:h3_index": 644721909271835041, "STATEFP": 6, "PLACEFP": 13854, "PLACENS": 2582975, "GEOID": 613854, "NAME": "Clay", "NAMELSAD": "Clay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17496807, "AWATER": 0, "INTPTLAT": 38.3140376, "INTPTLON": -121.159591, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 38.315801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 751, "felt:has_geometry": true, "felt:h3_index": 644721909428589746, "STATEFP": 6, "PLACEFP": 19440, "PLACENS": 2582997, "GEOID": 619440, "NAME": "Dogtown", "NAMELSAD": "Dogtown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33584172, "AWATER": 57248, "INTPTLAT": 38.2086668, "INTPTLON": -121.1548094, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 38.203655 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 443, "felt:has_geometry": true, "felt:h3_index": 644721910760879467, "STATEFP": 6, "PLACEFP": 28112, "PLACENS": 2410563, "GEOID": 628112, "NAME": "Galt", "NAMELSAD": "Galt city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18508749, "AWATER": 34676, "INTPTLAT": 38.2703894, "INTPTLON": -121.3005957, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -121.300049, 38.264063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 462, "felt:has_geometry": true, "felt:h3_index": 644721911287721171, "STATEFP": 6, "PLACEFP": 36672, "PLACENS": 2410110, "GEOID": 636672, "NAME": "Ione", "NAMELSAD": "Ione city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11861672, "AWATER": 118011, "INTPTLAT": 38.3628615, "INTPTLON": -120.9476845, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -120.948486, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 601, "felt:has_geometry": true, "felt:h3_index": 644721911846607281, "STATEFP": 6, "PLACEFP": 8828, "PLACENS": 2582953, "GEOID": 608828, "NAME": "Buena Vista", "NAMELSAD": "Buena Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4370822, "AWATER": 0, "INTPTLAT": 38.2974871, "INTPTLON": -120.9174023, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 817, "felt:has_geometry": true, "felt:h3_index": 644721913361409796, "STATEFP": 6, "PLACEFP": 22524, "PLACENS": 2583010, "GEOID": 622524, "NAME": "Elverta", "NAMELSAD": "Elverta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22900221, "AWATER": 0, "INTPTLAT": 38.7184638, "INTPTLON": -121.4454754, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1329, "felt:has_geometry": true, "felt:h3_index": 644721913923320552, "STATEFP": 6, "PLACEFP": 60942, "PLACENS": 2409175, "GEOID": 660942, "NAME": "Rio Linda", "NAMELSAD": "Rio Linda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25710392, "AWATER": 0, "INTPTLAT": 38.687502, "INTPTLON": -121.4416818, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 994, "felt:has_geometry": true, "felt:h3_index": 644721914214835804, "STATEFP": 6, "PLACEFP": 38800, "PLACENS": 2583047, "GEOID": 638800, "NAME": "Knights Landing", "NAMELSAD": "Knights Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399445, "AWATER": 0, "INTPTLAT": 38.7979719, "INTPTLON": -121.7174475, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 38.796908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1589, "felt:has_geometry": true, "felt:h3_index": 644721914917295448, "STATEFP": 6, "PLACEFP": 86804, "PLACENS": 2583187, "GEOID": 686804, "NAME": "Yolo", "NAMELSAD": "Yolo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3556737, "AWATER": 0, "INTPTLAT": 38.7404633, "INTPTLON": -121.8093244, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -121.805420, 38.736946 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 193, "felt:has_geometry": true, "felt:h3_index": 644721915601127716, "STATEFP": 6, "PLACEFP": 62364, "PLACENS": 2410980, "GEOID": 662364, "NAME": "Rocklin", "NAMELSAD": "Rocklin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51307151, "AWATER": 57380, "INTPTLAT": 38.8068681, "INTPTLON": -121.249696, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 195, "felt:has_geometry": true, "felt:h3_index": 644721916054655152, "STATEFP": 6, "PLACEFP": 62938, "PLACENS": 2411000, "GEOID": 662938, "NAME": "Roseville", "NAMELSAD": "Roseville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 114184957, "AWATER": 0, "INTPTLAT": 38.7702963, "INTPTLON": -121.3196342, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 38.771216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1190, "felt:has_geometry": true, "felt:h3_index": 644721916546729873, "STATEFP": 6, "PLACEFP": 51336, "PLACENS": 2583093, "GEOID": 651336, "NAME": "Nicolaus", "NAMELSAD": "Nicolaus CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8074147, "AWATER": 0, "INTPTLAT": 38.8981899, "INTPTLON": -121.5728371, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -121.574707, 38.899583 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1500, "felt:has_geometry": true, "felt:h3_index": 644721916703940980, "STATEFP": 6, "PLACEFP": 80560, "PLACENS": 2583169, "GEOID": 680560, "NAMELSAD": "Trowbridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17560536, "AWATER": 0, "INTPTLAT": 38.926385, "INTPTLON": -121.5148455, "NAME": "Trowbridge,East Nicolaus", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 38.925229 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 296, "felt:has_geometry": true, "felt:h3_index": 644721917400555624, "STATEFP": 6, "PLACEFP": 84816, "PLACENS": 2412228, "GEOID": 684816, "NAME": "West Sacramento", "NAMELSAD": "West Sacramento city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55606617, "AWATER": 3446736, "INTPTLAT": 38.5543684, "INTPTLON": -121.5486634, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 444, "felt:has_geometry": true, "felt:h3_index": 644721917732948493, "STATEFP": 6, "PLACEFP": 64000, "PLACENS": 2411751, "GEOID": 664000, "NAME": "Sacramento", "NAMELSAD": "Sacramento city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 255491817, "AWATER": 5413141, "INTPTLAT": 38.5676936, "INTPTLON": -121.4681605, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 38.565348 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1046, "felt:has_geometry": true, "felt:h3_index": 644721918184446238, "STATEFP": 6, "PLACEFP": 41142, "PLACENS": 2583055, "GEOID": 641142, "NAMELSAD": "Lemon Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4247517, "AWATER": 0, "INTPTLAT": 38.5172317, "INTPTLON": -121.4572792, "NAME": "Lemon Hill,Fruitridge Pocket,Parkway", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -121.453857, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 298, "felt:has_geometry": true, "felt:h3_index": 644721918588814197, "STATEFP": 6, "PLACEFP": 86328, "PLACENS": 2412300, "GEOID": 686328, "NAME": "Woodland", "NAMELSAD": "Woodland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39665023, "AWATER": 0, "INTPTLAT": 38.6711605, "INTPTLON": -121.7500432, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 295, "felt:has_geometry": true, "felt:h3_index": 644721919076738481, "STATEFP": 6, "PLACEFP": 18100, "PLACENS": 2410296, "GEOID": 618100, "NAME": "Davis", "NAMELSAD": "Davis city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25826324, "AWATER": 90331, "INTPTLAT": 38.556147, "INTPTLON": -121.7377925, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -121.739502, 38.556757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 636, "felt:has_geometry": true, "felt:h3_index": 644721919623586141, "STATEFP": 6, "PLACEFP": 11390, "PLACENS": 2407967, "GEOID": 611390, "NAME": "Carmichael", "NAMELSAD": "Carmichael CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39714478, "AWATER": 602793, "INTPTLAT": 38.6308121, "INTPTLON": -121.3256364, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 38.625454 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1090, "felt:has_geometry": true, "felt:h3_index": 644721919723248522, "STATEFP": 6, "PLACEFP": 44760, "PLACENS": 2583067, "GEOID": 644760, "NAMELSAD": "McClellan Park CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10536176, "AWATER": 0, "INTPTLAT": 38.6628961, "INTPTLON": -121.4016562, "NAME": "McClellan Park,North Highlands", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 38.659778 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 826, "felt:has_geometry": true, "felt:h3_index": 644721919891978133, "STATEFP": 6, "PLACEFP": 23294, "PLACENS": 2408100, "GEOID": 623294, "NAME": "Fair Oaks", "NAMELSAD": "Fair Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28169829, "AWATER": 930992, "INTPTLAT": 38.6501544, "INTPTLON": -121.2509702, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.651198 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 513, "felt:has_geometry": true, "felt:h3_index": 644721919944418001, "STATEFP": 6, "PLACEFP": 2210, "PLACENS": 2582934, "GEOID": 602210, "NAMELSAD": "Antelope CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17705728, "AWATER": 0, "INTPTLAT": 38.7153301, "INTPTLON": -121.3609616, "NAME": "Antelope,Foothill Farms", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 38.711233 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 518, "felt:has_geometry": true, "felt:h3_index": 644721920080101603, "STATEFP": 6, "PLACEFP": 2553, "PLACENS": 2407756, "GEOID": 602553, "NAMELSAD": "Arden-Arcade CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41169054, "AWATER": 588891, "INTPTLAT": 38.6006475, "INTPTLON": -121.3846427, "NAME": "Arden-Arcade,La Riviera", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -121.376953, 38.599700 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1065, "felt:has_geometry": true, "felt:h3_index": 644721922483215114, "STATEFP": 6, "PLACEFP": 42142, "PLACENS": 2812656, "GEOID": 642142, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082298, "AWATER": 0, "INTPTLAT": 38.4866914, "INTPTLON": -120.6034249, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -120.596924, 38.487995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1335, "felt:has_geometry": true, "felt:h3_index": 644721923661961014, "STATEFP": 6, "PLACEFP": 61124, "PLACENS": 2586445, "GEOID": 661124, "NAME": "River Pines", "NAMELSAD": "River Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 524419, "AWATER": 0, "INTPTLAT": 38.545458000000007, "INTPTLON": -120.7429092, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -120.739746, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 904, "felt:has_geometry": true, "felt:h3_index": 644721924029761590, "STATEFP": 6, "PLACEFP": 31302, "PLACENS": 2628736, "GEOID": 631302, "NAME": "Grizzly Flats", "NAMELSAD": "Grizzly Flats CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17168505, "AWATER": 0, "INTPTLAT": 38.6356964, "INTPTLON": -120.535435, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.634036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 624, "felt:has_geometry": true, "felt:h3_index": 644721925059306634, "STATEFP": 6, "PLACEFP": 10270, "PLACENS": 2582961, "GEOID": 610270, "NAME": "Camino", "NAMELSAD": "Camino CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6659897, "AWATER": 0, "INTPTLAT": 38.7422654, "INTPTLON": -120.6808108, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 38.736946 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1273, "felt:has_geometry": true, "felt:h3_index": 644721926213384809, "STATEFP": 6, "PLACEFP": 57148, "PLACENS": 2583114, "GEOID": 657148, "NAME": "Pine Grove", "NAMELSAD": "Pine Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19383669, "AWATER": 0, "INTPTLAT": 38.4030395, "INTPTLON": -120.6570875, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1560, "felt:has_geometry": true, "felt:h3_index": 644721926267803176, "STATEFP": 6, "PLACEFP": 84732, "PLACENS": 2409563, "GEOID": 684732, "NAME": "West Point", "NAMELSAD": "West Point CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7677757, "AWATER": 0, "INTPTLAT": 38.4060578, "INTPTLON": -120.5364802, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1533, "felt:has_geometry": true, "felt:h3_index": 644721926425664280, "STATEFP": 6, "PLACEFP": 83094, "PLACENS": 2583178, "GEOID": 683094, "NAMELSAD": "Volcano CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3626954, "AWATER": 0, "INTPTLAT": 38.4506137, "INTPTLON": -120.6217679, "NAME": "Volcano,Red Corral,Pioneer", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -120.618896, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 461, "felt:has_geometry": true, "felt:h3_index": 644721927117279756, "STATEFP": 6, "PLACEFP": 1514, "PLACENS": 2409693, "GEOID": 601514, "NAME": "Amador City", "NAMELSAD": "Amador City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 801747, "AWATER": 0, "INTPTLAT": 38.4189949, "INTPTLON": -120.8232598, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -120.816650, 38.419166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 464, "felt:has_geometry": true, "felt:h3_index": 644721927284803904, "STATEFP": 6, "PLACEFP": 57834, "PLACENS": 2411446, "GEOID": 657834, "NAME": "Plymouth", "NAMELSAD": "Plymouth city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6860201, "AWATER": 32811, "INTPTLAT": 38.4717408, "INTPTLON": -120.857194, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 38.470794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 834, "felt:has_geometry": true, "felt:h3_index": 644721927488423662, "STATEFP": 6, "PLACEFP": 23980, "PLACENS": 2583012, "GEOID": 623980, "NAME": "Fiddletown", "NAMELSAD": "Fiddletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11797057, "AWATER": 0, "INTPTLAT": 38.506864, "INTPTLON": -120.760149, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -120.761719, 38.505191 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 758, "felt:has_geometry": true, "felt:h3_index": 644721927748215626, "STATEFP": 6, "PLACEFP": 19976, "PLACENS": 2583002, "GEOID": 619976, "NAME": "Drytown", "NAMELSAD": "Drytown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8432611, "AWATER": 7631, "INTPTLAT": 38.4414885, "INTPTLON": -120.8605043, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -120.860596, 38.436380 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 374, "felt:has_geometry": true, "felt:h3_index": 644721927938467665, "STATEFP": 6, "PLACEFP": 77392, "PLACENS": 2412019, "GEOID": 677392, "NAME": "Sutter Creek", "NAMELSAD": "Sutter Creek city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6988164, "AWATER": 0, "INTPTLAT": 38.3924453, "INTPTLON": -120.798969, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -120.794678, 38.393339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 509, "felt:has_geometry": true, "felt:h3_index": 644721928344028706, "STATEFP": 6, "PLACEFP": 1518, "PLACENS": 2812655, "GEOID": 601518, "NAME": "Amador Pines", "NAMELSAD": "Amador Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12561595, "AWATER": 0, "INTPTLAT": 38.4896313, "INTPTLON": -120.5333049, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.487995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 598, "felt:has_geometry": true, "felt:h3_index": 644721928787056372, "STATEFP": 6, "PLACEFP": 8680, "PLACENS": 2586444, "GEOID": 608680, "NAME": "Buckhorn", "NAMELSAD": "Buckhorn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12772523, "AWATER": 0, "INTPTLAT": 38.4547969, "INTPTLON": -120.5323337, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.453589 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1116, "felt:has_geometry": true, "felt:h3_index": 644721939188048516, "STATEFP": 6, "PLACEFP": 46338, "PLACENS": 2583074, "GEOID": 646338, "NAME": "Maxwell", "NAMELSAD": "Maxwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569332, "AWATER": 0, "INTPTLAT": 39.2770782, "INTPTLON": -122.1946759, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.274790 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1067, "felt:has_geometry": true, "felt:h3_index": 644721940661747024, "STATEFP": 6, "PLACEFP": 42230, "PLACENS": 2583059, "GEOID": 642230, "NAME": "Lodoga", "NAMELSAD": "Lodoga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8772455, "AWATER": 0, "INTPTLAT": 39.3042725, "INTPTLON": -122.5059438, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 39.300299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1300, "felt:has_geometry": true, "felt:h3_index": 644721941324717229, "STATEFP": 6, "PLACEFP": 58758, "PLACENS": 2583118, "GEOID": 658758, "NAME": "Princeton", "NAMELSAD": "Princeton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3781914, "AWATER": 0, "INTPTLAT": 39.4015985, "INTPTLON": -122.0193595, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 265, "felt:has_geometry": true, "felt:h3_index": 644721945635593221, "STATEFP": 6, "PLACEFP": 14946, "PLACENS": 2410204, "GEOID": 614946, "NAME": "Colusa", "NAMELSAD": "Colusa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11295870, "AWATER": 0, "INTPTLAT": 39.2000228, "INTPTLON": -122.0094812, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 39.198205 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 264, "felt:has_geometry": true, "felt:h3_index": 644721945915734576, "STATEFP": 6, "PLACEFP": 85586, "PLACENS": 2412268, "GEOID": 685586, "NAME": "Williams", "NAMELSAD": "Williams city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12810560, "AWATER": 0, "INTPTLAT": 39.1497797, "INTPTLON": -122.1389678, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 39.147103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 805, "felt:has_geometry": true, "felt:h3_index": 644721950334265260, "STATEFP": 6, "PLACEFP": 22006, "PLACENS": 2628728, "GEOID": 622006, "NAME": "Elk Creek", "NAMELSAD": "Elk Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3820501, "AWATER": 81504, "INTPTLAT": 39.5986779, "INTPTLON": -122.5323198, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 39.597223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1445, "felt:has_geometry": true, "felt:h3_index": 644721952581245840, "STATEFP": 6, "PLACEFP": 75154, "PLACENS": 2583153, "GEOID": 675154, "NAME": "Stonyford", "NAMELSAD": "Stonyford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3636119, "AWATER": 0, "INTPTLAT": 39.3694918, "INTPTLON": -122.5438083, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 39.368279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 413, "felt:has_geometry": true, "felt:h3_index": 644721956063023726, "STATEFP": 6, "PLACEFP": 6560, "PLACENS": 2409848, "GEOID": 606560, "NAME": "Biggs", "NAMELSAD": "Biggs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2317099, "AWATER": 0, "INTPTLAT": 39.4101867, "INTPTLON": -121.7133215, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 39.410733 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 414, "felt:has_geometry": true, "felt:h3_index": 644721956836683122, "STATEFP": 6, "PLACEFP": 31260, "PLACENS": 2410665, "GEOID": 631260, "NAME": "Gridley", "NAMELSAD": "Gridley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5404056, "AWATER": 0, "INTPTLAT": 39.3622287, "INTPTLON": -121.6970797, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -121.695557, 39.359785 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 155, "felt:has_geometry": true, "felt:h3_index": 644721958220879138, "STATEFP": 6, "PLACEFP": 54386, "PLACENS": 2411337, "GEOID": 654386, "NAMELSAD": "Oroville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35994947, "AWATER": 47848, "INTPTLAT": 39.4954239, "INTPTLON": -121.5600694, "NAME": "Oroville,South Oroville", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 39.495563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1481, "felt:has_geometry": true, "felt:h3_index": 644721958419747496, "STATEFP": 6, "PLACEFP": 78470, "PLACENS": 2410077, "GEOID": 678470, "NAME": "Thermalito", "NAMELSAD": "Thermalito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32857219, "AWATER": 434050, "INTPTLAT": 39.508933, "INTPTLON": -121.6011162, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 39.504041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1236, "felt:has_geometry": true, "felt:h3_index": 644721958459156291, "STATEFP": 6, "PLACEFP": 54388, "PLACENS": 2409001, "GEOID": 654388, "NAME": "Oroville East", "NAMELSAD": "Oroville East CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55935091, "AWATER": 415638, "INTPTLAT": 39.493619700000007, "INTPTLON": -121.4837545, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 39.495563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1241, "felt:has_geometry": true, "felt:h3_index": 644721959051926547, "STATEFP": 6, "PLACEFP": 55086, "PLACENS": 2409019, "GEOID": 655086, "NAME": "Palermo", "NAMELSAD": "Palermo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75529077, "AWATER": 37114, "INTPTLAT": 39.4306948, "INTPTLON": -121.5228836, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -121.519775, 39.427707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1326, "felt:has_geometry": true, "felt:h3_index": 644721959830195393, "STATEFP": 6, "PLACEFP": 60662, "PLACENS": 2612486, "GEOID": 660662, "NAME": "Richvale", "NAMELSAD": "Richvale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2401175, "AWATER": 0, "INTPTLAT": 39.4937385, "INTPTLON": -121.7507688, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 39.495563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 84, "felt:has_geometry": true, "felt:h3_index": 644721960644087960, "STATEFP": 6, "PLACEFP": 41936, "PLACENS": 2410846, "GEOID": 641936, "NAME": "Live Oak", "NAMELSAD": "Live Oak city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8083317, "AWATER": 0, "INTPTLAT": 39.2788019, "INTPTLON": -121.662439, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 39.274790 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1459, "felt:has_geometry": true, "felt:h3_index": 644721960940881587, "STATEFP": 6, "PLACEFP": 77378, "PLACENS": 2410039, "GEOID": 677378, "NAME": "Sutter", "NAMELSAD": "Sutter CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7835375, "AWATER": 0, "INTPTLAT": 39.1555962, "INTPTLON": -121.7492647, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 39.155622 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 935, "felt:has_geometry": true, "felt:h3_index": 644721962514455689, "STATEFP": 6, "PLACEFP": 34428, "PLACENS": 2612482, "GEOID": 634428, "NAME": "Honcut", "NAMELSAD": "Honcut CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10970686, "AWATER": 0, "INTPTLAT": 39.3325914, "INTPTLON": -121.5387589, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 39.334297 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 522, "felt:has_geometry": true, "felt:h3_index": 644721965368679813, "STATEFP": 6, "PLACEFP": 2910, "PLACENS": 2628707, "GEOID": 602910, "NAME": "Artois", "NAMELSAD": "Artois CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7458262, "AWATER": 0, "INTPTLAT": 39.6331786, "INTPTLON": -122.1897577, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 218, "felt:has_geometry": true, "felt:h3_index": 644721966062888084, "STATEFP": 6, "PLACEFP": 54274, "PLACENS": 2411335, "GEOID": 654274, "NAME": "Orland", "NAMELSAD": "Orland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7765622, "AWATER": 0, "INTPTLAT": 39.7460824, "INTPTLON": -122.1855449, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.178955, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1194, "felt:has_geometry": true, "felt:h3_index": 644721966796508306, "STATEFP": 6, "PLACEFP": 51574, "PLACENS": 2612484, "GEOID": 651574, "NAME": "Nord", "NAMELSAD": "Nord CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5452534, "AWATER": 0, "INTPTLAT": 39.7737878, "INTPTLON": -121.9549057, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 909, "felt:has_geometry": true, "felt:h3_index": 644721967447511971, "STATEFP": 6, "PLACEFP": 31890, "PLACENS": 2408348, "GEOID": 631890, "NAME": "Hamilton City", "NAMELSAD": "Hamilton City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1060201, "AWATER": 0, "INTPTLAT": 39.742678, "INTPTLON": -122.0109458, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 219, "felt:has_geometry": true, "felt:h3_index": 644721969601854029, "STATEFP": 6, "PLACEFP": 85684, "PLACENS": 2412272, "GEOID": 685684, "NAME": "Willows", "NAMELSAD": "Willows city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7344419, "AWATER": 31054, "INTPTLAT": 39.5147524, "INTPTLON": -122.1991778, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 39.512517 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 382, "felt:has_geometry": true, "felt:h3_index": 644721974489566092, "STATEFP": 6, "PLACEFP": 13945, "PLACENS": 2409479, "GEOID": 613945, "NAME": "Clearlake", "NAMELSAD": "Clearlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26235110, "AWATER": 1167608, "INTPTLAT": 38.9600452, "INTPTLON": -122.6332316, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1082, "felt:has_geometry": true, "felt:h3_index": 644721974877209326, "STATEFP": 6, "PLACEFP": 44350, "PLACENS": 2408146, "GEOID": 644350, "NAME": "Lower Lake", "NAMELSAD": "Lower Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6906625, "AWATER": 64423, "INTPTLAT": 38.9130345, "INTPTLON": -122.6069867, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1353, "felt:has_geometry": true, "felt:h3_index": 644721976003537758, "STATEFP": 6, "PLACEFP": 63302, "PLACENS": 2805251, "GEOID": 663302, "NAME": "Rumsey", "NAMELSAD": "Rumsey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6338948, "AWATER": 218858, "INTPTLAT": 38.893308, "INTPTLON": -122.2436468, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.244873, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 924, "felt:has_geometry": true, "felt:h3_index": 644721978611729115, "STATEFP": 6, "PLACEFP": 33549, "PLACENS": 2408382, "GEOID": 633549, "NAME": "Hidden Valley Lake", "NAMELSAD": "Hidden Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25433860, "AWATER": 374389, "INTPTLAT": 38.8014979, "INTPTLON": -122.5514216, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.552490, 38.796908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1134, "felt:has_geometry": true, "felt:h3_index": 644721979138365161, "STATEFP": 6, "PLACEFP": 47332, "PLACENS": 2408828, "GEOID": 647332, "NAME": "Middletown", "NAMELSAD": "Middletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4776232, "AWATER": 0, "INTPTLAT": 38.7518774, "INTPTLON": -122.6221035, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.618408, 38.745515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 906, "felt:has_geometry": true, "felt:h3_index": 644721979690108459, "STATEFP": 6, "PLACEFP": 31540, "PLACENS": 2628737, "GEOID": 631540, "NAME": "Guinda", "NAMELSAD": "Guinda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7578139, "AWATER": 0, "INTPTLAT": 38.8273739, "INTPTLON": -122.1983586, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 38.822591 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1467, "felt:has_geometry": true, "felt:h3_index": 644721980558279433, "STATEFP": 6, "PLACEFP": 77860, "PLACENS": 2805253, "GEOID": 677860, "NAME": "Tancred", "NAMELSAD": "Tancred CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4172360, "AWATER": 0, "INTPTLAT": 38.7618592, "INTPTLON": -122.1546958, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 38.762650 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1189, "felt:has_geometry": true, "felt:h3_index": 644721982539041578, "STATEFP": 6, "PLACEFP": 51294, "PLACENS": 2408925, "GEOID": 651294, "NAME": "Nice", "NAMELSAD": "Nice CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4472124, "AWATER": 12228, "INTPTLAT": 39.1261812, "INTPTLON": -122.8553295, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.849121, 39.121537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1512, "felt:has_geometry": true, "felt:h3_index": 644721983748748648, "STATEFP": 6, "PLACEFP": 81358, "PLACENS": 2409382, "GEOID": 681358, "NAME": "Upper Lake", "NAMELSAD": "Upper Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4439947, "AWATER": 21212, "INTPTLAT": 39.1650498, "INTPTLON": -122.9051819, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 39.164141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1416, "felt:has_geometry": true, "felt:h3_index": 644721986105613489, "STATEFP": 6, "PLACEFP": 72478, "PLACENS": 2583147, "GEOID": 672478, "NAME": "Soda Bay", "NAMELSAD": "Soda Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3327990, "AWATER": 0, "INTPTLAT": 39.0024314, "INTPTLON": -122.779476, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.772217, 39.002110 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1085, "felt:has_geometry": true, "felt:h3_index": 644721986587892896, "STATEFP": 6, "PLACEFP": 44406, "PLACENS": 2408150, "GEOID": 644406, "NAME": "Lucerne", "NAMELSAD": "Lucerne CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13916576, "AWATER": 35489, "INTPTLAT": 39.0567698, "INTPTLON": -122.7702894, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.772217, 39.053318 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 977, "felt:has_geometry": true, "felt:h3_index": 644721986836369778, "STATEFP": 6, "PLACEFP": 38044, "PLACENS": 2408468, "GEOID": 638044, "NAME": "Kelseyville", "NAMELSAD": "Kelseyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7471626, "AWATER": 15272, "INTPTLAT": 38.9701843, "INTPTLON": -122.8313842, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.827148, 38.967951 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 679, "felt:has_geometry": true, "felt:h3_index": 644721986968608965, "STATEFP": 6, "PLACEFP": 13985, "PLACENS": 2582976, "GEOID": 613985, "NAME": "Clearlake Riviera", "NAMELSAD": "Clearlake Riviera CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13696201, "AWATER": 4029, "INTPTLAT": 38.9513834, "INTPTLON": -122.7222429, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 38.950865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1203, "felt:has_geometry": true, "felt:h3_index": 644721987206005528, "STATEFP": 6, "PLACEFP": 51990, "PLACENS": 2408942, "GEOID": 651990, "NAME": "North Lakeport", "NAMELSAD": "North Lakeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832064, "AWATER": 6993183, "INTPTLAT": 39.0866322, "INTPTLON": -122.9094423, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 39.087436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 301, "felt:has_geometry": true, "felt:h3_index": 644721988000654554, "STATEFP": 6, "PLACEFP": 39710, "PLACENS": 2411609, "GEOID": 639710, "NAME": "Lakeport", "NAMELSAD": "Lakeport city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7920508, "AWATER": 363747, "INTPTLAT": 39.0383327, "INTPTLON": -122.9226333, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 39.036253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1432, "felt:has_geometry": true, "felt:h3_index": 644721988312697257, "STATEFP": 6, "PLACEFP": 73690, "PLACENS": 2583149, "GEOID": 673690, "NAME": "Spring Valley", "NAMELSAD": "Spring Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12780930, "AWATER": 102405, "INTPTLAT": 39.0760533, "INTPTLON": -122.5845123, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.585449, 39.070379 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 678, "felt:has_geometry": true, "felt:h3_index": 644721988873897262, "STATEFP": 6, "PLACEFP": 13966, "PLACENS": 2407631, "GEOID": 613966, "NAME": "Clearlake Oaks", "NAMELSAD": "Clearlake Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5123125, "AWATER": 442546, "INTPTLAT": 39.0206053, "INTPTLON": -122.6569387, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.651367, 39.019184 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 517, "felt:has_geometry": true, "felt:h3_index": 644721992046339372, "STATEFP": 6, "PLACEFP": 2420, "PLACENS": 2407755, "GEOID": 602420, "NAME": "Arbuckle", "NAMELSAD": "Arbuckle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4559938, "AWATER": 0, "INTPTLAT": 39.0141947, "INTPTLON": -122.0610427, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.058105, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 691, "felt:has_geometry": true, "felt:h3_index": 644721992379966553, "STATEFP": 6, "PLACEFP": 14554, "PLACENS": 2582979, "GEOID": 614554, "NAME": "College City", "NAMELSAD": "College City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599771, "AWATER": 0, "INTPTLAT": 39.0060851, "INTPTLON": -122.0051338, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 39.002110 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1127, "felt:has_geometry": true, "felt:h3_index": 644721993619691746, "STATEFP": 6, "PLACEFP": 46926, "PLACENS": 2583078, "GEOID": 646926, "NAME": "Meridian", "NAMELSAD": "Meridian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713975, "AWATER": 0, "INTPTLAT": 39.1404373, "INTPTLON": -121.9079004, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -121.904297, 39.138582 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 903, "felt:has_geometry": true, "felt:h3_index": 644721994257543755, "STATEFP": 6, "PLACEFP": 31288, "PLACENS": 2583030, "GEOID": 631288, "NAME": "Grimes", "NAMELSAD": "Grimes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5856072, "AWATER": 0, "INTPTLAT": 39.0741539, "INTPTLON": -121.8987753, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 39.070379 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 760, "felt:has_geometry": true, "felt:h3_index": 644721994845959590, "STATEFP": 6, "PLACEFP": 20228, "PLACENS": 2583003, "GEOID": 620228, "NAME": "Dunnigan", "NAMELSAD": "Dunnigan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13551020, "AWATER": 0, "INTPTLAT": 38.8926428, "INTPTLON": -121.9741835, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1336, "felt:has_geometry": true, "felt:h3_index": 644721997469258910, "STATEFP": 6, "PLACEFP": 62168, "PLACENS": 2583123, "GEOID": 662168, "NAME": "Robbins", "NAMELSAD": "Robbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6706066, "AWATER": 22544, "INTPTLAT": 38.8669477, "INTPTLON": -121.7070925, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 38.865375 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 595, "felt:has_geometry": true, "felt:h3_index": 644722007611057680, "STATEFP": 6, "PLACEFP": 8478, "PLACENS": 2582951, "GEOID": 608478, "NAME": "Brookdale", "NAMELSAD": "Brookdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9963087, "AWATER": 0, "INTPTLAT": 37.1057317, "INTPTLON": -122.110623, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.113037, 37.107765 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1071, "felt:has_geometry": true, "felt:h3_index": 644722007842263266, "STATEFP": 6, "PLACEFP": 42510, "PLACENS": 2583060, "GEOID": 642510, "NAME": "Lompico", "NAMELSAD": "Lompico CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8749690, "AWATER": 315, "INTPTLAT": 37.1146189, "INTPTLON": -122.0527676, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 37.116526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 588, "felt:has_geometry": true, "felt:h3_index": 644722008068795715, "STATEFP": 6, "PLACEFP": 7652, "PLACENS": 2407892, "GEOID": 607652, "NAME": "Boulder Creek", "NAMELSAD": "Boulder Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19456234, "AWATER": 0, "INTPTLAT": 37.1340991, "INTPTLON": -122.1272084, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.124023, 37.134045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 580, "felt:has_geometry": true, "felt:h3_index": 644722008148753014, "STATEFP": 6, "PLACEFP": 7470, "PLACENS": 2582948, "GEOID": 607470, "NAME": "Bonny Doon", "NAMELSAD": "Bonny Doon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42898133, "AWATER": 0, "INTPTLAT": 37.0435771, "INTPTLON": -122.1369719, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.037640 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 551, "felt:has_geometry": true, "felt:h3_index": 644722008425538892, "STATEFP": 6, "PLACEFP": 5332, "PLACENS": 2407827, "GEOID": 605332, "NAMELSAD": "Ben Lomond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21674902, "AWATER": 0, "INTPTLAT": 37.0782118, "INTPTLON": -122.0881023, "NAME": "Ben Lomond,Felton,Mount Hermon", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.072710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 52, "felt:has_geometry": true, "felt:h3_index": 644722009897173091, "STATEFP": 6, "PLACEFP": 48956, "PLACENS": 2411142, "GEOID": 648956, "NAME": "Monte Sereno", "NAMELSAD": "Monte Sereno city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4231274, "AWATER": 0, "INTPTLAT": 37.2404096, "INTPTLON": -121.9882354, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 37.239075 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 622, "felt:has_geometry": true, "felt:h3_index": 644722010164307849, "STATEFP": 6, "PLACEFP": 10088, "PLACENS": 2407942, "GEOID": 610088, "NAMELSAD": "Cambrian Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1575566, "AWATER": 0, "INTPTLAT": 37.2562757, "INTPTLON": -121.9288407, "NAME": "Cambrian Park,Los Gatos", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 37.256566 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1051, "felt:has_geometry": true, "felt:h3_index": 644722010310627419, "STATEFP": 6, "PLACEFP": 41282, "PLACENS": 2408606, "GEOID": 641282, "NAME": "Lexington Hills", "NAMELSAD": "Lexington Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12220701, "AWATER": 88518, "INTPTLAT": 37.1590159, "INTPTLON": -121.9887929, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 472, "felt:has_geometry": true, "felt:h3_index": 644722012169345097, "STATEFP": 6, "PLACEFP": 69112, "PLACENS": 2411820, "GEOID": 669112, "NAME": "Santa Cruz", "NAMELSAD": "Santa Cruz city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32996448, "AWATER": 7998699, "INTPTLAT": 36.974385, "INTPTLON": -122.0352679, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 36.976227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 725, "felt:has_geometry": true, "felt:h3_index": 644722013311284645, "STATEFP": 6, "PLACEFP": 18086, "PLACENS": 2582991, "GEOID": 618086, "NAME": "Davenport", "NAMELSAD": "Davenport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7367925, "AWATER": 0, "INTPTLAT": 37.0177787, "INTPTLON": -122.1878849, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 37.011326 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1593, "felt:has_geometry": true, "felt:h3_index": 644722014164797872, "STATEFP": 6, "PLACEFP": 87090, "PLACENS": 2583188, "GEOID": 687090, "NAMELSAD": "Zayante CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7308969, "AWATER": 0, "INTPTLAT": 37.0892135, "INTPTLON": -122.040862, "NAME": "Zayante,Scotts Valley", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1063, "felt:has_geometry": true, "felt:h3_index": 644722014608371811, "STATEFP": 6, "PLACEFP": 41922, "PLACENS": 2408622, "GEOID": 641922, "NAMELSAD": "Live Oak CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8398410, "AWATER": 0, "INTPTLAT": 36.9860239, "INTPTLON": -121.9804138, "NAME": "Live Oak,Twin Lakes,Capitola,Pleasure Point", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1251, "felt:has_geometry": true, "felt:h3_index": 644722014756472024, "STATEFP": 6, "PLACEFP": 56028, "PLACENS": 2583108, "GEOID": 656028, "NAMELSAD": "Pasatiempo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2305899, "AWATER": 0, "INTPTLAT": 37.003338, "INTPTLON": -122.0264737, "NAME": "Pasatiempo,Paradise Park", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.002553 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 515, "felt:has_geometry": true, "felt:h3_index": 644722014822158945, "STATEFP": 6, "PLACEFP": 2378, "PLACENS": 2407750, "GEOID": 602378, "NAMELSAD": "Aptos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17037117, "AWATER": 0, "INTPTLAT": 36.99115, "INTPTLON": -121.8934565, "NAME": "Aptos,Soquel,Seacliff", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 76, "felt:has_geometry": true, "felt:h3_index": 644722016601598709, "STATEFP": 6, "PLACEFP": 31708, "PLACENS": 2410685, "GEOID": 631708, "NAME": "Half Moon Bay", "NAMELSAD": "Half Moon Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16166728, "AWATER": 28378, "INTPTLAT": 37.467319, "INTPTLON": -122.4404845, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.466139 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 926, "felt:has_geometry": true, "felt:h3_index": 644722018547743633, "STATEFP": 6, "PLACEFP": 33632, "PLACENS": 2805051, "GEOID": 633632, "NAME": "Highlands", "NAMELSAD": "Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3367662, "AWATER": 0, "INTPTLAT": 37.520022, "INTPTLON": -122.3458995, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.518440 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 181, "felt:has_geometry": true, "felt:h3_index": 644722018604491281, "STATEFP": 6, "PLACEFP": 65070, "PLACENS": 2411780, "GEOID": 665070, "NAMELSAD": "San Carlos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14017266, "AWATER": 2037, "INTPTLAT": 37.4990342, "INTPTLON": -122.2675721, "NAME": "San Carlos,Emerald Lake Hills", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.266846, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 93, "felt:has_geometry": true, "felt:h3_index": 644722018759325973, "STATEFP": 6, "PLACEFP": 68252, "PLACENS": 2411800, "GEOID": 668252, "NAMELSAD": "San Mateo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31427171, "AWATER": 9622102, "INTPTLAT": 37.5603104, "INTPTLON": -122.3106003, "NAME": "San Mateo,Belmont,Baywood Park", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.310791, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 183, "felt:has_geometry": true, "felt:h3_index": 644722019224131611, "STATEFP": 6, "PLACEFP": 86440, "PLACENS": 2413509, "GEOID": 686440, "NAME": "Woodside", "NAMELSAD": "Woodside town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29697449, "AWATER": 0, "INTPTLAT": 37.4221495, "INTPTLON": -122.2585926, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1156, "felt:has_geometry": true, "felt:h3_index": 644722019384691861, "STATEFP": 6, "PLACEFP": 48760, "PLACENS": 2408858, "GEOID": 648760, "NAMELSAD": "Montara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10040503, "AWATER": 0, "INTPTLAT": 37.5482633, "INTPTLON": -122.4923623, "NAME": "Montara,Moss Beach", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 79, "felt:has_geometry": true, "felt:h3_index": 644722019789825172, "STATEFP": 6, "PLACEFP": 54806, "PLACENS": 2411351, "GEOID": 654806, "NAME": "Pacifica", "NAMELSAD": "Pacifica city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32589428, "AWATER": 23854, "INTPTLAT": 37.6065981, "INTPTLON": -122.4772305, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.605528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 803, "felt:has_geometry": true, "felt:h3_index": 644722020206066472, "STATEFP": 6, "PLACEFP": 21936, "PLACENS": 2408056, "GEOID": 621936, "NAME": "El Granada", "NAMELSAD": "El Granada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12718809, "AWATER": 0, "INTPTLAT": 37.5141657, "INTPTLON": -122.4648032, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 94, "felt:has_geometry": true, "felt:h3_index": 644722022924517800, "STATEFP": 6, "PLACEFP": 58380, "PLACENS": 2412499, "GEOID": 658380, "NAMELSAD": "Portola Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23524913, "AWATER": 3741, "INTPTLAT": 37.3651909, "INTPTLON": -122.2327244, "NAME": "Portola Valley,La Honda", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1262, "felt:has_geometry": true, "felt:h3_index": 644722023233673258, "STATEFP": 6, "PLACEFP": 56756, "PLACENS": 2628775, "GEOID": 656756, "NAME": "Pescadero", "NAMELSAD": "Pescadero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10426487, "AWATER": 22322, "INTPTLAT": 37.2448941, "INTPTLON": -122.378866, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.239075 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1069, "felt:has_geometry": true, "felt:h3_index": 644722023500722541, "STATEFP": 6, "PLACEFP": 42384, "PLACENS": 2628753, "GEOID": 642384, "NAME": "Loma Mar", "NAMELSAD": "Loma Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4487609, "AWATER": 0, "INTPTLAT": 37.2657842, "INTPTLON": -122.3006925, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.265310 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 114, "felt:has_geometry": true, "felt:h3_index": 644722025354083556, "STATEFP": 6, "PLACEFP": 49278, "PLACENS": 2411162, "GEOID": 649278, "NAME": "Morgan Hill", "NAMELSAD": "Morgan Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33509082, "AWATER": 0, "INTPTLAT": 37.132495, "INTPTLON": -121.6418905, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.134045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 54, "felt:has_geometry": true, "felt:h3_index": 644722025844024467, "STATEFP": 6, "PLACEFP": 68000, "PLACENS": 2411790, "GEOID": 668000, "NAME": "San Jose", "NAMELSAD": "San Jose city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 460811249, "AWATER": 8089813, "INTPTLAT": 37.2960112, "INTPTLON": -121.8145519, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.291535 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1371, "felt:has_geometry": true, "felt:h3_index": 644722029521602098, "STATEFP": 6, "PLACEFP": 68238, "PLACENS": 2409264, "GEOID": 668238, "NAME": "San Martin", "NAMELSAD": "San Martin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30043758, "AWATER": 0, "INTPTLAT": 37.0828811, "INTPTLON": -121.5963221, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 37.081476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 34, "felt:has_geometry": true, "felt:h3_index": 644722029939997830, "STATEFP": 6, "PLACEFP": 29504, "PLACENS": 2410591, "GEOID": 629504, "NAME": "Gilroy", "NAMELSAD": "Gilroy city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42826755, "AWATER": 26658, "INTPTLAT": 37.0064066, "INTPTLON": -121.5853213, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -121.585693, 37.002553 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 350, "felt:has_geometry": true, "felt:h3_index": 644722034050507336, "STATEFP": 6, "PLACEFP": 50916, "PLACENS": 2411238, "GEOID": 650916, "NAME": "Newark", "NAMELSAD": "Newark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36051023, "AWATER": 60526, "INTPTLAT": 37.5042533, "INTPTLON": -122.0319104, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 353, "felt:has_geometry": true, "felt:h3_index": 644722034196980939, "STATEFP": 6, "PLACEFP": 26000, "PLACENS": 2410545, "GEOID": 626000, "NAME": "Fremont", "NAMELSAD": "Fremont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 202285909, "AWATER": 26263069, "INTPTLAT": 37.4944602, "INTPTLON": -121.9411495, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 287, "felt:has_geometry": true, "felt:h3_index": 644722034977957618, "STATEFP": 6, "PLACEFP": 60102, "PLACENS": 2410919, "GEOID": 660102, "NAME": "Redwood City", "NAMELSAD": "Redwood City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50080209, "AWATER": 39901457, "INTPTLAT": 37.5152736, "INTPTLON": -122.2136716, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 75, "felt:has_geometry": true, "felt:h3_index": 644722035104504150, "STATEFP": 6, "PLACEFP": 25338, "PLACENS": 2410534, "GEOID": 625338, "NAME": "Foster City", "NAMELSAD": "Foster City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9808766, "AWATER": 41556867, "INTPTLAT": 37.56482, "INTPTLON": -122.2507815, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.244873, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1457, "felt:has_geometry": true, "felt:h3_index": 644722036202290506, "STATEFP": 6, "PLACEFP": 77042, "PLACENS": 2410033, "GEOID": 677042, "NAME": "Sunol", "NAMELSAD": "Sunol CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73192610, "AWATER": 864654, "INTPTLAT": 37.5859346, "INTPTLON": -121.8804556, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 649, "felt:has_geometry": true, "felt:h3_index": 644722036724042293, "STATEFP": 6, "PLACEFP": 11964, "PLACENS": 2407987, "GEOID": 611964, "NAMELSAD": "Castro Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43637182, "AWATER": 571600, "INTPTLAT": 37.7082758, "INTPTLON": -122.0627686, "NAME": "Castro Valley,Fairview", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.058105, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 165, "felt:has_geometry": true, "felt:h3_index": 644722036934446370, "STATEFP": 6, "PLACEFP": 57792, "PLACENS": 2411441, "GEOID": 657792, "NAME": "Pleasanton", "NAMELSAD": "Pleasanton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62525983, "AWATER": 380831, "INTPTLAT": 37.6671852, "INTPTLON": -121.8812304, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.666429 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 352, "felt:has_geometry": true, "felt:h3_index": 644722037096731658, "STATEFP": 6, "PLACEFP": 81204, "PLACENS": 2412130, "GEOID": 681204, "NAME": "Union City", "NAMELSAD": "Union City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50240700, "AWATER": 0, "INTPTLAT": 37.6027593, "INTPTLON": -122.0188397, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.596824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 163, "felt:has_geometry": true, "felt:h3_index": 644722037326454154, "STATEFP": 6, "PLACEFP": 33000, "PLACENS": 2410724, "GEOID": 633000, "NAME": "Hayward", "NAMELSAD": "Hayward city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 118669032, "AWATER": 47415914, "INTPTLAT": 37.626826, "INTPTLON": -122.104015, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.102051, 37.622934 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 113, "felt:has_geometry": true, "felt:h3_index": 644722037696807841, "STATEFP": 6, "PLACEFP": 69084, "PLACENS": 2411816, "GEOID": 669084, "NAME": "Santa Clara", "NAMELSAD": "Santa Clara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47336092, "AWATER": 0, "INTPTLAT": 37.3646207, "INTPTLON": -121.9679735, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 110, "felt:has_geometry": true, "felt:h3_index": 644722037769278186, "STATEFP": 6, "PLACEFP": 77000, "PLACENS": 2412009, "GEOID": 677000, "NAME": "Sunnyvale", "NAMELSAD": "Sunnyvale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 57135716, "AWATER": 1858933, "INTPTLAT": 37.385797, "INTPTLON": -122.0263165, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 35, "felt:has_geometry": true, "felt:h3_index": 644722038262818660, "STATEFP": 6, "PLACEFP": 70280, "PLACENS": 2411832, "GEOID": 670280, "NAME": "Saratoga", "NAMELSAD": "Saratoga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33097414, "AWATER": 0, "INTPTLAT": 37.2683263, "INTPTLON": -122.0262197, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.265310 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 50, "felt:has_geometry": true, "felt:h3_index": 644722038378714677, "STATEFP": 6, "PLACEFP": 17610, "PLACENS": 2410278, "GEOID": 617610, "NAME": "Cupertino", "NAMELSAD": "Cupertino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29338790, "AWATER": 2520, "INTPTLAT": 37.3193996, "INTPTLON": -122.0449572, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 864, "felt:has_geometry": true, "felt:h3_index": 644722038440985942, "STATEFP": 6, "PLACEFP": 27080, "PLACENS": 2408267, "GEOID": 627080, "NAMELSAD": "Fruitdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 691222, "AWATER": 0, "INTPTLAT": 37.3117106, "INTPTLON": -121.9357651, "NAME": "Fruitdale,Burbank,Campbell", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 37.309014 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1438, "felt:has_geometry": true, "felt:h3_index": 644722038728870165, "STATEFP": 6, "PLACEFP": 73906, "PLACENS": 2409994, "GEOID": 673906, "NAMELSAD": "Stanford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7123691, "AWATER": 117653, "INTPTLAT": 37.4269331, "INTPTLON": -122.1677411, "NAME": "Stanford,Palo Alto", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 71, "felt:has_geometry": true, "felt:h3_index": 644722038848756371, "STATEFP": 6, "PLACEFP": 3092, "PLACENS": 2411651, "GEOID": 603092, "NAMELSAD": "Atherton town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12991701, "AWATER": 82320, "INTPTLAT": 37.4570721, "INTPTLON": -122.2010583, "NAME": "Atherton,North Fair Oaks,West Menlo Park", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 37.457418 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 111, "felt:has_geometry": true, "felt:h3_index": 644722039051696876, "STATEFP": 6, "PLACEFP": 49670, "PLACENS": 2411186, "GEOID": 649670, "NAME": "Mountain View", "NAMELSAD": "Mountain View city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30971479, "AWATER": 719719, "INTPTLAT": 37.399686, "INTPTLON": -122.0792687, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.396346 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 74, "felt:has_geometry": true, "felt:h3_index": 644722039111107317, "STATEFP": 6, "PLACEFP": 20956, "PLACENS": 2410389, "GEOID": 620956, "NAMELSAD": "East Palo Alto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6547354, "AWATER": 298782, "INTPTLAT": 37.4677798, "INTPTLON": -122.1325502, "NAME": "East Palo Alto,Menlo Park", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.466139 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 51, "felt:has_geometry": true, "felt:h3_index": 644722039282742948, "STATEFP": 6, "PLACEFP": 43294, "PLACENS": 2412916, "GEOID": 643294, "NAME": "Los Altos Hills", "NAMELSAD": "Los Altos Hills town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23483096, "AWATER": 0, "INTPTLAT": 37.3668075, "INTPTLON": -122.1386496, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 997, "felt:has_geometry": true, "felt:h3_index": 644722039425784414, "STATEFP": 6, "PLACEFP": 39094, "PLACENS": 2628745, "GEOID": 639094, "NAME": "Ladera", "NAMELSAD": "Ladera CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1113098, "AWATER": 0, "INTPTLAT": 37.3998746, "INTPTLON": -122.1989712, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 37.396346 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 112, "felt:has_geometry": true, "felt:h3_index": 644722039514080468, "STATEFP": 6, "PLACEFP": 43280, "PLACENS": 2410876, "GEOID": 643280, "NAMELSAD": "Los Altos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16938030, "AWATER": 0, "INTPTLAT": 37.3684313, "INTPTLON": -122.09657, "NAME": "Los Altos,Loyola", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.091064, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 508, "felt:has_geometry": true, "felt:h3_index": 644722040331327337, "STATEFP": 6, "PLACEFP": 1458, "PLACENS": 2407736, "GEOID": 601458, "NAMELSAD": "Alum Rock CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2250531, "AWATER": 0, "INTPTLAT": 37.3694076, "INTPTLON": -121.8238087, "NAME": "Alum Rock,East Foothills", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 411, "felt:has_geometry": true, "felt:h3_index": 644722040511955312, "STATEFP": 6, "PLACEFP": 47766, "PLACENS": 2411113, "GEOID": 647766, "NAME": "Milpitas", "NAMELSAD": "Milpitas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34915447, "AWATER": 99377, "INTPTLAT": 37.4331408, "INTPTLON": -121.8909237, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 37.431251 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1166, "felt:has_geometry": true, "felt:h3_index": 644722059118655296, "STATEFP": 6, "PLACEFP": 49488, "PLACENS": 2408874, "GEOID": 649488, "NAME": "Moss Landing", "NAMELSAD": "Moss Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1016538, "AWATER": 544792, "INTPTLAT": 36.8053889, "INTPTLON": -121.786577, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -121.783447, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1239, "felt:has_geometry": true, "felt:h3_index": 644722059283699598, "STATEFP": 6, "PLACEFP": 55048, "PLACENS": 2583104, "GEOID": 655048, "NAME": "Pajaro Dunes", "NAMELSAD": "Pajaro Dunes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6640875, "AWATER": 62511, "INTPTLAT": 36.8682123, "INTPTLON": -121.8056971, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -121.805420, 36.862043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 806, "felt:has_geometry": true, "felt:h3_index": 644722059465759453, "STATEFP": 6, "PLACEFP": 22034, "PLACENS": 2408075, "GEOID": 622034, "NAME": "Elkhorn", "NAMELSAD": "Elkhorn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12440882, "AWATER": 58180, "INTPTLAT": 36.8106726, "INTPTLON": -121.7186988, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1037, "felt:has_geometry": true, "felt:h3_index": 644722059554376348, "STATEFP": 6, "PLACEFP": 40592, "PLACENS": 2408578, "GEOID": 640592, "NAME": "Las Lomas", "NAMELSAD": "Las Lomas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2685684, "AWATER": 0, "INTPTLAT": 36.8688131, "INTPTLON": -121.7316111, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 36.870832 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 650, "felt:has_geometry": true, "felt:h3_index": 644722059939718814, "STATEFP": 6, "PLACEFP": 11978, "PLACENS": 2407988, "GEOID": 611978, "NAME": "Castroville", "NAMELSAD": "Castroville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646281, "AWATER": 0, "INTPTLAT": 36.764838, "INTPTLON": -121.7533738, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 36.765292 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 521, "felt:has_geometry": true, "felt:h3_index": 644722061849957702, "STATEFP": 6, "PLACEFP": 2812, "PLACENS": 2407764, "GEOID": 602812, "NAME": "Aromas", "NAMELSAD": "Aromas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12263807, "AWATER": 27254, "INTPTLAT": 36.8747551, "INTPTLON": -121.6307316, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 36.870832 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 91, "felt:has_geometry": true, "felt:h3_index": 644722062163040654, "STATEFP": 6, "PLACEFP": 68014, "PLACENS": 2411792, "GEOID": 668014, "NAME": "San Juan Bautista", "NAMELSAD": "San Juan Bautista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2032272, "AWATER": 1166, "INTPTLAT": 36.8451322, "INTPTLON": -121.5369493, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 36.844461 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 510, "felt:has_geometry": true, "felt:h3_index": 644722062342416396, "STATEFP": 6, "PLACEFP": 1651, "PLACENS": 2407740, "GEOID": 601651, "NAMELSAD": "Amesti CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599656, "AWATER": 166652, "INTPTLAT": 36.9594832, "INTPTLON": -121.7817391, "NAME": "Amesti,Corralitos,Freedom", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -121.783447, 36.958671 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 726, "felt:has_geometry": true, "felt:h3_index": 644722062487377244, "STATEFP": 6, "PLACEFP": 18153, "PLACENS": 2408643, "GEOID": 618153, "NAME": "Day Valley", "NAMELSAD": "Day Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47922347, "AWATER": 0, "INTPTLAT": 37.0254391, "INTPTLON": -121.8559314, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 37.020098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 471, "felt:has_geometry": true, "felt:h3_index": 644722062904934765, "STATEFP": 6, "PLACEFP": 83668, "PLACENS": 2412194, "GEOID": 683668, "NAME": "Watsonville", "NAMELSAD": "Watsonville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17576477, "AWATER": 253182, "INTPTLAT": 36.9235873, "INTPTLON": -121.7723952, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -121.772461, 36.923548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1328, "felt:has_geometry": true, "felt:h3_index": 644722063018669962, "STATEFP": 6, "PLACEFP": 60928, "PLACENS": 2409173, "GEOID": 660928, "NAMELSAD": "Rio del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7770134, "AWATER": 4173062, "INTPTLAT": 36.9578994, "INTPTLON": -121.8848228, "NAME": "Rio del Mar,Aptos Hills-Larkin Valley,La Selva Beach", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 36.958671 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 952, "felt:has_geometry": true, "felt:h3_index": 644722063188698315, "STATEFP": 6, "PLACEFP": 36613, "PLACENS": 2408427, "GEOID": 636613, "NAMELSAD": "Interlaken CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25391065, "AWATER": 1021066, "INTPTLAT": 36.9506026, "INTPTLON": -121.7375192, "NAME": "Interlaken,Pajaro", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -121.739502, 36.949892 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 308, "felt:has_geometry": true, "felt:h3_index": 644722063639663686, "STATEFP": 6, "PLACEFP": 45778, "PLACENS": 2411035, "GEOID": 645778, "NAME": "Marina", "NAMELSAD": "Marina city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23070824, "AWATER": 2333714, "INTPTLAT": 36.6802563, "INTPTLON": -121.7893682, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -121.783447, 36.677231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 309, "felt:has_geometry": true, "felt:h3_index": 644722064084048993, "STATEFP": 6, "PLACEFP": 65112, "PLACENS": 2411806, "GEOID": 665112, "NAMELSAD": "Sand City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1416996, "AWATER": 6121647, "INTPTLAT": 36.6217704, "INTPTLON": -121.8476681, "NAME": "Sand City,Seaside", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 36.615528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1302, "felt:has_geometry": true, "felt:h3_index": 644722065742801485, "STATEFP": 6, "PLACEFP": 58870, "PLACENS": 2409105, "GEOID": 658870, "NAME": "Prunedale", "NAMELSAD": "Prunedale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 119299815, "AWATER": 368885, "INTPTLAT": 36.8117473, "INTPTLON": -121.6549596, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -121.651611, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 408, "felt:has_geometry": true, "felt:h3_index": 644722066089956558, "STATEFP": 6, "PLACEFP": 64224, "PLACENS": 2411768, "GEOID": 664224, "NAME": "Salinas", "NAMELSAD": "Salinas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60903234, "AWATER": 83122, "INTPTLAT": 36.6902168, "INTPTLON": -121.6337934, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 36.686041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 585, "felt:has_geometry": true, "felt:h3_index": 644722066297886637, "STATEFP": 6, "PLACEFP": 7578, "PLACENS": 2407887, "GEOID": 607578, "NAME": "Boronda", "NAMELSAD": "Boronda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1486322, "AWATER": 0, "INTPTLAT": 36.6946324, "INTPTLON": -121.6745116, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -121.673584, 36.694851 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 474, "felt:has_geometry": true, "felt:h3_index": 644722094550163509, "STATEFP": 6, "PLACEFP": 67000, "PLACENS": 2411786, "GEOID": 667000, "NAME": "San Francisco", "NAMELSAD": "San Francisco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 121045788, "AWATER": 479608103, "INTPTLAT": 37.7272391, "INTPTLON": -123.0322294, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -123.024902, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 160, "felt:has_geometry": true, "felt:h3_index": 644722145110743462, "STATEFP": 6, "PLACEFP": 61068, "PLACENS": 2410962, "GEOID": 661068, "NAME": "Riverbank", "NAMELSAD": "Riverbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12201597, "AWATER": 68157, "INTPTLAT": 37.7260221, "INTPTLON": -120.9448404, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 266, "felt:has_geometry": true, "felt:h3_index": 644722145177797193, "STATEFP": 6, "PLACEFP": 22790, "PLACENS": 2410453, "GEOID": 622790, "NAMELSAD": "Escalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5899272, "AWATER": 174504, "INTPTLAT": 37.7913363, "INTPTLON": -120.9996428, "NAME": "Escalon,Del Rio", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -120.992432, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 85, "felt:has_geometry": true, "felt:h3_index": 644722145314416973, "STATEFP": 6, "PLACEFP": 52694, "PLACENS": 2411291, "GEOID": 652694, "NAME": "Oakdale", "NAMELSAD": "Oakdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16121384, "AWATER": 100699, "INTPTLAT": 37.7616661, "INTPTLON": -120.8464343, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 267, "felt:has_geometry": true, "felt:h3_index": 644722146725976930, "STATEFP": 6, "PLACEFP": 61026, "PLACENS": 2410957, "GEOID": 661026, "NAME": "Ripon", "NAMELSAD": "Ripon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13790583, "AWATER": 499649, "INTPTLAT": 37.7420067, "INTPTLON": -121.1303729, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -121.124268, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 247, "felt:has_geometry": true, "felt:h3_index": 644722146773482422, "STATEFP": 6, "PLACEFP": 45484, "PLACENS": 2411024, "GEOID": 645484, "NAME": "Manteca", "NAMELSAD": "Manteca city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55477593, "AWATER": 61889, "INTPTLAT": 37.7928386, "INTPTLON": -121.2260765, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 773, "felt:has_geometry": true, "felt:h3_index": 644722147748173379, "STATEFP": 6, "PLACEFP": 20907, "PLACENS": 2408714, "GEOID": 620907, "NAME": "East Oakdale", "NAMELSAD": "East Oakdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13966924, "AWATER": 386258, "INTPTLAT": 37.7838665, "INTPTLON": -120.7986313, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -120.794678, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 830, "felt:has_geometry": true, "felt:h3_index": 644722148368832842, "STATEFP": 6, "PLACEFP": 23630, "PLACENS": 2408117, "GEOID": 623630, "NAME": "Farmington", "NAMELSAD": "Farmington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6583893, "AWATER": 0, "INTPTLAT": 37.9298676, "INTPTLON": -121.0043672, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.926868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1517, "felt:has_geometry": true, "felt:h3_index": 644722149102032782, "STATEFP": 6, "PLACEFP": 81792, "PLACENS": 2583174, "GEOID": 681792, "NAME": "Valley Home", "NAMELSAD": "Valley Home CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2977464, "AWATER": 0, "INTPTLAT": 37.8272405, "INTPTLON": -120.9143428, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 708, "felt:has_geometry": true, "felt:h3_index": 644722149397808885, "STATEFP": 6, "PLACEFP": 16762, "PLACENS": 2628723, "GEOID": 616762, "NAME": "Cowan", "NAMELSAD": "Cowan CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 365090, "AWATER": 0, "INTPTLAT": 37.5601052, "INTPTLON": -120.9887874, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1351, "felt:has_geometry": true, "felt:h3_index": 644722149440416667, "STATEFP": 6, "PLACEFP": 63168, "PLACENS": 2628786, "GEOID": 663168, "NAMELSAD": "Rouse CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 617334, "AWATER": 0, "INTPTLAT": 37.6195133, "INTPTLON": -121.0083705, "NAME": "Rouse,West Modesto,Airport,Bystrom,Modesto,Bret Harte,Riverdale Park,Parklawn,Ceres", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.614231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 82, "felt:has_geometry": true, "felt:h3_index": 644722149615737250, "STATEFP": 6, "PLACEFP": 34904, "PLACENS": 2410804, "GEOID": 634904, "NAME": "Hughson", "NAMELSAD": "Hughson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4937411, "AWATER": 0, "INTPTLAT": 37.6021348, "INTPTLON": -120.8660044, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -120.860596, 37.596824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 819, "felt:has_geometry": true, "felt:h3_index": 644722149738849507, "STATEFP": 6, "PLACEFP": 22622, "PLACENS": 2408081, "GEOID": 622622, "NAME": "Empire", "NAMELSAD": "Empire CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3026223, "AWATER": 0, "INTPTLAT": 37.6430569, "INTPTLON": -120.9070385, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -120.904541, 37.640335 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1158, "felt:has_geometry": true, "felt:h3_index": 644722149867435827, "STATEFP": 6, "PLACEFP": 48916, "PLACENS": 2628759, "GEOID": 648916, "NAME": "Monterey Park Tract", "NAMELSAD": "Monterey Park Tract CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 122388, "AWATER": 0, "INTPTLAT": 37.5268136, "INTPTLON": -121.0114871, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 987, "felt:has_geometry": true, "felt:h3_index": 644722150161598373, "STATEFP": 6, "PLACEFP": 38422, "PLACENS": 2408477, "GEOID": 638422, "NAME": "Keyes", "NAMELSAD": "Keyes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4060586, "AWATER": 0, "INTPTLAT": 37.557308, "INTPTLON": -120.9113747, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -120.904541, 37.553288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1358, "felt:has_geometry": true, "felt:h3_index": 644722150813795148, "STATEFP": 6, "PLACEFP": 64210, "PLACENS": 2409237, "GEOID": 664210, "NAME": "Salida", "NAMELSAD": "Salida CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5741092, "AWATER": 7060, "INTPTLAT": 37.7091233, "INTPTLON": -121.0848247, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 892, "felt:has_geometry": true, "felt:h3_index": 644722151006321236, "STATEFP": 6, "PLACEFP": 30882, "PLACENS": 2408324, "GEOID": 630882, "NAME": "Grayson", "NAMELSAD": "Grayson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 477325, "AWATER": 0, "INTPTLAT": 37.564577, "INTPTLON": -121.1800503, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 161, "felt:has_geometry": true, "felt:h3_index": 644722152279216947, "STATEFP": 6, "PLACEFP": 83612, "PLACENS": 2412192, "GEOID": 683612, "NAMELSAD": "Waterford city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6108059, "AWATER": 63331, "INTPTLAT": 37.6426846, "INTPTLON": -120.754152, "NAME": "Waterford,Hickman", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -120.750732, 37.640335 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1053, "felt:has_geometry": true, "felt:h3_index": 644722153686720537, "STATEFP": 6, "PLACEFP": 41558, "PLACENS": 2408612, "GEOID": 641558, "NAME": "Lincoln Village", "NAMELSAD": "Lincoln Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1903792, "AWATER": 0, "INTPTLAT": 38.0054709, "INTPTLON": -121.3338427, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1162, "felt:has_geometry": true, "felt:h3_index": 644722153866871020, "STATEFP": 6, "PLACEFP": 49180, "PLACENS": 2408866, "GEOID": 649180, "NAME": "Morada", "NAMELSAD": "Morada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7721138, "AWATER": 18742, "INTPTLAT": 38.0386262, "INTPTLON": -121.2458916, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.039439 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 705, "felt:has_geometry": true, "felt:h3_index": 644722154141826058, "STATEFP": 6, "PLACEFP": 16651, "PLACENS": 2407672, "GEOID": 616651, "NAMELSAD": "Country Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4964750, "AWATER": 438737, "INTPTLAT": 37.9680363, "INTPTLON": -121.3404823, "NAME": "Country Club,Stockton", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 527, "felt:has_geometry": true, "felt:h3_index": 644722154408420564, "STATEFP": 6, "PLACEFP": 3209, "PLACENS": 2407781, "GEOID": 603209, "NAME": "August", "NAMELSAD": "August CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3252575, "AWATER": 0, "INTPTLAT": 37.9796439, "INTPTLON": -121.2625104, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -121.256104, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1477, "felt:has_geometry": true, "felt:h3_index": 644722154726546531, "STATEFP": 6, "PLACEFP": 78232, "PLACENS": 2628794, "GEOID": 678232, "NAME": "Terminous", "NAMELSAD": "Terminous CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2531348, "AWATER": 0, "INTPTLAT": 38.1152563, "INTPTLON": -121.4895583, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -121.486816, 38.117272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1525, "felt:has_geometry": true, "felt:h3_index": 644722155952659043, "STATEFP": 6, "PLACEFP": 82562, "PLACENS": 2583176, "GEOID": 682562, "NAME": "Victor", "NAMELSAD": "Victor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3270555, "AWATER": 0, "INTPTLAT": 38.1384653, "INTPTLON": -121.1987603, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1064, "felt:has_geometry": true, "felt:h3_index": 644722156240425236, "STATEFP": 6, "PLACEFP": 42104, "PLACENS": 2408625, "GEOID": 642104, "NAME": "Lockeford", "NAMELSAD": "Lockeford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21603060, "AWATER": 120019, "INTPTLAT": 38.1491282, "INTPTLON": -121.1543094, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -121.146240, 38.143198 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1542, "felt:has_geometry": true, "felt:h3_index": 644722156378857802, "STATEFP": 6, "PLACEFP": 83626, "PLACENS": 2628798, "GEOID": 683626, "NAME": "Waterloo", "NAMELSAD": "Waterloo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14076382, "AWATER": 0, "INTPTLAT": 38.0364521, "INTPTLON": -121.1845547, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1594, "felt:has_geometry": true, "felt:h3_index": 644722156921635881, "STATEFP": 6, "PLACEFP": 86230, "PLACENS": 2629783, "GEOID": 686230, "NAME": "Woodbridge", "NAMELSAD": "Woodbridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7806489, "AWATER": 276560, "INTPTLAT": 38.1720647, "INTPTLON": -121.3089147, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 692, "felt:has_geometry": true, "felt:h3_index": 644722157148125033, "STATEFP": 6, "PLACEFP": 14708, "PLACENS": 2582980, "GEOID": 614708, "NAMELSAD": "Collierville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17080884, "AWATER": 25477, "INTPTLAT": 38.2128313, "INTPTLON": -121.2649723, "NAME": "Collierville,Acampo", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 38.212288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 246, "felt:has_geometry": true, "felt:h3_index": 644722157713272068, "STATEFP": 6, "PLACEFP": 42202, "PLACENS": 2410854, "GEOID": 642202, "NAME": "Lodi", "NAMELSAD": "Lodi city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35327015, "AWATER": 581028, "INTPTLAT": 38.1216095, "INTPTLON": -121.2907652, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 38.117272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 860, "felt:has_geometry": true, "felt:h3_index": 644722158255329873, "STATEFP": 6, "PLACEFP": 26028, "PLACENS": 2408261, "GEOID": 626028, "NAME": "French Camp", "NAMELSAD": "French Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8013766, "AWATER": 0, "INTPTLAT": 37.8660235, "INTPTLON": -121.2741543, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 37.866181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1462, "felt:has_geometry": true, "felt:h3_index": 644722158308899910, "STATEFP": 6, "PLACEFP": 77595, "PLACENS": 2410048, "GEOID": 677595, "NAME": "Taft Mosswood", "NAMELSAD": "Taft Mosswood CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1205538, "AWATER": 33968, "INTPTLAT": 37.9119543, "INTPTLON": -121.282166, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -121.278076, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 245, "felt:has_geometry": true, "felt:h3_index": 644722158472550738, "STATEFP": 6, "PLACEFP": 40704, "PLACENS": 2411633, "GEOID": 640704, "NAME": "Lathrop", "NAMELSAD": "Lathrop city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51349617, "AWATER": 3058352, "INTPTLAT": 37.8086656, "INTPTLON": -121.3177645, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 748, "felt:has_geometry": true, "felt:h3_index": 644722159723681665, "STATEFP": 6, "PLACEFP": 19339, "PLACENS": 2408672, "GEOID": 619339, "NAME": "Discovery Bay", "NAMELSAD": "Discovery Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14482205, "AWATER": 3514422, "INTPTLAT": 37.9081313, "INTPTLON": -121.5971956, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1264, "felt:has_geometry": true, "felt:h3_index": 644722160350871770, "STATEFP": 6, "PLACEFP": 56798, "PLACENS": 2583111, "GEOID": 656798, "NAME": "Peters", "NAMELSAD": "Peters CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6542371, "AWATER": 15743, "INTPTLAT": 37.9761571, "INTPTLON": -121.0438088, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -121.036377, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1056, "felt:has_geometry": true, "felt:h3_index": 644722160485404756, "STATEFP": 6, "PLACEFP": 41670, "PLACENS": 2408614, "GEOID": 641670, "NAME": "Linden", "NAMELSAD": "Linden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19189037, "AWATER": 134701, "INTPTLAT": 38.0181401, "INTPTLON": -121.1015623, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -121.102295, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 870, "felt:has_geometry": true, "felt:h3_index": 644722160764737934, "STATEFP": 6, "PLACEFP": 28182, "PLACENS": 2408275, "GEOID": 628182, "NAMELSAD": "Garden Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693775, "AWATER": 0, "INTPTLAT": 37.9636972, "INTPTLON": -121.2296097, "NAME": "Garden Acres,Kennedy", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 671, "felt:has_geometry": true, "felt:h3_index": 644722162245424841, "STATEFP": 6, "PLACEFP": 13182, "PLACENS": 2408028, "GEOID": 613182, "NAME": "Chinese Camp", "NAMELSAD": "Chinese Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2325639, "AWATER": 6504, "INTPTLAT": 37.8702154, "INTPTLON": -120.444225, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 37.866181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 698, "felt:has_geometry": true, "felt:h3_index": 644722163433479414, "STATEFP": 6, "PLACEFP": 16210, "PLACENS": 2407658, "GEOID": 616210, "NAME": "Copperopolis", "NAMELSAD": "Copperopolis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 40377349, "AWATER": 63065, "INTPTLAT": 37.9653875, "INTPTLON": -120.6409728, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -120.640869, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 783, "felt:has_geometry": true, "felt:h3_index": 644722164500125035, "STATEFP": 6, "PLACEFP": 21188, "PLACENS": 2408039, "GEOID": 621188, "NAME": "East Sonora", "NAMELSAD": "East Sonora CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334625, "AWATER": 13419, "INTPTLAT": 37.9742408, "INTPTLON": -120.3380353, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -120.333252, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1421, "felt:has_geometry": true, "felt:h3_index": 644722164767589404, "STATEFP": 6, "PLACEFP": 72772, "PLACENS": 2408758, "GEOID": 672772, "NAMELSAD": "Soulsbyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7796211, "AWATER": 15737, "INTPTLAT": 37.9912891, "INTPTLON": -120.2627906, "NAME": "Soulsbyville,Tuolumne City", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -120.256348, 37.987504 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1504, "felt:has_geometry": true, "felt:h3_index": 644722165472642858, "STATEFP": 6, "PLACEFP": 80896, "PLACENS": 2583171, "GEOID": 680896, "NAME": "Tuttletown", "NAMELSAD": "Tuttletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19038413, "AWATER": 16981, "INTPTLAT": 38.0104362, "INTPTLON": -120.4412463, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 694, "felt:has_geometry": true, "felt:h3_index": 644722165883684261, "STATEFP": 6, "PLACEFP": 14904, "PLACENS": 2407648, "GEOID": 614904, "NAME": "Columbia", "NAMELSAD": "Columbia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15439975, "AWATER": 47252, "INTPTLAT": 38.0312272, "INTPTLON": -120.4133976, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 959, "felt:has_geometry": true, "felt:h3_index": 644722166217217779, "STATEFP": 6, "PLACEFP": 37106, "PLACENS": 2408437, "GEOID": 637106, "NAMELSAD": "Jamestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7776484, "AWATER": 5375, "INTPTLAT": 37.9582289, "INTPTLON": -120.4070713, "NAME": "Jamestown,Sonora", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -120.399170, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1000, "felt:has_geometry": true, "felt:h3_index": 644722166574720330, "STATEFP": 6, "PLACEFP": 39164, "PLACENS": 2805905, "GEOID": 639164, "NAME": "La Grange", "NAMELSAD": "La Grange CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 241845, "AWATER": 0, "INTPTLAT": 37.6634557, "INTPTLON": -120.4631472, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -120.465088, 37.657732 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1010, "felt:has_geometry": true, "felt:h3_index": 644722167330780213, "STATEFP": 6, "PLACEFP": 39484, "PLACENS": 2627934, "GEOID": 639484, "NAME": "Lake Don Pedro", "NAMELSAD": "Lake Don Pedro CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47708999, "AWATER": 3331031, "INTPTLAT": 37.6414202, "INTPTLON": -120.3643599, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 37.640335 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1231, "felt:has_geometry": true, "felt:h3_index": 644722167714212917, "STATEFP": 6, "PLACEFP": 53987, "PLACENS": 2805247, "GEOID": 653987, "NAMELSAD": "Orange Blossom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9892153, "AWATER": 396333, "INTPTLAT": 37.8147224, "INTPTLON": -120.6873321, "NAME": "Orange Blossom,Knights Ferry", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -120.684814, 37.814124 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 905, "felt:has_geometry": true, "felt:h3_index": 644722169033053790, "STATEFP": 6, "PLACEFP": 31372, "PLACENS": 2628856, "GEOID": 631372, "NAME": "Groveland", "NAMELSAD": "Groveland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24795516, "AWATER": 15061, "INTPTLAT": 37.831966, "INTPTLON": -120.2415805, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 704, "felt:has_geometry": true, "felt:h3_index": 644722169544468808, "STATEFP": 6, "PLACEFP": 16644, "PLACENS": 2582984, "GEOID": 616644, "NAME": "Coulterville", "NAMELSAD": "Coulterville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1007403, "AWATER": 1813, "INTPTLAT": 37.7125732, "INTPTLON": -120.1960615, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1519, "felt:has_geometry": true, "felt:h3_index": 644722171019735662, "STATEFP": 6, "PLACEFP": 81890, "PLACENS": 2409398, "GEOID": 681890, "NAME": "Valley Springs", "NAMELSAD": "Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10344077, "AWATER": 0, "INTPTLAT": 38.1694383, "INTPTLON": -120.825992, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1311, "felt:has_geometry": true, "felt:h3_index": 644722171483116714, "STATEFP": 6, "PLACEFP": 59426, "PLACENS": 2409134, "GEOID": 659426, "NAME": "Rancho Calaveras", "NAMELSAD": "Rancho Calaveras CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21707375, "AWATER": 77009, "INTPTLAT": 38.1273495, "INTPTLON": -120.8530892, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 38.125915 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1536, "felt:has_geometry": true, "felt:h3_index": 644722171893571600, "STATEFP": 6, "PLACEFP": 83304, "PLACENS": 2409523, "GEOID": 683304, "NAME": "Wallace", "NAMELSAD": "Wallace CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11114771, "AWATER": 6972905, "INTPTLAT": 38.2069018, "INTPTLON": -120.9569815, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 38.203655 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 620, "felt:has_geometry": true, "felt:h3_index": 644722172271895917, "STATEFP": 6, "PLACEFP": 10044, "PLACENS": 2582960, "GEOID": 610044, "NAMELSAD": "Camanche Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082638, "AWATER": 39226, "INTPTLAT": 38.2664813, "INTPTLON": -120.986575, "NAME": "Camanche Village,Camanche North Shore", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.264063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1364, "felt:has_geometry": true, "felt:h3_index": 644722173482720266, "STATEFP": 6, "PLACEFP": 64420, "PLACENS": 2409247, "GEOID": 664420, "NAME": "San Andreas", "NAMELSAD": "San Andreas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21730446, "AWATER": 41137, "INTPTLAT": 38.1762278, "INTPTLON": -120.6693068, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 38.177751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1150, "felt:has_geometry": true, "felt:h3_index": 644722174314327139, "STATEFP": 6, "PLACEFP": 48480, "PLACENS": 2408855, "GEOID": 648480, "NAME": "Mokelumne Hill", "NAMELSAD": "Mokelumne Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7974096, "AWATER": 6904, "INTPTLAT": 38.3084841, "INTPTLON": -120.7056169, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -120.706787, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 463, "felt:has_geometry": true, "felt:h3_index": 644722174407075204, "STATEFP": 6, "PLACEFP": 36980, "PLACENS": 2410128, "GEOID": 636980, "NAMELSAD": "Jackson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9277425, "AWATER": 0, "INTPTLAT": 38.348485, "INTPTLON": -120.772821, "NAME": "Jackson,Martell", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -120.772705, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 383, "felt:has_geometry": true, "felt:h3_index": 644722177498180508, "STATEFP": 6, "PLACEFP": 2112, "PLACENS": 2409709, "GEOID": 602112, "NAME": "Angels", "NAMELSAD": "Angels city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9407811, "AWATER": 12740, "INTPTLAT": 38.0710375, "INTPTLON": -120.5517286, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -120.552979, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 718, "felt:has_geometry": true, "felt:h3_index": 644722179814613913, "STATEFP": 6, "PLACEFP": 17428, "PLACENS": 2582988, "GEOID": 617428, "NAME": "Crows Landing", "NAMELSAD": "Crows Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4282672, "AWATER": 0, "INTPTLAT": 37.3944426, "INTPTLON": -121.0751665, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -121.069336, 37.396346 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 744, "felt:has_geometry": true, "felt:h3_index": 644722180488469587, "STATEFP": 6, "PLACEFP": 19155, "PLACENS": 2582995, "GEOID": 619155, "NAME": "Diablo Grande", "NAMELSAD": "Diablo Grande CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11132191, "AWATER": 24652, "INTPTLAT": 37.3990466, "INTPTLON": -121.263511, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -121.256104, 37.396346 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 159, "felt:has_geometry": true, "felt:h3_index": 644722182674623566, "STATEFP": 6, "PLACEFP": 56112, "PLACENS": 2411383, "GEOID": 656112, "NAME": "Patterson", "NAMELSAD": "Patterson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20167365, "AWATER": 222151, "INTPTLAT": 37.4758755, "INTPTLON": -121.153882, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -121.146240, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 83, "felt:has_geometry": true, "felt:h3_index": 644722185962898626, "STATEFP": 6, "PLACEFP": 51140, "PLACENS": 2411247, "GEOID": 651140, "NAME": "Newman", "NAMELSAD": "Newman city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5553070, "AWATER": 0, "INTPTLAT": 37.3161283, "INTPTLON": -121.0214244, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -121.014404, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 87, "felt:has_geometry": true, "felt:h3_index": 644722186525498705, "STATEFP": 6, "PLACEFP": 31568, "PLACENS": 2410677, "GEOID": 631568, "NAME": "Gustine", "NAMELSAD": "Gustine city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4868787, "AWATER": 0, "INTPTLAT": 37.2525487, "INTPTLON": -120.995513, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -120.992432, 37.247821 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1169, "felt:has_geometry": true, "felt:h3_index": 644722191894960664, "STATEFP": 6, "PLACEFP": 49582, "PLACENS": 2628761, "GEOID": 649582, "NAME": "Mountain House", "NAMELSAD": "Mountain House CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11804529, "AWATER": 0, "INTPTLAT": 37.7673008, "INTPTLON": -121.5449342, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 248, "felt:has_geometry": true, "felt:h3_index": 644722192074074825, "STATEFP": 6, "PLACEFP": 80238, "PLACENS": 2412090, "GEOID": 680238, "NAME": "Tracy", "NAMELSAD": "Tracy city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67824914, "AWATER": 351998, "INTPTLAT": 37.7273956, "INTPTLON": -121.4521955, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -121.453857, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1555, "felt:has_geometry": true, "felt:h3_index": 644722194778856006, "STATEFP": 6, "PLACEFP": 84480, "PLACENS": 2409574, "GEOID": 684480, "NAME": "Westley", "NAMELSAD": "Westley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 879991, "AWATER": 0, "INTPTLAT": 37.5469077, "INTPTLON": -121.2009154, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1577, "felt:has_geometry": true, "felt:h3_index": 644722197092022646, "STATEFP": 6, "PLACEFP": 86076, "PLACENS": 2409616, "GEOID": 686076, "NAME": "Winton", "NAMELSAD": "Winton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7875727, "AWATER": 0, "INTPTLAT": 37.3854272, "INTPTLON": -120.6173641, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -120.618896, 37.378888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 710, "felt:has_geometry": true, "felt:h3_index": 644722197321859747, "STATEFP": 6, "PLACEFP": 17078, "PLACENS": 2582986, "GEOID": 617078, "NAME": "Cressey", "NAMELSAD": "Cressey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4554487, "AWATER": 0, "INTPTLAT": 37.4210299, "INTPTLON": -120.6556898, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 735, "felt:has_geometry": true, "felt:h3_index": 644722197644914963, "STATEFP": 6, "PLACEFP": 18856, "PLACENS": 2408657, "GEOID": 618856, "NAME": "Denair", "NAMELSAD": "Denair CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4253064, "AWATER": 0, "INTPTLAT": 37.5253977, "INTPTLON": -120.7974329, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -120.794678, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 730, "felt:has_geometry": true, "felt:h3_index": 644722198266885518, "STATEFP": 6, "PLACEFP": 18464, "PLACENS": 2408654, "GEOID": 618464, "NAME": "Delhi", "NAMELSAD": "Delhi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9092104, "AWATER": 0, "INTPTLAT": 37.4305992, "INTPTLON": -120.7758992, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -120.772705, 37.431251 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 130, "felt:has_geometry": true, "felt:h3_index": 644722198350958705, "STATEFP": 6, "PLACEFP": 80812, "PLACENS": 2412114, "GEOID": 680812, "NAME": "Turlock", "NAMELSAD": "Turlock city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 43503254, "AWATER": 69528, "INTPTLAT": 37.5055238, "INTPTLON": -120.8592694, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -120.860596, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 534, "felt:has_geometry": true, "felt:h3_index": 644722198528190390, "STATEFP": 6, "PLACEFP": 3708, "PLACENS": 2582939, "GEOID": 603708, "NAME": "Ballico", "NAMELSAD": "Ballico CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7828206, "AWATER": 0, "INTPTLAT": 37.4519168, "INTPTLON": -120.703707, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -120.695801, 37.448697 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1415, "felt:has_geometry": true, "felt:h3_index": 644722198705800913, "STATEFP": 6, "PLACEFP": 72408, "PLACENS": 2583146, "GEOID": 672408, "NAME": "Snelling", "NAMELSAD": "Snelling CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399517, "AWATER": 13317, "INTPTLAT": 37.5244504, "INTPTLON": -120.436319, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 37.518440 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 209, "felt:has_geometry": true, "felt:h3_index": 644722201269151280, "STATEFP": 6, "PLACEFP": 3162, "PLACENS": 2409752, "GEOID": 603162, "NAMELSAD": "Atwater city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17008587, "AWATER": 11735, "INTPTLAT": 37.3540494, "INTPTLON": -120.5971768, "NAME": "Atwater,McSwain,Franklin", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -120.596924, 37.352693 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 928, "felt:has_geometry": true, "felt:h3_index": 644722202070526466, "STATEFP": 6, "PLACEFP": 33861, "PLACENS": 2408391, "GEOID": 633861, "NAME": "Hilmar-Irwin", "NAMELSAD": "Hilmar-Irwin CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10171003, "AWATER": 0, "INTPTLAT": 37.4045429, "INTPTLON": -120.8504261, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 89, "felt:has_geometry": true, "felt:h3_index": 644722202427532195, "STATEFP": 6, "PLACEFP": 42006, "PLACENS": 2410850, "GEOID": 642006, "NAME": "Livingston", "NAMELSAD": "Livingston city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9518104, "AWATER": 7397, "INTPTLAT": 37.3872812, "INTPTLON": -120.724943, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -120.717773, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1441, "felt:has_geometry": true, "felt:h3_index": 644722202595558940, "STATEFP": 6, "PLACEFP": 74144, "PLACENS": 2583152, "GEOID": 674144, "NAME": "Stevinson", "NAMELSAD": "Stevinson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2927390, "AWATER": 0, "INTPTLAT": 37.3246643, "INTPTLON": -120.8496641, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.326489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1510, "felt:has_geometry": true, "felt:h3_index": 644722203002484523, "STATEFP": 6, "PLACEFP": 81312, "PLACENS": 2583172, "GEOID": 681312, "NAME": "University of California-Merced", "NAMELSAD": "University of California-Merced CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1689900, "AWATER": 20798, "INTPTLAT": 37.3640832, "INTPTLON": -120.4188311, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -120.421143, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 210, "felt:has_geometry": true, "felt:h3_index": 644722203613340845, "STATEFP": 6, "PLACEFP": 46898, "PLACENS": 2411080, "GEOID": 646898, "NAMELSAD": "Merced city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60228129, "AWATER": 0, "INTPTLAT": 37.305712, "INTPTLON": -120.4779051, "NAME": "Merced,Bear Creek", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 37.300275 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1503, "felt:has_geometry": true, "felt:h3_index": 644722203870640130, "STATEFP": 6, "PLACEFP": 80882, "PLACENS": 2583170, "GEOID": 680882, "NAME": "Tuttle", "NAMELSAD": "Tuttle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4555442, "AWATER": 0, "INTPTLAT": 37.2965078, "INTPTLON": -120.3788671, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 37.291535 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 32, "felt:has_geometry": true, "felt:h3_index": 644737283856424154, "STATEFP": 6, "PLACEFP": 54652, "PLACENS": 2411347, "GEOID": 654652, "NAME": "Oxnard", "NAMELSAD": "Oxnard city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68707177, "AWATER": 32677585, "INTPTLAT": 34.1994364, "INTPTLON": -119.2075154, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 34.198173 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 425, "felt:has_geometry": true, "felt:h3_index": 644737290365243523, "STATEFP": 6, "PLACEFP": 69070, "PLACENS": 2411815, "GEOID": 669070, "NAME": "Santa Barbara", "NAMELSAD": "Santa Barbara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50517342, "AWATER": 58271494, "INTPTLAT": 34.4006009, "INTPTLON": -119.7129545, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1157, "felt:has_geometry": true, "felt:h3_index": 644737290623475730, "STATEFP": 6, "PLACEFP": 48844, "PLACENS": 2408861, "GEOID": 648844, "NAMELSAD": "Montecito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23768259, "AWATER": 20675380, "INTPTLAT": 34.4186422, "INTPTLON": -119.6331167, "NAME": "Montecito,Summerland", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -119.630127, 34.415973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1215, "felt:has_geometry": true, "felt:h3_index": 644737291269194562, "STATEFP": 6, "PLACEFP": 53182, "PLACENS": 2408966, "GEOID": 653182, "NAME": "Oak View", "NAMELSAD": "Oak View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8822791, "AWATER": 0, "INTPTLAT": 34.4030366, "INTPTLON": -119.2989497, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -119.300537, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1124, "felt:has_geometry": true, "felt:h3_index": 644737291619592856, "STATEFP": 6, "PLACEFP": 46702, "PLACENS": 2408814, "GEOID": 646702, "NAMELSAD": "Meiners Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6315365, "AWATER": 0, "INTPTLAT": 34.4553491, "INTPTLON": -119.2701657, "NAME": "Meiners Oaks,Ojai,Mira Monte", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 402, "felt:has_geometry": true, "felt:h3_index": 644737292909635118, "STATEFP": 6, "PLACEFP": 11446, "PLACENS": 2409990, "GEOID": 611446, "NAME": "Carpinteria", "NAMELSAD": "Carpinteria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6704026, "AWATER": 17313119, "INTPTLAT": 34.385234, "INTPTLON": -119.5007588, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -119.498291, 34.379713 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1492, "felt:has_geometry": true, "felt:h3_index": 644737293052450956, "STATEFP": 6, "PLACEFP": 79529, "PLACENS": 2409337, "GEOID": 679529, "NAME": "Toro Canyon", "NAMELSAD": "Toro Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24312959, "AWATER": 11403119, "INTPTLAT": 34.423004, "INTPTLON": -119.5607287, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 34.425036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 4, "felt:has_geometry": true, "felt:h3_index": 644737296019532323, "STATEFP": 6, "PLACEFP": 65042, "PLACENS": 2411779, "GEOID": 665042, "NAME": "San Buenaventura (Ventura)", "NAMELSAD": "San Buenaventura (Ventura) city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 56652007, "AWATER": 26982227, "INTPTLAT": 34.2677796, "INTPTLON": -119.2542062, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 34.261757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 661, "felt:has_geometry": true, "felt:h3_index": 644737296421422960, "STATEFP": 6, "PLACEFP": 12669, "PLACENS": 2408010, "GEOID": 612669, "NAMELSAD": "Channel Islands Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1094556, "AWATER": 580482, "INTPTLAT": 34.1689604, "INTPTLON": -119.2285418, "NAME": "Channel Islands Beach,Port Hueneme", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 34.170908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 424, "felt:has_geometry": true, "felt:h3_index": 644737350721453443, "STATEFP": 6, "PLACEFP": 42524, "PLACENS": 2410860, "GEOID": 642524, "NAME": "Lompoc", "NAMELSAD": "Lompoc city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30103860, "AWATER": 201559, "INTPTLAT": 34.6626889, "INTPTLON": -120.470837, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -120.465088, 34.660322 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 422, "felt:has_geometry": true, "felt:h3_index": 644737351347285339, "STATEFP": 6, "PLACEFP": 72576, "PLACENS": 2411925, "GEOID": 672576, "NAME": "Solvang", "NAMELSAD": "Solvang city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6281307, "AWATER": 3053, "INTPTLAT": 34.5937578, "INTPTLON": -120.1396803, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 34.587997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 393, "felt:has_geometry": true, "felt:h3_index": 644737351546963468, "STATEFP": 6, "PLACEFP": 8758, "PLACENS": 2409931, "GEOID": 608758, "NAME": "Buellton", "NAMELSAD": "Buellton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4097750, "AWATER": 1684, "INTPTLAT": 34.6154975, "INTPTLON": -120.1942368, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 34.615127 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1381, "felt:has_geometry": true, "felt:h3_index": 644737351631962845, "STATEFP": 6, "PLACEFP": 70182, "PLACENS": 2409284, "GEOID": 670182, "NAME": "Santa Ynez", "NAMELSAD": "Santa Ynez CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12510425, "AWATER": 17663, "INTPTLAT": 34.6174568, "INTPTLON": -120.0963551, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -120.091553, 34.615127 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1601, "felt:has_geometry": true, "felt:h3_index": 644737351806519010, "STATEFP": 6, "PLACEFP": 44168, "PLACENS": 2583064, "GEOID": 644168, "NAMELSAD": "Los Olivos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778819, "AWATER": 1039, "INTPTLAT": 34.6615061, "INTPTLON": -120.1174358, "NAME": "Los Olivos,Ballard", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 34.660322 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1076, "felt:has_geometry": true, "felt:h3_index": 644737352855757984, "STATEFP": 6, "PLACEFP": 43252, "PLACENS": 2408131, "GEOID": 643252, "NAME": "Los Alamos", "NAMELSAD": "Los Alamos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2341055, "AWATER": 0, "INTPTLAT": 34.7418033, "INTPTLON": -120.2745961, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -120.267334, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 426, "felt:has_geometry": true, "felt:h3_index": 644737360445248156, "STATEFP": 6, "PLACEFP": 69196, "PLACENS": 2411824, "GEOID": 669196, "NAME": "Santa Maria", "NAMELSAD": "Santa Maria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59078450, "AWATER": 1575636, "INTPTLAT": 34.9330764, "INTPTLON": -120.443559, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 34.930979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 643, "felt:has_geometry": true, "felt:h3_index": 644737360469462085, "STATEFP": 6, "PLACEFP": 11754, "PLACENS": 2582965, "GEOID": 611754, "NAME": "Casmalia", "NAMELSAD": "Casmalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 433975, "AWATER": 0, "INTPTLAT": 34.8377987, "INTPTLON": -120.5310443, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 34.831841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1233, "felt:has_geometry": true, "felt:h3_index": 644737360774473494, "STATEFP": 6, "PLACEFP": 54120, "PLACENS": 2408999, "GEOID": 654120, "NAME": "Orcutt", "NAMELSAD": "Orcutt CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28030109, "AWATER": 5696, "INTPTLAT": 34.8692353, "INTPTLON": -120.4216836, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -120.421143, 34.867905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 403, "felt:has_geometry": true, "felt:h3_index": 644737361373050436, "STATEFP": 6, "PLACEFP": 31414, "PLACENS": 2410672, "GEOID": 631414, "NAME": "Guadalupe", "NAMELSAD": "Guadalupe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3394103, "AWATER": 10948, "INTPTLAT": 34.9649289, "INTPTLON": -120.5731271, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -120.574951, 34.966999 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1522, "felt:has_geometry": true, "felt:h3_index": 644737364235949963, "STATEFP": 6, "PLACEFP": 82072, "PLACENS": 2409501, "GEOID": 682072, "NAMELSAD": "Vandenberg AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 57997811, "AWATER": 225536, "INTPTLAT": 34.7279857, "INTPTLON": -120.5064673, "NAME": "Vandenberg AFB,Vandenberg Village", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -120.509033, 34.723555 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1145, "felt:has_geometry": true, "felt:h3_index": 644737365030130845, "STATEFP": 6, "PLACEFP": 48186, "PLACENS": 2408845, "GEOID": 648186, "NAME": "Mission Hills", "NAMELSAD": "Mission Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3130522, "AWATER": 20596, "INTPTLAT": 34.6887795, "INTPTLON": -120.4397498, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 34.687428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 634, "felt:has_geometry": true, "felt:h3_index": 644737841012000498, "STATEFP": 6, "PLACEFP": 11324, "PLACENS": 2407966, "GEOID": 611324, "NAME": "Carmel Valley Village", "NAMELSAD": "Carmel Valley Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49166228, "AWATER": 507112, "INTPTLAT": 36.5006267, "INTPTLON": -121.7318199, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -121.728516, 36.500805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 732, "felt:has_geometry": true, "felt:h3_index": 644737842093117469, "STATEFP": 6, "PLACEFP": 18590, "PLACENS": 2408650, "GEOID": 618590, "NAMELSAD": "Del Monte Forest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20787965, "AWATER": 6766175, "INTPTLAT": 36.5838337, "INTPTLON": -121.9467143, "NAME": "Del Monte Forest,Carmel-by-the-Sea", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 36.580247 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 290, "felt:has_geometry": true, "felt:h3_index": 644737842345595032, "STATEFP": 6, "PLACEFP": 18688, "PLACENS": 2410315, "GEOID": 618688, "NAME": "Del Rey Oaks", "NAMELSAD": "Del Rey Oaks city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2730932, "AWATER": 5204, "INTPTLAT": 36.5896993, "INTPTLON": -121.8295272, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -121.827393, 36.589068 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 88, "felt:has_geometry": true, "felt:h3_index": 644737842471774025, "STATEFP": 6, "PLACEFP": 54848, "PLACENS": 2411350, "GEOID": 654848, "NAMELSAD": "Pacific Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7422060, "AWATER": 2925786, "INTPTLAT": 36.6225766, "INTPTLON": -121.92643, "NAME": "Pacific Grove,Monterey", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1472, "felt:has_geometry": true, "felt:h3_index": 644745098859169157, "STATEFP": 6, "PLACEFP": 78050, "PLACENS": 2410062, "GEOID": 678050, "NAME": "Tecopa", "NAMELSAD": "Tecopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48145645, "AWATER": 177237, "INTPTLAT": 35.8205806, "INTPTLON": -116.2050514, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -116.202393, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1400, "felt:has_geometry": true, "felt:h3_index": 644745112573895528, "STATEFP": 6, "PLACEFP": 71680, "PLACENS": 2408733, "GEOID": 671680, "NAME": "Shoshone", "NAMELSAD": "Shoshone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 74361294, "AWATER": 618, "INTPTLAT": 35.9672297, "INTPTLON": -116.3087698, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -116.301270, 35.969115 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 662, "felt:has_geometry": true, "felt:h3_index": 644745127400902894, "STATEFP": 6, "PLACEFP": 12730, "PLACENS": 2804104, "GEOID": 612730, "NAME": "Charleston View", "NAMELSAD": "Charleston View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1949194, "AWATER": 0, "INTPTLAT": 35.9646291, "INTPTLON": -115.8972354, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -115.894775, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 531, "felt:has_geometry": true, "felt:h3_index": 644745138290378516, "STATEFP": 6, "PLACEFP": 3512, "PLACENS": 2628708, "GEOID": 603512, "NAME": "Baker", "NAMELSAD": "Baker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6961528, "AWATER": 0, "INTPTLAT": 35.2769184, "INTPTLON": -116.071735, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -116.070557, 35.272532 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 974, "felt:has_geometry": true, "felt:h3_index": 644745180210314029, "STATEFP": 6, "PLACEFP": 37918, "PLACENS": 2408466, "GEOID": 637918, "NAME": "Keeler", "NAMELSAD": "Keeler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987188, "AWATER": 0, "INTPTLAT": 36.4867184, "INTPTLON": -117.87333, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -117.872314, 36.483141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 868, "felt:has_geometry": true, "felt:h3_index": 644745184571321434, "STATEFP": 6, "PLACEFP": 28021, "PLACENS": 2408270, "GEOID": 628021, "NAME": "Furnace Creek", "NAMELSAD": "Furnace Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 81487361, "AWATER": 0, "INTPTLAT": 36.4276693, "INTPTLON": -116.8746901, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 36.421282 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 934, "felt:has_geometry": true, "felt:h3_index": 644745200841135824, "STATEFP": 6, "PLACEFP": 34405, "PLACENS": 2583036, "GEOID": 634405, "NAME": "Homewood Canyon", "NAMELSAD": "Homewood Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26546375, "AWATER": 0, "INTPTLAT": 35.8900404, "INTPTLON": -117.3864139, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1388, "felt:has_geometry": true, "felt:h3_index": 644745201207139566, "STATEFP": 6, "PLACEFP": 70728, "PLACENS": 2409296, "GEOID": 670728, "NAME": "Searles Valley", "NAMELSAD": "Searles Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27186893, "AWATER": 0, "INTPTLAT": 35.7700481, "INTPTLON": -117.3966763, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 35.764343 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1520, "felt:has_geometry": true, "felt:h3_index": 644745203285080905, "STATEFP": 6, "PLACEFP": 81925, "PLACENS": 2408400, "GEOID": 681925, "NAME": "Valley Wells", "NAMELSAD": "Valley Wells CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27631920, "AWATER": 177128, "INTPTLAT": 35.8807292, "INTPTLON": -117.3356757, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 35.880149 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1499, "felt:has_geometry": true, "felt:h3_index": 644745206988314867, "STATEFP": 6, "PLACEFP": 80515, "PLACENS": 2583168, "GEOID": 680515, "NAME": "Trona", "NAMELSAD": "Trona CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24076929, "AWATER": 2011, "INTPTLAT": 35.8158211, "INTPTLON": -117.3473478, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1222, "felt:has_geometry": true, "felt:h3_index": 644745210226968732, "STATEFP": 6, "PLACEFP": 53490, "PLACENS": 2408982, "GEOID": 653490, "NAME": "Olancha", "NAMELSAD": "Olancha CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20311991, "AWATER": 79710, "INTPTLAT": 36.2697874, "INTPTLON": -118.0012577, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 36.270850 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 724, "felt:has_geometry": true, "felt:h3_index": 644745211606247814, "STATEFP": 6, "PLACEFP": 18030, "PLACENS": 2408642, "GEOID": 618030, "NAME": "Darwin", "NAMELSAD": "Darwin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3484705, "AWATER": 0, "INTPTLAT": 36.2688034, "INTPTLON": -117.5890042, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -117.586670, 36.270850 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1524, "felt:has_geometry": true, "felt:h3_index": 644745442198637355, "STATEFP": 6, "PLACEFP": 82334, "PLACENS": 2583175, "GEOID": 682334, "NAME": "Verdi", "NAMELSAD": "Verdi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10808119, "AWATER": 34863, "INTPTLAT": 39.5269686, "INTPTLON": -120.0233943, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -120.025635, 39.520992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 840, "felt:has_geometry": true, "felt:h3_index": 644745446426234952, "STATEFP": 6, "PLACEFP": 24526, "PLACENS": 2628731, "GEOID": 624526, "NAME": "Floriston", "NAMELSAD": "Floriston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2459249, "AWATER": 0, "INTPTLAT": 39.3929299, "INTPTLON": -120.0151127, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.393755 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 669, "felt:has_geometry": true, "felt:h3_index": 644745449965964333, "STATEFP": 6, "PLACEFP": 13077, "PLACENS": 2408024, "GEOID": 613077, "NAME": "Chilcoot-Vinton", "NAMELSAD": "Chilcoot-Vinton CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34207854, "AWATER": 0, "INTPTLAT": 39.806744, "INTPTLON": -120.1388608, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 545, "felt:has_geometry": true, "felt:h3_index": 644745450739046257, "STATEFP": 6, "PLACEFP": 4772, "PLACENS": 2407819, "GEOID": 604772, "NAME": "Beckwourth", "NAMELSAD": "Beckwourth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30257790, "AWATER": 13194, "INTPTLAT": 39.8439312, "INTPTLON": -120.4140086, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -120.410156, 39.842286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1401, "felt:has_geometry": true, "felt:h3_index": 644745453979918627, "STATEFP": 6, "PLACEFP": 71774, "PLACENS": 2583138, "GEOID": 671774, "NAME": "Sierra Brooks", "NAMELSAD": "Sierra Brooks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3549115, "AWATER": 0, "INTPTLAT": 39.6425925, "INTPTLON": -120.2153873, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -120.212402, 39.639538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 427, "felt:has_geometry": true, "felt:h3_index": 644745455174562523, "STATEFP": 6, "PLACEFP": 44364, "PLACENS": 2410891, "GEOID": 644364, "NAME": "Loyalton", "NAMELSAD": "Loyalton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 920711, "AWATER": 0, "INTPTLAT": 39.6768545, "INTPTLON": -120.2448111, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -120.245361, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1404, "felt:has_geometry": true, "felt:h3_index": 644745455414621025, "STATEFP": 6, "PLACEFP": 71848, "PLACENS": 2583141, "GEOID": 671848, "NAME": "Sierraville", "NAMELSAD": "Sierraville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13002077, "AWATER": 2127, "INTPTLAT": 39.5822318, "INTPTLON": -120.3620651, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -120.355225, 39.580290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1384, "felt:has_geometry": true, "felt:h3_index": 644745455570719085, "STATEFP": 6, "PLACEFP": 70336, "PLACENS": 2583131, "GEOID": 670336, "NAME": "Sattley", "NAMELSAD": "Sattley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5302767, "AWATER": 4699, "INTPTLAT": 39.6299451, "INTPTLON": -120.4372753, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1455, "felt:has_geometry": true, "felt:h3_index": 644745476582229400, "STATEFP": 6, "PLACEFP": 76015, "PLACENS": 2410030, "GEOID": 676015, "NAME": "Sunnyside-Tahoe City", "NAMELSAD": "Sunnyside-Tahoe City CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9016274, "AWATER": 858519, "INTPTLAT": 39.1483181, "INTPTLON": -120.1709376, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 39.147103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 752, "felt:has_geometry": true, "felt:h3_index": 644745476801963758, "STATEFP": 6, "PLACEFP": 19455, "PLACENS": 2408680, "GEOID": 619455, "NAME": "Dollar Point", "NAMELSAD": "Dollar Point CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4234923, "AWATER": 544222, "INTPTLAT": 39.1896257, "INTPTLON": -120.1094264, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -120.102539, 39.189691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1464, "felt:has_geometry": true, "felt:h3_index": 644745476924158866, "STATEFP": 6, "PLACEFP": 77728, "PLACENS": 2628793, "GEOID": 677728, "NAME": "Tahoma", "NAMELSAD": "Tahoma CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6717203, "AWATER": 529924, "INTPTLAT": 39.0582449, "INTPTLON": -120.1420674, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 39.053318 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 988, "felt:has_geometry": true, "felt:h3_index": 644745478633104960, "STATEFP": 6, "PLACEFP": 38548, "PLACENS": 2408481, "GEOID": 638548, "NAMELSAD": "Kings Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7403909, "AWATER": 301151, "INTPTLAT": 39.2475277, "INTPTLON": -120.0199033, "NAME": "Kings Beach,Tahoe Vista", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.249271 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 379, "felt:has_geometry": true, "felt:h3_index": 644745479806012125, "STATEFP": 6, "PLACEFP": 73108, "PLACENS": 2411938, "GEOID": 673108, "NAME": "South Lake Tahoe", "NAMELSAD": "South Lake Tahoe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26075509, "AWATER": 742938, "INTPTLAT": 38.9282184, "INTPTLON": -119.9809998, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -119.981689, 38.925229 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1133, "felt:has_geometry": true, "felt:h3_index": 644745480130186162, "STATEFP": 6, "PLACEFP": 47206, "PLACENS": 2804404, "GEOID": 647206, "NAME": "Meyers", "NAMELSAD": "Meyers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6473356, "AWATER": 36532, "INTPTLAT": 38.8347873, "INTPTLON": -120.0185604, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 38.831150 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1417, "felt:has_geometry": true, "felt:h3_index": 644745484573366443, "STATEFP": 6, "PLACEFP": 72492, "PLACENS": 2628790, "GEOID": 672492, "NAME": "Soda Springs", "NAMELSAD": "Soda Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 872163, "AWATER": 0, "INTPTLAT": 39.3247879, "INTPTLON": -120.3786654, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 39.325799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 206, "felt:has_geometry": true, "felt:h3_index": 644745486641487048, "STATEFP": 6, "PLACEFP": 80588, "PLACENS": 2413403, "GEOID": 680588, "NAME": "Truckee", "NAMELSAD": "Truckee town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 83740315, "AWATER": 3448642, "INTPTLAT": 39.3505478, "INTPTLON": -120.1939432, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 39.351290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 989, "felt:has_geometry": true, "felt:h3_index": 644745489669531938, "STATEFP": 6, "PLACEFP": 38604, "PLACENS": 2628744, "GEOID": 638604, "NAME": "Kingvale", "NAMELSAD": "Kingvale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2490334, "AWATER": 22032, "INTPTLAT": 39.3209972, "INTPTLON": -120.4383095, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -120.432129, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 637, "felt:has_geometry": true, "felt:h3_index": 644745491153168563, "STATEFP": 6, "PLACEFP": 11418, "PLACENS": 2628716, "GEOID": 611418, "NAMELSAD": "Carnelian Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3364143, "AWATER": 516530, "INTPTLAT": 39.2351651, "INTPTLON": -120.0782068, "NAME": "Carnelian Bay,Cedar Flat", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 552, "felt:has_geometry": true, "felt:h3_index": 644745647903540376, "STATEFP": 6, "PLACEFP": 5346, "PLACENS": 2582943, "GEOID": 605346, "NAME": "Benton", "NAMELSAD": "Benton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73732744, "AWATER": 52423, "INTPTLAT": 37.8224379, "INTPTLON": -118.4876873, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -118.487549, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1245, "felt:has_geometry": true, "felt:h3_index": 644745681741189878, "STATEFP": 6, "PLACEFP": 55528, "PLACENS": 2583105, "GEOID": 655528, "NAME": "Paradise", "NAMELSAD": "Paradise CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11271636, "AWATER": 0, "INTPTLAT": 37.4828526, "INTPTLON": -118.602213, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -118.597412, 37.483577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1460, "felt:has_geometry": true, "felt:h3_index": 644745681934942805, "STATEFP": 6, "PLACEFP": 77430, "PLACENS": 2583158, "GEOID": 677430, "NAME": "Swall Meadows", "NAMELSAD": "Swall Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11555635, "AWATER": 0, "INTPTLAT": 37.5060596, "INTPTLON": -118.6426564, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -118.641357, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1094, "felt:has_geometry": true, "felt:h3_index": 644745682823441733, "STATEFP": 6, "PLACEFP": 44830, "PLACENS": 2583068, "GEOID": 644830, "NAME": "McGee Creek", "NAMELSAD": "McGee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10384180, "AWATER": 0, "INTPTLAT": 37.5726652, "INTPTLON": -118.7909998, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -118.784180, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 717, "felt:has_geometry": true, "felt:h3_index": 644745685214521227, "STATEFP": 6, "PLACEFP": 17372, "PLACENS": 2582987, "GEOID": 617372, "NAMELSAD": "Crowley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7475668, "AWATER": 6392, "INTPTLAT": 37.5687424, "INTPTLON": -118.7464214, "NAME": "Crowley Lake,Sunny Slopes,Aspen Springs", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -118.740234, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1350, "felt:has_geometry": true, "felt:h3_index": 644745688094170528, "STATEFP": 6, "PLACEFP": 63148, "PLACENS": 2409218, "GEOID": 663148, "NAMELSAD": "Round Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36227887, "AWATER": 30931, "INTPTLAT": 37.4141625, "INTPTLON": -118.5722734, "NAME": "Round Valley,Mesa", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -118.564453, 37.413800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 749, "felt:has_geometry": true, "felt:h3_index": 644745688251990388, "STATEFP": 6, "PLACEFP": 19406, "PLACENS": 2408675, "GEOID": 619406, "NAME": "Dixon Lane-MeadowCreek", "NAMELSAD": "Dixon Lane-MeadowCreek CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8701384, "AWATER": 0, "INTPTLAT": 37.3863883, "INTPTLON": -118.4152731, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1551, "felt:has_geometry": true, "felt:h3_index": 644745688699757342, "STATEFP": 6, "PLACEFP": 84120, "PLACENS": 2409545, "GEOID": 684120, "NAME": "West Bishop", "NAMELSAD": "West Bishop CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22684470, "AWATER": 2788, "INTPTLAT": 37.3627675, "INTPTLON": -118.4750461, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 972, "felt:has_geometry": true, "felt:h3_index": 644745690741369476, "STATEFP": 6, "PLACEFP": 37624, "PLACENS": 2583044, "GEOID": 637624, "NAME": "June Lake", "NAMELSAD": "June Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26694795, "AWATER": 2048342, "INTPTLAT": 37.7617827, "INTPTLON": -119.1147288, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -119.113770, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1042, "felt:has_geometry": true, "felt:h3_index": 644745693464166596, "STATEFP": 6, "PLACEFP": 40998, "PLACENS": 2583054, "GEOID": 640998, "NAME": "Lee Vining", "NAMELSAD": "Lee Vining CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13483686, "AWATER": 6196, "INTPTLAT": 37.9548986, "INTPTLON": -119.1220135, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -119.124756, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 315, "felt:has_geometry": true, "felt:h3_index": 644745694598468490, "STATEFP": 6, "PLACEFP": 45358, "PLACENS": 2412936, "GEOID": 645358, "NAME": "Mammoth Lakes", "NAMELSAD": "Mammoth Lakes town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 64402450, "AWATER": 1139030, "INTPTLAT": 37.6244355, "INTPTLON": -118.9884322, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -118.981934, 37.622934 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 660, "felt:has_geometry": true, "felt:h3_index": 644745704178587667, "STATEFP": 6, "PLACEFP": 12594, "PLACENS": 2582973, "GEOID": 612594, "NAME": "Chalfant", "NAMELSAD": "Chalfant CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 72616470, "AWATER": 73304, "INTPTLAT": 37.4921149, "INTPTLON": -118.3904081, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 990, "felt:has_geometry": true, "felt:h3_index": 644745724699489955, "STATEFP": 6, "PLACEFP": 38646, "PLACENS": 2408489, "GEOID": 638646, "NAME": "Kirkwood", "NAMELSAD": "Kirkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11290203, "AWATER": 2525431, "INTPTLAT": 38.689265, "INTPTLON": -120.0549795, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -120.047607, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 542, "felt:has_geometry": true, "felt:h3_index": 644745729533363345, "STATEFP": 6, "PLACEFP": 4716, "PLACENS": 2407814, "GEOID": 604716, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13352822, "AWATER": 56384, "INTPTLAT": 38.4723209, "INTPTLON": -120.0518467, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -120.047607, 38.470794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 690, "felt:has_geometry": true, "felt:h3_index": 644745734195958914, "STATEFP": 6, "PLACEFP": 14484, "PLACENS": 2582978, "GEOID": 614484, "NAME": "Coleville", "NAMELSAD": "Coleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49897132, "AWATER": 0, "INTPTLAT": 38.5805614, "INTPTLON": -119.502863, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -119.498291, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1535, "felt:has_geometry": true, "felt:h3_index": 644745734758549548, "STATEFP": 6, "PLACEFP": 83262, "PLACENS": 2583180, "GEOID": 683262, "NAME": "Walker", "NAMELSAD": "Walker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31473072, "AWATER": 0, "INTPTLAT": 38.518502, "INTPTLON": -119.4730506, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -119.465332, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 593, "felt:has_geometry": true, "felt:h3_index": 644745738094579731, "STATEFP": 6, "PLACEFP": 8240, "PLACENS": 2582950, "GEOID": 608240, "NAME": "Bridgeport", "NAMELSAD": "Bridgeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56306218, "AWATER": 21149, "INTPTLAT": 38.2552098, "INTPTLON": -119.2104243, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -119.212646, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1130, "felt:has_geometry": true, "felt:h3_index": 644745742716440576, "STATEFP": 6, "PLACEFP": 47086, "PLACENS": 2408820, "GEOID": 647086, "NAME": "Mesa Vista", "NAMELSAD": "Mesa Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12627546, "AWATER": 0, "INTPTLAT": 38.8102875, "INTPTLON": -119.8032665, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -119.805908, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 502, "felt:has_geometry": true, "felt:h3_index": 644745743227496204, "STATEFP": 6, "PLACEFP": 1228, "PLACENS": 2407729, "GEOID": 601228, "NAME": "Alpine Village", "NAMELSAD": "Alpine Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10569744, "AWATER": 0, "INTPTLAT": 38.7793457, "INTPTLON": -119.807785, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -119.805908, 38.779781 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1112, "felt:has_geometry": true, "felt:h3_index": 644745747127928020, "STATEFP": 6, "PLACEFP": 45988, "PLACENS": 2408184, "GEOID": 645988, "NAME": "Markleeville", "NAMELSAD": "Markleeville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16914713, "AWATER": 0, "INTPTLAT": 38.6840021, "INTPTLON": -119.8227384, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -119.816895, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1491, "felt:has_geometry": true, "felt:h3_index": 644745748747336713, "STATEFP": 6, "PLACEFP": 79030, "PLACENS": 2583165, "GEOID": 679030, "NAME": "Topaz", "NAMELSAD": "Topaz CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31537286, "AWATER": 3359715, "INTPTLAT": 38.6380591, "INTPTLON": -119.5018074, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -119.498291, 38.634036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1403, "felt:has_geometry": true, "felt:h3_index": 644745751414771748, "STATEFP": 6, "PLACEFP": 71834, "PLACENS": 2583140, "GEOID": 671834, "NAMELSAD": "Sierra Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6661587, "AWATER": 9750, "INTPTLAT": 38.0756273, "INTPTLON": -120.1593364, "NAME": "Sierra Village,Mi-Wuk Village", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -120.157471, 38.074041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1276, "felt:has_geometry": true, "felt:h3_index": 644745756209086464, "STATEFP": 6, "PLACEFP": 57244, "PLACENS": 2583115, "GEOID": 657244, "NAME": "Pine Mountain Lake", "NAMELSAD": "Pine Mountain Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49108026, "AWATER": 726370, "INTPTLAT": 37.8595397, "INTPTLON": -120.1816624, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -120.179443, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 599, "felt:has_geometry": true, "felt:h3_index": 644745756408964336, "STATEFP": 6, "PLACEFP": 8716, "PLACENS": 2582952, "GEOID": 608716, "NAME": "Buck Meadows", "NAMELSAD": "Buck Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1386273, "AWATER": 0, "INTPTLAT": 37.8070463, "INTPTLON": -120.075237, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -120.069580, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 753, "felt:has_geometry": true, "felt:h3_index": 644745759144041310, "STATEFP": 6, "PLACEFP": 19570, "PLACENS": 2408683, "GEOID": 619570, "NAME": "Dorrington", "NAMELSAD": "Dorrington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10600543, "AWATER": 12551, "INTPTLAT": 38.304479, "INTPTLON": -120.2663205, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -120.267334, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 520, "felt:has_geometry": true, "felt:h3_index": 644745759464527409, "STATEFP": 6, "PLACEFP": 2770, "PLACENS": 2407763, "GEOID": 602770, "NAMELSAD": "Arnold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23482385, "AWATER": 168745, "INTPTLAT": 38.2486418, "INTPTLON": -120.3509888, "NAME": "Arnold,Avery", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -120.344238, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1307, "felt:has_geometry": true, "felt:h3_index": 644745760524114544, "STATEFP": 6, "PLACEFP": 59220, "PLACENS": 2409122, "GEOID": 659220, "NAME": "Rail Road Flat", "NAMELSAD": "Rail Road Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23510266, "AWATER": 371269, "INTPTLAT": 38.314374, "INTPTLON": -120.5074837, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -120.509033, 38.315801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 655, "felt:has_geometry": true, "felt:h3_index": 644745763100310698, "STATEFP": 6, "PLACEFP": 12300, "PLACENS": 2582970, "GEOID": 612300, "NAME": "Cedar Ridge", "NAMELSAD": "Cedar Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20223241, "AWATER": 22466, "INTPTLAT": 38.0657363, "INTPTLON": -120.2738689, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -120.267334, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1268, "felt:has_geometry": true, "felt:h3_index": 644745763638921008, "STATEFP": 6, "PLACEFP": 56870, "PLACENS": 2633170, "GEOID": 656870, "NAMELSAD": "Phoenix Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28679791, "AWATER": 334098, "INTPTLAT": 38.0113468, "INTPTLON": -120.3090003, "NAME": "Phoenix Lake,Mono Vista", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -120.311279, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1506, "felt:has_geometry": true, "felt:h3_index": 644745763846636237, "STATEFP": 6, "PLACEFP": 80966, "PLACENS": 2409370, "GEOID": 680966, "NAME": "Twain Harte", "NAMELSAD": "Twain Harte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9579417, "AWATER": 49580, "INTPTLAT": 38.0369433, "INTPTLON": -120.2339184, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1180, "felt:has_geometry": true, "felt:h3_index": 644745764178711459, "STATEFP": 6, "PLACEFP": 50034, "PLACENS": 2408892, "GEOID": 650034, "NAME": "Murphys", "NAMELSAD": "Murphys CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10955540, "AWATER": 6287, "INTPTLAT": 38.1360927, "INTPTLON": -120.4439416, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1172, "felt:has_geometry": true, "felt:h3_index": 644745764264776198, "STATEFP": 6, "PLACEFP": 49628, "PLACENS": 2408882, "GEOID": 649628, "NAME": "Mountain Ranch", "NAMELSAD": "Mountain Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10127780, "AWATER": 0, "INTPTLAT": 38.2117212, "INTPTLON": -120.5311151, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.212288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 847, "felt:has_geometry": true, "felt:h3_index": 644745764405361038, "STATEFP": 6, "PLACEFP": 24897, "PLACENS": 2408228, "GEOID": 624897, "NAME": "Forest Meadows", "NAMELSAD": "Forest Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9749680, "AWATER": 0, "INTPTLAT": 38.1717302, "INTPTLON": -120.3989746, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -120.399170, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1514, "felt:has_geometry": true, "felt:h3_index": 644745764755808921, "STATEFP": 6, "PLACEFP": 81652, "PLACENS": 2409394, "GEOID": 681652, "NAME": "Vallecito", "NAMELSAD": "Vallecito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5406010, "AWATER": 0, "INTPTLAT": 38.0836081, "INTPTLON": -120.4652043, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -120.465088, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1449, "felt:has_geometry": true, "felt:h3_index": 644745765491435668, "STATEFP": 6, "PLACEFP": 75322, "PLACENS": 2628792, "GEOID": 675322, "NAME": "Strawberry", "NAMELSAD": "Strawberry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1350627, "AWATER": 21432, "INTPTLAT": 38.198384, "INTPTLON": -120.0103432, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -120.003662, 38.195022 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1074, "felt:has_geometry": true, "felt:h3_index": 644745765795357227, "STATEFP": 6, "PLACEFP": 42622, "PLACENS": 2583061, "GEOID": 642622, "NAME": "Long Barn", "NAMELSAD": "Long Barn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7478480, "AWATER": 3839, "INTPTLAT": 38.0932629, "INTPTLON": -120.1346861, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 38.091337 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 689, "felt:has_geometry": true, "felt:h3_index": 644745766042224649, "STATEFP": 6, "PLACEFP": 14454, "PLACENS": 2628721, "GEOID": 614454, "NAME": "Cold Springs", "NAMELSAD": "Cold Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4492222, "AWATER": 0, "INTPTLAT": 38.1613351, "INTPTLON": -120.053527, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -120.047607, 38.160476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1507, "felt:has_geometry": true, "felt:h3_index": 644745771458388790, "STATEFP": 6, "PLACEFP": 81048, "PLACENS": 2804105, "GEOID": 681048, "NAME": "Twin Lakes", "NAMELSAD": "Twin Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10798571, "AWATER": 2717491, "INTPTLAT": 38.1628855, "INTPTLON": -119.341063, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 38.160476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1531, "felt:has_geometry": true, "felt:h3_index": 644745773941054618, "STATEFP": 6, "PLACEFP": 82929, "PLACENS": 2804106, "GEOID": 682929, "NAME": "Virginia Lakes", "NAMELSAD": "Virginia Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3741522, "AWATER": 216444, "INTPTLAT": 38.0434728, "INTPTLON": -119.2598767, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 38.039439 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1152, "felt:has_geometry": true, "felt:h3_index": 644745774095242096, "STATEFP": 6, "PLACEFP": 48602, "PLACENS": 2583083, "GEOID": 648602, "NAME": "Mono City", "NAMELSAD": "Mono City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20298298, "AWATER": 0, "INTPTLAT": 38.0321233, "INTPTLON": -119.1473993, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -119.146729, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 925, "felt:has_geometry": true, "felt:h3_index": 644747021604116150, "STATEFP": 6, "PLACEFP": 33574, "PLACENS": 2408383, "GEOID": 633574, "NAMELSAD": "Highgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8332742, "AWATER": 0, "INTPTLAT": 34.0105771, "INTPTLON": -117.3098172, "NAME": "Highgrove,Grand Terrace", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -117.312012, 34.007135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 329, "felt:has_geometry": true, "felt:h3_index": 644747021878350657, "STATEFP": 6, "PLACEFP": 42370, "PLACENS": 2410857, "GEOID": 642370, "NAME": "Loma Linda", "NAMELSAD": "Loma Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22528575, "AWATER": 2371, "INTPTLAT": 34.0429322, "INTPTLON": -117.2488722, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -117.246094, 34.043557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1108, "felt:has_geometry": true, "felt:h3_index": 644747022065336939, "STATEFP": 6, "PLACEFP": 45680, "PLACENS": 2408176, "GEOID": 645680, "NAME": "March ARB", "NAMELSAD": "March ARB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30946983, "AWATER": 36554, "INTPTLAT": 33.8891842, "INTPTLON": -117.2777289, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 100, "felt:has_geometry": true, "felt:h3_index": 644747022274563185, "STATEFP": 6, "PLACEFP": 49270, "PLACENS": 2411159, "GEOID": 649270, "NAME": "Moreno Valley", "NAMELSAD": "Moreno Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 132891703, "AWATER": 546511, "INTPTLAT": 33.9232527, "INTPTLON": -117.2056845, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -117.202148, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 571, "felt:has_geometry": true, "felt:h3_index": 644747022568655702, "STATEFP": 6, "PLACEFP": 7064, "PLACENS": 2407863, "GEOID": 607064, "NAME": "Bloomington", "NAMELSAD": "Bloomington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15723229, "AWATER": 0, "INTPTLAT": 34.0600706, "INTPTLON": -117.4012379, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -117.399902, 34.061761 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 370, "felt:has_geometry": true, "felt:h3_index": 644747022729288045, "STATEFP": 6, "PLACEFP": 24680, "PLACENS": 2410517, "GEOID": 624680, "NAME": "Fontana", "NAMELSAD": "Fontana city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 112089027, "AWATER": 0, "INTPTLAT": 34.109686, "INTPTLON": -117.462888, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -117.454834, 34.107256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 58, "felt:has_geometry": true, "felt:h3_index": 644747022904623702, "STATEFP": 6, "PLACEFP": 14890, "PLACENS": 2410200, "GEOID": 614890, "NAME": "Colton", "NAMELSAD": "Colton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40478596, "AWATER": 1325520, "INTPTLAT": 34.0545252, "INTPTLON": -117.3250286, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -117.322998, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 371, "felt:has_geometry": true, "felt:h3_index": 644747022998624653, "STATEFP": 6, "PLACEFP": 60466, "PLACENS": 2410931, "GEOID": 660466, "NAME": "Rialto", "NAMELSAD": "Rialto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62397099, "AWATER": 0, "INTPTLAT": 34.1174193, "INTPTLON": -117.3892148, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 249, "felt:has_geometry": true, "felt:h3_index": 644747023086295720, "STATEFP": 6, "PLACEFP": 37692, "PLACENS": 2702867, "GEOID": 637692, "NAME": "Jurupa Valley", "NAMELSAD": "Jurupa Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 111214683, "AWATER": 1910887, "INTPTLAT": 34.0025907, "INTPTLON": -117.4676122, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -117.465820, 33.998027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1126, "felt:has_geometry": true, "felt:h3_index": 644747023634293062, "STATEFP": 6, "PLACEFP": 46884, "PLACENS": 2408816, "GEOID": 646884, "NAME": "Mentone", "NAMELSAD": "Mentone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15830890, "AWATER": 30802, "INTPTLAT": 34.0606386, "INTPTLON": -117.1150201, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 34.061761 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 365, "felt:has_geometry": true, "felt:h3_index": 644747024293973236, "STATEFP": 6, "PLACEFP": 59962, "PLACENS": 2411532, "GEOID": 659962, "NAME": "Redlands", "NAMELSAD": "Redlands city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 93292256, "AWATER": 673021, "INTPTLAT": 34.0535056, "INTPTLON": -117.1704758, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -117.169189, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 360, "felt:has_geometry": true, "felt:h3_index": 644747024471987290, "STATEFP": 6, "PLACEFP": 87042, "PLACENS": 2412326, "GEOID": 687042, "NAMELSAD": "Yucaipa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 73188295, "AWATER": 0, "INTPTLAT": 34.0335819, "INTPTLON": -117.0428976, "NAME": "Yucaipa,Calimesa", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -117.037354, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 277, "felt:has_geometry": true, "felt:h3_index": 644747025029171510, "STATEFP": 6, "PLACEFP": 33588, "PLACENS": 2410759, "GEOID": 633588, "NAME": "Highland", "NAMELSAD": "Highland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48099958, "AWATER": 244008, "INTPTLAT": 34.1134731, "INTPTLON": -117.1657294, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 34.107256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 270, "felt:has_geometry": true, "felt:h3_index": 644747025391164203, "STATEFP": 6, "PLACEFP": 65000, "PLACENS": 2411777, "GEOID": 665000, "NAME": "San Bernardino", "NAMELSAD": "San Bernardino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 160912067, "AWATER": 853495, "INTPTLAT": 34.1411402, "INTPTLON": -117.2946349, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -117.290039, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 282, "felt:has_geometry": true, "felt:h3_index": 644747025862970516, "STATEFP": 6, "PLACEFP": 56700, "PLACENS": 2411403, "GEOID": 656700, "NAME": "Perris", "NAMELSAD": "Perris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 81748619, "AWATER": 279334, "INTPTLAT": 33.7898494, "INTPTLON": -117.2221715, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -117.224121, 33.788279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1122, "felt:has_geometry": true, "felt:h3_index": 644747025959525805, "STATEFP": 6, "PLACEFP": 46646, "PLACENS": 2583077, "GEOID": 646646, "NAME": "Mead Valley", "NAMELSAD": "Mead Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49432252, "AWATER": 0, "INTPTLAT": 33.8333108, "INTPTLON": -117.2851999, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1602, "felt:has_geometry": true, "felt:h3_index": 644747026134867075, "STATEFP": 6, "PLACEFP": 52624, "PLACENS": 2408960, "GEOID": 652624, "NAME": "Nuevo", "NAMELSAD": "Nuevo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17531432, "AWATER": 0, "INTPTLAT": 33.8011366, "INTPTLON": -117.1413818, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 883, "felt:has_geometry": true, "felt:h3_index": 644747026351438856, "STATEFP": 6, "PLACEFP": 30410, "PLACENS": 2583026, "GEOID": 630410, "NAMELSAD": "Good Hope CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29073661, "AWATER": 0, "INTPTLAT": 33.7706269, "INTPTLON": -117.2771987, "NAME": "Good Hope,Meadowbrook", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 33.770015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1580, "felt:has_geometry": true, "felt:h3_index": 644747027188063325, "STATEFP": 6, "PLACEFP": 86244, "PLACENS": 2409622, "GEOID": 686244, "NAME": "Woodcrest", "NAMELSAD": "Woodcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29539146, "AWATER": 0, "INTPTLAT": 33.8789457, "INTPTLON": -117.368671, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -117.366943, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 99, "felt:has_geometry": true, "felt:h3_index": 644747027230679468, "STATEFP": 6, "PLACEFP": 62000, "PLACENS": 2410965, "GEOID": 662000, "NAME": "Riverside", "NAMELSAD": "Riverside city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 210174364, "AWATER": 797658, "INTPTLAT": 33.9381433, "INTPTLON": -117.3931676, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 931, "felt:has_geometry": true, "felt:h3_index": 644747027516415008, "STATEFP": 6, "PLACEFP": 34302, "PLACENS": 2408398, "GEOID": 634302, "NAMELSAD": "Home Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3964557, "AWATER": 0, "INTPTLAT": 33.878328, "INTPTLON": -117.5115353, "NAME": "Home Gardens,El Sobrante", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -117.509766, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1016, "felt:has_geometry": true, "felt:h3_index": 644747027705934632, "STATEFP": 6, "PLACEFP": 39645, "PLACENS": 2583051, "GEOID": 639645, "NAME": "Lake Mathews", "NAMELSAD": "Lake Mathews CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41251878, "AWATER": 0, "INTPTLAT": 33.8249659, "INTPTLON": -117.3683428, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -117.366943, 33.824794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1026, "felt:has_geometry": true, "felt:h3_index": 644747028529011912, "STATEFP": 6, "PLACEFP": 39836, "PLACENS": 2408564, "GEOID": 639836, "NAME": "Lakeview", "NAMELSAD": "Lakeview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8442803, "AWATER": 0, "INTPTLAT": 33.8284655, "INTPTLON": -117.1233341, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -117.125244, 33.824794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1585, "felt:has_geometry": true, "felt:h3_index": 644747030219340659, "STATEFP": 6, "PLACEFP": 86594, "PLACENS": 2409630, "GEOID": 686594, "NAME": "Wrightwood", "NAMELSAD": "Wrightwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15414197, "AWATER": 8669, "INTPTLAT": 34.3459882, "INTPTLON": -117.6275788, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -117.619629, 34.343436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1210, "felt:has_geometry": true, "felt:h3_index": 644747032231221429, "STATEFP": 6, "PLACEFP": 52760, "PLACENS": 2583100, "GEOID": 652760, "NAME": "Oak Hills", "NAMELSAD": "Oak Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63496967, "AWATER": 0, "INTPTLAT": 34.3899435, "INTPTLON": -117.403094, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -117.399902, 34.388779 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 271, "felt:has_geometry": true, "felt:h3_index": 644747032503061924, "STATEFP": 6, "PLACEFP": 33434, "PLACENS": 2410751, "GEOID": 633434, "NAME": "Hesperia", "NAMELSAD": "Hesperia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 188241904, "AWATER": 251762, "INTPTLAT": 34.3970383, "INTPTLON": -117.3151976, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -117.312012, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1278, "felt:has_geometry": true, "felt:h3_index": 644747033356132490, "STATEFP": 6, "PLACEFP": 57302, "PLACENS": 2627936, "GEOID": 657302, "NAME": "Piñon Hills", "NAMELSAD": "Piñon Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83177827, "AWATER": 7520, "INTPTLAT": 34.4456075, "INTPTLON": -117.6235632, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -117.619629, 34.443159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1265, "felt:has_geometry": true, "felt:h3_index": 644747033605099828, "STATEFP": 6, "PLACEFP": 56826, "PLACENS": 2627935, "GEOID": 656826, "NAME": "Phelan", "NAMELSAD": "Phelan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 155638217, "AWATER": 0, "INTPTLAT": 34.439816, "INTPTLON": -117.5248288, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -117.520752, 34.434098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 48, "felt:has_geometry": true, "felt:h3_index": 644747034385786001, "STATEFP": 6, "PLACEFP": 59451, "PLACENS": 2411514, "GEOID": 659451, "NAME": "Rancho Cucamonga", "NAMELSAD": "Rancho Cucamonga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120441408, "AWATER": 24723, "INTPTLAT": 34.1303055, "INTPTLON": -117.5660665, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -117.564697, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1365, "felt:has_geometry": true, "felt:h3_index": 644747034561812073, "STATEFP": 6, "PLACEFP": 64462, "PLACENS": 2409248, "GEOID": 664462, "NAME": "San Antonio Heights", "NAMELSAD": "San Antonio Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334954, "AWATER": 417287, "INTPTLAT": 34.1564204, "INTPTLON": -117.6587047, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -117.652588, 34.152727 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 332, "felt:has_geometry": true, "felt:h3_index": 644747034960402868, "STATEFP": 6, "PLACEFP": 53896, "PLACENS": 2411323, "GEOID": 653896, "NAME": "Ontario", "NAMELSAD": "Ontario city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 129459234, "AWATER": 75071, "INTPTLAT": 34.0376483, "INTPTLON": -117.6044326, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 359, "felt:has_geometry": true, "felt:h3_index": 644747035020499818, "STATEFP": 6, "PLACEFP": 81344, "PLACENS": 2412137, "GEOID": 681344, "NAME": "Upland", "NAMELSAD": "Upland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40363418, "AWATER": 86983, "INTPTLAT": 34.1160732, "INTPTLON": -117.6599224, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -117.652588, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 124, "felt:has_geometry": true, "felt:h3_index": 644747036025422032, "STATEFP": 6, "PLACEFP": 40830, "PLACENS": 2411584, "GEOID": 640830, "NAME": "La Verne", "NAMELSAD": "La Verne city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21813497, "AWATER": 288109, "INTPTLAT": 34.1205212, "INTPTLON": -117.7699278, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -117.762451, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 418, "felt:has_geometry": true, "felt:h3_index": 644747036298516076, "STATEFP": 6, "PLACEFP": 13756, "PLACENS": 2409465, "GEOID": 613756, "NAME": "Claremont", "NAMELSAD": "Claremont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34537069, "AWATER": 352454, "INTPTLAT": 34.1249246, "INTPTLON": -117.7139226, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -117.707520, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1087, "felt:has_geometry": true, "felt:h3_index": 644747036710988390, "STATEFP": 6, "PLACEFP": 44644, "PLACENS": 2583066, "GEOID": 644644, "NAME": "Lytle Creek", "NAMELSAD": "Lytle Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15586138, "AWATER": 0, "INTPTLAT": 34.2499257, "INTPTLON": -117.5044314, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -117.498779, 34.243595 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1181, "felt:has_geometry": true, "felt:h3_index": 644747037397406114, "STATEFP": 6, "PLACEFP": 50132, "PLACENS": 2408894, "GEOID": 650132, "NAME": "Muscoy", "NAMELSAD": "Muscoy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7876493, "AWATER": 0, "INTPTLAT": 34.1551759, "INTPTLON": -117.3477205, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 34.152727 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1163, "felt:has_geometry": true, "felt:h3_index": 644747041432004253, "STATEFP": 6, "PLACEFP": 49348, "PLACENS": 2408870, "GEOID": 649348, "NAME": "Morongo Valley", "NAMELSAD": "Morongo Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 65317007, "AWATER": 0, "INTPTLAT": 34.0723774, "INTPTLON": -116.5627267, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -116.564941, 34.070862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 559, "felt:has_geometry": true, "felt:h3_index": 644747042063014814, "STATEFP": 6, "PLACEFP": 6406, "PLACENS": 2407838, "GEOID": 606406, "NAME": "Big Bear City", "NAMELSAD": "Big Bear City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82917622, "AWATER": 44975, "INTPTLAT": 34.2541177, "INTPTLON": -116.7963779, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -116.795654, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 611, "felt:has_geometry": true, "felt:h3_index": 644747043144326483, "STATEFP": 6, "PLACEFP": 9360, "PLACENS": 2407936, "GEOID": 609360, "NAME": "Cabazon", "NAMELSAD": "Cabazon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12674708, "AWATER": 0, "INTPTLAT": 33.9127262, "INTPTLON": -116.7828306, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 33.906896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1567, "felt:has_geometry": true, "felt:h3_index": 644747043445762675, "STATEFP": 6, "PLACEFP": 85208, "PLACENS": 2583184, "GEOID": 685208, "NAME": "Whitewater", "NAMELSAD": "Whitewater CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25581193, "AWATER": 0, "INTPTLAT": 33.9355902, "INTPTLON": -116.687212, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -116.685791, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 185, "felt:has_geometry": true, "felt:h3_index": 644747044087445221, "STATEFP": 6, "PLACEFP": 3820, "PLACENS": 2409785, "GEOID": 603820, "NAME": "Banning", "NAMELSAD": "Banning city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60180482, "AWATER": 0, "INTPTLAT": 33.9459026, "INTPTLON": -116.8990441, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1209, "felt:has_geometry": true, "felt:h3_index": 644747044203420866, "STATEFP": 6, "PLACEFP": 52715, "PLACENS": 2583099, "GEOID": 652715, "NAME": "Oak Glen", "NAMELSAD": "Oak Glen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 38839776, "AWATER": 11185, "INTPTLAT": 34.0410432, "INTPTLON": -116.9623071, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -116.960449, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 667, "felt:has_geometry": true, "felt:h3_index": 644747044742411950, "STATEFP": 6, "PLACEFP": 12916, "PLACENS": 2408019, "GEOID": 612916, "NAME": "Cherry Valley", "NAMELSAD": "Cherry Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20748133, "AWATER": 0, "INTPTLAT": 33.9796419, "INTPTLON": -116.9693705, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -116.971436, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 213, "felt:has_geometry": true, "felt:h3_index": 644747045905245580, "STATEFP": 6, "PLACEFP": 18996, "PLACENS": 2410328, "GEOID": 618996, "NAME": "Desert Hot Springs", "NAMELSAD": "Desert Hot Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78026380, "AWATER": 930813, "INTPTLAT": 33.9575914, "INTPTLON": -116.5422837, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 33.952474 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1433, "felt:has_geometry": true, "felt:h3_index": 644747048544577545, "STATEFP": 6, "PLACEFP": 73700, "PLACENS": 2583150, "GEOID": 673700, "NAME": "Spring Valley Lake", "NAMELSAD": "Spring Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7833090, "AWATER": 885216, "INTPTLAT": 34.4968183, "INTPTLON": -117.267587, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -117.268066, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 269, "felt:has_geometry": true, "felt:h3_index": 644747048740075378, "STATEFP": 6, "PLACEFP": 2364, "PLACENS": 2412372, "GEOID": 602364, "NAME": "Apple Valley", "NAMELSAD": "Apple Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 199444691, "AWATER": 182413, "INTPTLAT": 34.5333761, "INTPTLON": -117.2103584, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -117.202148, 34.533712 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1086, "felt:has_geometry": true, "felt:h3_index": 644747049448031517, "STATEFP": 6, "PLACEFP": 44420, "PLACENS": 2627937, "GEOID": 644420, "NAME": "Lucerne Valley", "NAMELSAD": "Lucerne Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 273570981, "AWATER": 0, "INTPTLAT": 34.4427191, "INTPTLON": -116.9020927, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 34.443159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1354, "felt:has_geometry": true, "felt:h3_index": 644747051610516904, "STATEFP": 6, "PLACEFP": 63316, "PLACENS": 2409224, "GEOID": 663316, "NAME": "Running Springs", "NAMELSAD": "Running Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10888685, "AWATER": 23184, "INTPTLAT": 34.2113617, "INTPTLON": -117.1045717, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -117.103271, 34.207259 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 712, "felt:has_geometry": true, "felt:h3_index": 644747053195790667, "STATEFP": 6, "PLACEFP": 17162, "PLACENS": 2407681, "GEOID": 617162, "NAME": "Crestline", "NAMELSAD": "Crestline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36012359, "AWATER": 308820, "INTPTLAT": 34.2540767, "INTPTLON": -117.2867092, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1006, "felt:has_geometry": true, "felt:h3_index": 644747053443966362, "STATEFP": 6, "PLACEFP": 39444, "PLACENS": 2408532, "GEOID": 639444, "NAME": "Lake Arrowhead", "NAMELSAD": "Lake Arrowhead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45786324, "AWATER": 3169654, "INTPTLAT": 34.2540272, "INTPTLON": -117.1780911, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -117.180176, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 369, "felt:has_geometry": true, "felt:h3_index": 644747054570202468, "STATEFP": 6, "PLACEFP": 6434, "PLACENS": 2409843, "GEOID": 606434, "NAME": "Big Bear Lake", "NAMELSAD": "Big Bear Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16164304, "AWATER": 474774, "INTPTLAT": 34.2428884, "INTPTLON": -116.8938931, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 34.243595 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 224, "felt:has_geometry": true, "felt:h3_index": 644747056982330284, "STATEFP": 6, "PLACEFP": 59587, "PLACENS": 2411517, "GEOID": 659587, "NAME": "Rancho Santa Margarita", "NAMELSAD": "Rancho Santa Margarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33483309, "AWATER": 122877, "INTPTLAT": 33.6323319, "INTPTLON": -117.5990075, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 33.632916 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1147, "felt:has_geometry": true, "felt:h3_index": 644747057083490932, "STATEFP": 6, "PLACEFP": 48410, "PLACENS": 2805246, "GEOID": 648410, "NAME": "Modjeska", "NAMELSAD": "Modjeska CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5189981, "AWATER": 0, "INTPTLAT": 33.7091329, "INTPTLON": -117.6297041, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -117.630615, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1493, "felt:has_geometry": true, "felt:h3_index": 644747057388603443, "STATEFP": 6, "PLACEFP": 80210, "PLACENS": 2812660, "GEOID": 680210, "NAME": "Trabuco Canyon", "NAMELSAD": "Trabuco Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18861606, "AWATER": 0, "INTPTLAT": 33.6782283, "INTPTLON": -117.5940094, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -117.586670, 33.678640 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1035, "felt:has_geometry": true, "felt:h3_index": 644747057458590926, "STATEFP": 6, "PLACEFP": 40526, "PLACENS": 2408577, "GEOID": 640526, "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6522767, "AWATER": 0, "INTPTLAT": 33.5838362, "INTPTLON": -117.6237413, "NAME": "Las Flores,Coto de Caza", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -117.619629, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 223, "felt:has_geometry": true, "felt:h3_index": 644747057572762291, "STATEFP": 6, "PLACEFP": 48256, "PLACENS": 2411123, "GEOID": 648256, "NAME": "Mission Viejo", "NAMELSAD": "Mission Viejo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45738193, "AWATER": 959475, "INTPTLAT": 33.6093352, "INTPTLON": -117.656471, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -117.652588, 33.605470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 184, "felt:has_geometry": true, "felt:h3_index": 644747058044247465, "STATEFP": 6, "PLACEFP": 85446, "PLACENS": 2497148, "GEOID": 685446, "NAME": "Wildomar", "NAMELSAD": "Wildomar city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61496131, "AWATER": 0, "INTPTLAT": 33.6172783, "INTPTLON": -117.2583117, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 33.614619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 201, "felt:has_geometry": true, "felt:h3_index": 644747058207460419, "STATEFP": 6, "PLACEFP": 10928, "PLACENS": 2409979, "GEOID": 610928, "NAME": "Canyon Lake", "NAMELSAD": "Canyon Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10070209, "AWATER": 1912692, "INTPTLAT": 33.6883023, "INTPTLON": -117.2635469, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 177, "felt:has_geometry": true, "felt:h3_index": 644747058473869637, "STATEFP": 6, "PLACEFP": 46842, "PLACENS": 2497157, "GEOID": 646842, "NAME": "Menifee", "NAMELSAD": "Menifee city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120340515, "AWATER": 381612, "INTPTLAT": 33.6898575, "INTPTLON": -117.1843827, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -117.180176, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 373, "felt:has_geometry": true, "felt:h3_index": 644747058839430387, "STATEFP": 6, "PLACEFP": 50076, "PLACENS": 2411199, "GEOID": 650076, "NAME": "Murrieta", "NAMELSAD": "Murrieta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 86858399, "AWATER": 93770, "INTPTLAT": 33.5721337, "INTPTLON": -117.1904442, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -117.191162, 33.568861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1474, "felt:has_geometry": true, "felt:h3_index": 644747059181708180, "STATEFP": 6, "PLACEFP": 78138, "PLACENS": 2629134, "GEOID": 678138, "NAME": "Temescal Valley", "NAMELSAD": "Temescal Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50080852, "AWATER": 92242, "INTPTLAT": 33.7580032, "INTPTLON": -117.4671588, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -117.465820, 33.751748 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1539, "felt:has_geometry": true, "felt:h3_index": 644747059388097024, "STATEFP": 6, "PLACEFP": 83460, "PLACENS": 2583181, "GEOID": 683460, "NAME": "Warm Springs", "NAMELSAD": "Warm Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3629535, "AWATER": 0, "INTPTLAT": 33.7066811, "INTPTLON": -117.3343467, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 102, "felt:has_geometry": true, "felt:h3_index": 644747059879569155, "STATEFP": 6, "PLACEFP": 39486, "PLACENS": 2411601, "GEOID": 639486, "NAMELSAD": "Lake Elsinore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 99115608, "AWATER": 13658093, "INTPTLAT": 33.685956, "INTPTLON": -117.3354038, "NAME": "Lake Elsinore,Lakeland Village", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 226, "felt:has_geometry": true, "felt:h3_index": 644747061280164672, "STATEFP": 6, "PLACEFP": 65084, "PLACENS": 2411781, "GEOID": 665084, "NAME": "San Clemente", "NAMELSAD": "San Clemente city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47542789, "AWATER": 1940302, "INTPTLAT": 33.4491433, "INTPTLON": -117.6131198, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -117.608643, 33.449777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 999, "felt:has_geometry": true, "felt:h3_index": 644747061373484104, "STATEFP": 6, "PLACEFP": 39114, "PLACENS": 2583048, "GEOID": 639114, "NAMELSAD": "Ladera Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12807936, "AWATER": 0, "INTPTLAT": 33.5491462, "INTPTLON": -117.6417408, "NAME": "Ladera Ranch,San Juan Capistrano", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 33.550551 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1312, "felt:has_geometry": true, "felt:h3_index": 644747061659048178, "STATEFP": 6, "PLACEFP": 59503, "PLACENS": 2805249, "GEOID": 659503, "NAME": "Rancho Mission Viejo", "NAMELSAD": "Rancho Mission Viejo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 97922929, "AWATER": 0, "INTPTLAT": 33.5140033, "INTPTLON": -117.5617945, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -117.553711, 33.513919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 263, "felt:has_geometry": true, "felt:h3_index": 644747064429065921, "STATEFP": 6, "PLACEFP": 86832, "PLACENS": 2412321, "GEOID": 686832, "NAMELSAD": "Yorba Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51676743, "AWATER": 52602, "INTPTLAT": 33.8890375, "INTPTLON": -117.7720695, "NAME": "Yorba Linda,Anaheim", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 276, "felt:has_geometry": true, "felt:h3_index": 644747064817237222, "STATEFP": 6, "PLACEFP": 13214, "PLACENS": 2409454, "GEOID": 613214, "NAME": "Chino Hills", "NAMELSAD": "Chino Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 115642341, "AWATER": 123913, "INTPTLAT": 33.9429693, "INTPTLON": -117.7256483, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -117.718506, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 228, "felt:has_geometry": true, "felt:h3_index": 644747064970197236, "STATEFP": 6, "PLACEFP": 82744, "PLACENS": 2412158, "GEOID": 682744, "NAME": "Villa Park", "NAMELSAD": "Villa Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5380380, "AWATER": 237, "INTPTLAT": 33.8179855, "INTPTLON": -117.8112928, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -117.806396, 33.815666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 259, "felt:has_geometry": true, "felt:h3_index": 644747065102227620, "STATEFP": 6, "PLACEFP": 57526, "PLACENS": 2411432, "GEOID": 657526, "NAME": "Placentia", "NAMELSAD": "Placentia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17126768, "AWATER": 37381, "INTPTLAT": 33.8811581, "INTPTLON": -117.8547827, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -117.850342, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 109, "felt:has_geometry": true, "felt:h3_index": 644747065500019905, "STATEFP": 6, "PLACEFP": 39304, "PLACENS": 2411572, "GEOID": 639304, "NAMELSAD": "La Habra Heights city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15951225, "AWATER": 4740, "INTPTLAT": 33.9589591, "INTPTLON": -117.9489729, "NAME": "La Habra Heights,La Habra", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.952474 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 907, "felt:has_geometry": true, "felt:h3_index": 644747065616255184, "STATEFP": 6, "PLACEFP": 31596, "PLACENS": 2408344, "GEOID": 631596, "NAME": "Hacienda Heights", "NAMELSAD": "Hacienda Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28884806, "AWATER": 14534, "INTPTLAT": 33.9958532, "INTPTLON": -117.9730226, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -117.971191, 33.998027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1352, "felt:has_geometry": true, "felt:h3_index": 644747065778279710, "STATEFP": 6, "PLACEFP": 63218, "PLACENS": 2409220, "GEOID": 663218, "NAME": "Rowland Heights", "NAMELSAD": "Rowland Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33868894, "AWATER": 20101, "INTPTLAT": 33.9703133, "INTPTLON": -117.8905677, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 33.970698 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1426, "felt:has_geometry": true, "felt:h3_index": 644747065884993810, "STATEFP": 6, "PLACEFP": 73290, "PLACENS": 2408772, "GEOID": 673290, "NAME": "South San Jose Hills", "NAMELSAD": "South San Jose Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3878864, "AWATER": 0, "INTPTLAT": 34.0123323, "INTPTLON": -117.9043633, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -117.905273, 34.007135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 255, "felt:has_geometry": true, "felt:h3_index": 644747066122777962, "STATEFP": 6, "PLACEFP": 28000, "PLACENS": 2410556, "GEOID": 628000, "NAME": "Fullerton", "NAMELSAD": "Fullerton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 58067902, "AWATER": 32825, "INTPTLAT": 33.8857156, "INTPTLON": -117.9280247, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -117.927246, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1428, "felt:has_geometry": true, "felt:h3_index": 644747066239355906, "STATEFP": 6, "PLACEFP": 73430, "PLACENS": 2408778, "GEOID": 673430, "NAMELSAD": "South Whittier CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13824727, "AWATER": 22815, "INTPTLAT": 33.9330802, "INTPTLON": -118.0307712, "NAME": "South Whittier,East Whittier", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -118.026123, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 186, "felt:has_geometry": true, "felt:h3_index": 644747066322887704, "STATEFP": 6, "PLACEFP": 8100, "PLACENS": 2409897, "GEOID": 608100, "NAME": "Brea", "NAMELSAD": "Brea city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31520533, "AWATER": 99672, "INTPTLAT": 33.9251776, "INTPTLON": -117.8651109, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 368, "felt:has_geometry": true, "felt:h3_index": 644747066559863579, "STATEFP": 6, "PLACEFP": 21230, "PLACENS": 2650584, "GEOID": 621230, "NAME": "Eastvale", "NAMELSAD": "Eastvale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32837284, "AWATER": 1143505, "INTPTLAT": 33.9632744, "INTPTLON": -117.5823688, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -117.575684, 33.961586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 699, "felt:has_geometry": true, "felt:h3_index": 644747067160306400, "STATEFP": 6, "PLACEFP": 16420, "PLACENS": 2582983, "GEOID": 616420, "NAME": "Coronita", "NAMELSAD": "Coronita CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1569105, "AWATER": 0, "INTPTLAT": 33.8758773, "INTPTLON": -117.6109827, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -117.608643, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 278, "felt:has_geometry": true, "felt:h3_index": 644747067283121880, "STATEFP": 6, "PLACEFP": 13210, "PLACENS": 2409453, "GEOID": 613210, "NAME": "Chino", "NAMELSAD": "Chino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 76596420, "AWATER": 249662, "INTPTLAT": 33.9780368, "INTPTLON": -117.6577189, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -117.652588, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 105, "felt:has_geometry": true, "felt:h3_index": 644747067382683209, "STATEFP": 6, "PLACEFP": 51560, "PLACENS": 2411265, "GEOID": 651560, "NAME": "Norco", "NAMELSAD": "Norco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35890351, "AWATER": 569467, "INTPTLAT": 33.9255186, "INTPTLON": -117.5519578, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -117.553711, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 115, "felt:has_geometry": true, "felt:h3_index": 644747067680746824, "STATEFP": 6, "PLACEFP": 58072, "PLACENS": 2411454, "GEOID": 658072, "NAME": "Pomona", "NAMELSAD": "Pomona city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59529294, "AWATER": 26188, "INTPTLAT": 34.0584937, "INTPTLON": -117.7610909, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -117.762451, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 452, "felt:has_geometry": true, "felt:h3_index": 644747067814318305, "STATEFP": 6, "PLACEFP": 66070, "PLACENS": 2411784, "GEOID": 666070, "NAME": "San Dimas", "NAMELSAD": "San Dimas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38937385, "AWATER": 1009641, "INTPTLAT": 34.1079574, "INTPTLON": -117.8085286, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -117.806396, 34.107256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 330, "felt:has_geometry": true, "felt:h3_index": 644747067958717867, "STATEFP": 6, "PLACEFP": 48788, "PLACENS": 2411141, "GEOID": 648788, "NAME": "Montclair", "NAMELSAD": "Montclair city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14325101, "AWATER": 0, "INTPTLAT": 34.0714926, "INTPTLON": -117.6980798, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -117.696533, 34.070862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 16, "felt:has_geometry": true, "felt:h3_index": 644747068317644611, "STATEFP": 6, "PLACEFP": 83332, "PLACENS": 2412173, "GEOID": 683332, "NAMELSAD": "Walnut city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23281857, "AWATER": 9650, "INTPTLAT": 34.0371955, "INTPTLON": -117.8556059, "NAME": "Walnut,Diamond Bar", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -117.850342, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1207, "felt:has_geometry": true, "felt:h3_index": 644747068844882610, "STATEFP": 6, "PLACEFP": 52379, "PLACENS": 2408951, "GEOID": 652379, "NAMELSAD": "North Tustin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17044859, "AWATER": 0, "INTPTLAT": 33.7635438, "INTPTLON": -117.7947169, "NAME": "North Tustin,Tustin", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -117.795410, 33.760882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 187, "felt:has_geometry": true, "felt:h3_index": 644747069294401651, "STATEFP": 6, "PLACEFP": 36770, "PLACENS": 2410116, "GEOID": 636770, "NAME": "Irvine", "NAMELSAD": "Irvine city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 169930134, "AWATER": 802010, "INTPTLAT": 33.6783986, "INTPTLON": -117.7712541, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.678640 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 239, "felt:has_geometry": true, "felt:h3_index": 644747069609429270, "STATEFP": 6, "PLACEFP": 39496, "PLACENS": 2411602, "GEOID": 639496, "NAME": "Lake Forest", "NAMELSAD": "Lake Forest city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 43288926, "AWATER": 202929, "INTPTLAT": 33.6549461, "INTPTLON": -117.6758479, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -117.674561, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 256, "felt:has_geometry": true, "felt:h3_index": 644747069863937115, "STATEFP": 6, "PLACEFP": 29000, "PLACENS": 2410568, "GEOID": 629000, "NAME": "Garden Grove", "NAMELSAD": "Garden Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46498892, "AWATER": 31066, "INTPTLAT": 33.7787816, "INTPTLON": -117.9604719, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -117.960205, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 258, "felt:has_geometry": true, "felt:h3_index": 644747070114474419, "STATEFP": 6, "PLACEFP": 53980, "PLACENS": 2411325, "GEOID": 653980, "NAME": "Orange", "NAMELSAD": "Orange city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 66477990, "AWATER": 386916, "INTPTLAT": 33.7869711, "INTPTLON": -117.8612654, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 33.788279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 235, "felt:has_geometry": true, "felt:h3_index": 644747070384125553, "STATEFP": 6, "PLACEFP": 25380, "PLACENS": 2410537, "GEOID": 625380, "NAME": "Fountain Valley", "NAMELSAD": "Fountain Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23493866, "AWATER": 33638, "INTPTLAT": 33.7105823, "INTPTLON": -117.951129, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 189, "felt:has_geometry": true, "felt:h3_index": 644747070505442577, "STATEFP": 6, "PLACEFP": 73962, "PLACENS": 2411969, "GEOID": 673962, "NAMELSAD": "Stanton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8035789, "AWATER": 0, "INTPTLAT": 33.8002333, "INTPTLON": -117.9934493, "NAME": "Stanton,Westminster,Midway City", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 261, "felt:has_geometry": true, "felt:h3_index": 644747070590462032, "STATEFP": 6, "PLACEFP": 69000, "PLACENS": 2411814, "GEOID": 669000, "NAME": "Santa Ana", "NAMELSAD": "Santa Ana city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 70904555, "AWATER": 79932, "INTPTLAT": 33.7363317, "INTPTLON": -117.8828997, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 793, "felt:has_geometry": true, "felt:h3_index": 644747071172589648, "STATEFP": 6, "PLACEFP": 21810, "PLACENS": 2408053, "GEOID": 621810, "NAME": "El Cerrito", "NAMELSAD": "El Cerrito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6738599, "AWATER": 558502, "INTPTLAT": 33.8381856, "INTPTLON": -117.522205, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -117.520752, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 101, "felt:has_geometry": true, "felt:h3_index": 644747071256568086, "STATEFP": 6, "PLACEFP": 16350, "PLACENS": 2410232, "GEOID": 616350, "NAME": "Corona", "NAMELSAD": "Corona city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103320711, "AWATER": 53926, "INTPTLAT": 33.8619689, "INTPTLON": -117.5654945, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -117.564697, 33.861293 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1405, "felt:has_geometry": true, "felt:h3_index": 644747071405494698, "STATEFP": 6, "PLACEFP": 71918, "PLACENS": 2805252, "GEOID": 671918, "NAMELSAD": "Silverado CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14812702, "AWATER": 0, "INTPTLAT": 33.7481762, "INTPTLON": -117.6284789, "NAME": "Silverado,Williams Canyon", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -117.630615, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1357, "felt:has_geometry": true, "felt:h3_index": 644747073577834850, "STATEFP": 6, "PLACEFP": 64056, "PLACENS": 2812661, "GEOID": 664056, "NAME": "Sage", "NAMELSAD": "Sage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 176786860, "AWATER": 15601, "INTPTLAT": 33.594066, "INTPTLON": -116.9103847, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -116.905518, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 895, "felt:has_geometry": true, "felt:h3_index": 644747074075142700, "STATEFP": 6, "PLACEFP": 30944, "PLACENS": 2630600, "GEOID": 630944, "NAMELSAD": "Green Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3633842, "AWATER": 0, "INTPTLAT": 33.7349718, "INTPTLON": -117.0782441, "NAME": "Green Acres,Winchester", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 932, "felt:has_geometry": true, "felt:h3_index": 644747074286051486, "STATEFP": 6, "PLACEFP": 34316, "PLACENS": 2408399, "GEOID": 634316, "NAMELSAD": "Homeland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11060967, "AWATER": 0, "INTPTLAT": 33.7458815, "INTPTLON": -117.1132414, "NAME": "Homeland,Romoland", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 104, "felt:has_geometry": true, "felt:h3_index": 644747074353846796, "STATEFP": 6, "PLACEFP": 33182, "PLACENS": 2410738, "GEOID": 633182, "NAME": "Hemet", "NAMELSAD": "Hemet city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75787408, "AWATER": 0, "INTPTLAT": 33.7340679, "INTPTLON": -116.9968083, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -116.993408, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 946, "felt:has_geometry": true, "felt:h3_index": 644747075151599266, "STATEFP": 6, "PLACEFP": 36203, "PLACENS": 2408414, "GEOID": 636203, "NAMELSAD": "Idyllwild-Pine Cove CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35541508, "AWATER": 26090, "INTPTLAT": 33.7442086, "INTPTLON": -116.7306896, "NAME": "Idyllwild-Pine Cove,Mountain Center", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -116.729736, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 103, "felt:has_geometry": true, "felt:h3_index": 644747076412385956, "STATEFP": 6, "PLACEFP": 4758, "PLACENS": 2409805, "GEOID": 604758, "NAME": "Beaumont", "NAMELSAD": "Beaumont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78560690, "AWATER": 35531, "INTPTLAT": 33.8767216, "INTPTLON": -116.9530089, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -116.949463, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 769, "felt:has_geometry": true, "felt:h3_index": 644747076834795843, "STATEFP": 6, "PLACEFP": 20697, "PLACENS": 2408708, "GEOID": 620697, "NAMELSAD": "East Hemet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13464992, "AWATER": 0, "INTPTLAT": 33.7301141, "INTPTLON": -116.9410012, "NAME": "East Hemet,Valle Vista", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -116.938477, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 107, "felt:has_geometry": true, "felt:h3_index": 644747076980868185, "STATEFP": 6, "PLACEFP": 67112, "PLACENS": 2411788, "GEOID": 667112, "NAME": "San Jacinto", "NAMELSAD": "San Jacinto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67011568, "AWATER": 416801, "INTPTLAT": 33.7988642, "INTPTLON": -116.9959145, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -116.993408, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1020, "felt:has_geometry": true, "felt:h3_index": 644747077596899179, "STATEFP": 6, "PLACEFP": 39715, "PLACENS": 2583052, "GEOID": 639715, "NAME": "Lake Riverside", "NAMELSAD": "Lake Riverside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18888592, "AWATER": 216496, "INTPTLAT": 33.518735, "INTPTLON": -116.8121026, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -116.806641, 33.513919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 488, "felt:has_geometry": true, "felt:h3_index": 644747078104684645, "STATEFP": 6, "PLACEFP": 464, "PLACENS": 2582929, "GEOID": 600464, "NAME": "Aguanga", "NAMELSAD": "Aguanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35222110, "AWATER": 0, "INTPTLAT": 33.4522463, "INTPTLON": -116.8554705, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -116.850586, 33.449777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 862, "felt:has_geometry": true, "felt:h3_index": 644747078611887798, "STATEFP": 6, "PLACEFP": 26067, "PLACENS": 2583019, "GEOID": 626067, "NAME": "French Valley", "NAMELSAD": "French Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28156302, "AWATER": 15910, "INTPTLAT": 33.5994608, "INTPTLON": -117.1064951, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -117.103271, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 212, "felt:has_geometry": true, "felt:h3_index": 644747078997646037, "STATEFP": 6, "PLACEFP": 78120, "PLACENS": 2412044, "GEOID": 678120, "NAME": "Temecula", "NAMELSAD": "Temecula city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 96288271, "AWATER": 24829, "INTPTLAT": 33.4930728, "INTPTLON": -117.1317341, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -117.125244, 33.486435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 514, "felt:has_geometry": true, "felt:h3_index": 644747079546123337, "STATEFP": 6, "PLACEFP": 2294, "PLACENS": 2582935, "GEOID": 602294, "NAME": "Anza", "NAMELSAD": "Anza CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71470883, "AWATER": 212166, "INTPTLAT": 33.5615903, "INTPTLON": -116.6960661, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -116.696777, 33.559707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1050, "felt:has_geometry": true, "felt:h3_index": 644747092349047627, "STATEFP": 6, "PLACEFP": 41208, "PLACENS": 2583056, "GEOID": 641208, "NAME": "Leona Valley", "NAMELSAD": "Leona Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48155344, "AWATER": 70714, "INTPTLAT": 34.608144, "INTPTLON": -118.3013217, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 34.606085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1012, "felt:has_geometry": true, "felt:h3_index": 644747093450220424, "STATEFP": 6, "PLACEFP": 39556, "PLACENS": 2583050, "GEOID": 639556, "NAME": "Lake Hughes", "NAMELSAD": "Lake Hughes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27506574, "AWATER": 154600, "INTPTLAT": 34.682415399999999, "INTPTLON": -118.4519379, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -118.454590, 34.678394 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 804, "felt:has_geometry": true, "felt:h3_index": 644747093738219625, "STATEFP": 6, "PLACEFP": 21964, "PLACENS": 2583006, "GEOID": 621964, "NAME": "Elizabeth Lake", "NAMELSAD": "Elizabeth Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16066199, "AWATER": 768664, "INTPTLAT": 34.6564882, "INTPTLON": -118.379847, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -118.377686, 34.651285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 898, "felt:has_geometry": true, "felt:h3_index": 644747094204509040, "STATEFP": 6, "PLACEFP": 31092, "PLACENS": 2583029, "GEOID": 631092, "NAME": "Green Valley", "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33175008, "AWATER": 497, "INTPTLAT": 34.6174149, "INTPTLON": -118.4050226, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -118.399658, 34.615127 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 13, "felt:has_geometry": true, "felt:h3_index": 644747094663775622, "STATEFP": 6, "PLACEFP": 69088, "PLACENS": 2411819, "GEOID": 669088, "NAME": "Santa Clarita", "NAMELSAD": "Santa Clarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 183251253, "AWATER": 159487, "INTPTLAT": 34.4140833, "INTPTLON": -118.4947294, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -118.487549, 34.415973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1, "felt:has_geometry": true, "felt:h3_index": 644747095056321830, "STATEFP": 6, "PLACEFP": 66140, "PLACENS": 2411785, "GEOID": 666140, "NAME": "San Fernando", "NAMELSAD": "San Fernando city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6149607, "AWATER": 0, "INTPTLAT": 34.2886523, "INTPTLON": -118.4362428, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -118.432617, 34.288992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1521, "felt:has_geometry": true, "felt:h3_index": 644747095689222760, "STATEFP": 6, "PLACEFP": 81967, "PLACENS": 2409388, "GEOID": 681967, "NAMELSAD": "Val Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6644174, "AWATER": 0, "INTPTLAT": 34.4504231, "INTPTLON": -118.6717843, "NAME": "Val Verde,Hasley Canyon", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -118.674316, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 646, "felt:has_geometry": true, "felt:h3_index": 644747095977308468, "STATEFP": 6, "PLACEFP": 11796, "PLACENS": 2582966, "GEOID": 611796, "NAME": "Castaic", "NAMELSAD": "Castaic CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18807882, "AWATER": 44614, "INTPTLAT": 34.4775443, "INTPTLON": -118.6264003, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -118.619385, 34.479392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1440, "felt:has_geometry": true, "felt:h3_index": 644747096375322634, "STATEFP": 6, "PLACEFP": 74130, "PLACENS": 2583151, "GEOID": 674130, "NAME": "Stevenson Ranch", "NAMELSAD": "Stevenson Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16607592, "AWATER": 2399, "INTPTLAT": 34.38772, "INTPTLON": -118.5843591, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -118.586426, 34.388779 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 487, "felt:has_geometry": true, "felt:h3_index": 644747096810914953, "STATEFP": 6, "PLACEFP": 450, "PLACENS": 2582928, "GEOID": 600450, "NAME": "Agua Dulce", "NAMELSAD": "Agua Dulce CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 59181047, "AWATER": 14646, "INTPTLAT": 34.5016784, "INTPTLON": -118.3206796, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -118.322754, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1019, "felt:has_geometry": true, "felt:h3_index": 644747100381466922, "STATEFP": 6, "PLACEFP": 39696, "PLACENS": 2408548, "GEOID": 639696, "NAMELSAD": "Lake of the Woods CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9166577, "AWATER": 1509, "INTPTLAT": 34.8271377, "INTPTLON": -118.997304, "NAME": "Lake of the Woods,Frazier Park", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -118.992920, 34.822823 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1041, "felt:has_geometry": true, "felt:h3_index": 644747100688967177, "STATEFP": 6, "PLACEFP": 40956, "PLACENS": 2408595, "GEOID": 640956, "NAME": "Lebec", "NAMELSAD": "Lebec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39689131, "AWATER": 760, "INTPTLAT": 34.8446143, "INTPTLON": -118.8992375, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -118.894043, 34.840859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1458, "felt:has_geometry": true, "felt:h3_index": 644747107957582123, "STATEFP": 6, "PLACEFP": 77308, "PLACENS": 2583157, "GEOID": 677308, "NAMELSAD": "Sun Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27981975, "AWATER": 1222, "INTPTLAT": 34.5595244, "INTPTLON": -117.9567582, "NAME": "Sun Village,Littlerock", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 34.560859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 138, "felt:has_geometry": true, "felt:h3_index": 644747109159475888, "STATEFP": 6, "PLACEFP": 40130, "PLACENS": 2411620, "GEOID": 640130, "NAMELSAD": "Lancaster city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244189279, "AWATER": 651713, "INTPTLAT": 34.693558, "INTPTLON": -118.1753054, "NAME": "Lancaster,Quartz Hill", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 34.687428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1015, "felt:has_geometry": true, "felt:h3_index": 644747110137651232, "STATEFP": 6, "PLACEFP": 39612, "PLACENS": 2408541, "GEOID": 639612, "NAME": "Lake Los Angeles", "NAMELSAD": "Lake Los Angeles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25229336, "AWATER": 125676, "INTPTLAT": 34.609839, "INTPTLON": -117.8303369, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -117.828369, 34.606085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 742, "felt:has_geometry": true, "felt:h3_index": 644747112917918427, "STATEFP": 6, "PLACEFP": 19052, "PLACENS": 2408666, "GEOID": 619052, "NAME": "Desert View Highlands", "NAMELSAD": "Desert View Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1142187, "AWATER": 0, "INTPTLAT": 34.5902628, "INTPTLON": -118.1535367, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -118.146973, 34.587997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 10, "felt:has_geometry": true, "felt:h3_index": 644747113151905155, "STATEFP": 6, "PLACEFP": 55156, "PLACENS": 2411359, "GEOID": 655156, "NAME": "Palmdale", "NAMELSAD": "Palmdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 274705334, "AWATER": 629569, "INTPTLAT": 34.5910383, "INTPTLON": -118.1054031, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -118.103027, 34.587997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 485, "felt:has_geometry": true, "felt:h3_index": 644747113398709264, "STATEFP": 6, "PLACEFP": 212, "PLACENS": 2407697, "GEOID": 600212, "NAME": "Acton", "NAMELSAD": "Acton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 101679451, "AWATER": 60418, "INTPTLAT": 34.4960703, "INTPTLON": -118.183897, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1343, "felt:has_geometry": true, "felt:h3_index": 644747116795790004, "STATEFP": 6, "PLACEFP": 62826, "PLACENS": 2409208, "GEOID": 662826, "NAME": "Rosamond", "NAMELSAD": "Rosamond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 134995228, "AWATER": 551690, "INTPTLAT": 34.8656273, "INTPTLON": -118.2147671, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.858890 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1149, "felt:has_geometry": true, "felt:h3_index": 644747118822955717, "STATEFP": 6, "PLACEFP": 48452, "PLACENS": 2408853, "GEOID": 648452, "NAME": "Mojave", "NAMELSAD": "Mojave CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 151185016, "AWATER": 207337, "INTPTLAT": 35.0149951, "INTPTLON": -118.1902086, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 35.012002 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1490, "felt:has_geometry": true, "felt:h3_index": 644747124543605603, "STATEFP": 6, "PLACEFP": 78960, "PLACENS": 2583164, "GEOID": 678960, "NAME": "Topanga", "NAMELSAD": "Topanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49538336, "AWATER": 19528, "INTPTLAT": 34.0967768, "INTPTLON": -118.6060209, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 34.098159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 19, "felt:has_geometry": true, "felt:h3_index": 644747124682556080, "STATEFP": 6, "PLACEFP": 9598, "PLACENS": 2409955, "GEOID": 609598, "NAMELSAD": "Calabasas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35502601, "AWATER": 90645, "INTPTLAT": 34.1342518, "INTPTLON": -118.6664552, "NAME": "Calabasas,Hidden Hills", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -118.663330, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1212, "felt:has_geometry": true, "felt:h3_index": 644747125647071019, "STATEFP": 6, "PLACEFP": 53116, "PLACENS": 2408964, "GEOID": 653116, "NAMELSAD": "Oak Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713403, "AWATER": 0, "INTPTLAT": 34.1849839, "INTPTLON": -118.7669403, "NAME": "Oak Park,Agoura Hills", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -118.762207, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1023, "felt:has_geometry": true, "felt:h3_index": 644747126377620781, "STATEFP": 6, "PLACEFP": 39735, "PLACENS": 2585428, "GEOID": 639735, "NAMELSAD": "Lake Sherwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8125833, "AWATER": 547804, "INTPTLAT": 34.131803, "INTPTLON": -118.884714, "NAME": "Lake Sherwood,Westlake Village", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -118.883057, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1379, "felt:has_geometry": true, "felt:h3_index": 644747128465883906, "STATEFP": 6, "PLACEFP": 70140, "PLACENS": 2585445, "GEOID": 670140, "NAMELSAD": "Santa Susana CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3250193, "AWATER": 0, "INTPTLAT": 34.2585666, "INTPTLON": -118.6643529, "NAME": "Santa Susana,Bell Canyon", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -118.663330, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1261, "felt:has_geometry": true, "felt:h3_index": 644747130228595736, "STATEFP": 6, "PLACEFP": 56598, "PLACENS": 2805260, "GEOID": 656598, "NAME": "Pepperdine University", "NAMELSAD": "Pepperdine University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1393957, "AWATER": 0, "INTPTLAT": 34.0422775, "INTPTLON": -118.709182, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -118.707275, 34.043557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 137, "felt:has_geometry": true, "felt:h3_index": 644747130385608098, "STATEFP": 6, "PLACEFP": 45246, "PLACENS": 2410913, "GEOID": 645246, "NAME": "Malibu", "NAMELSAD": "Malibu city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51403234, "AWATER": 205274314, "INTPTLAT": 34.0258601, "INTPTLON": -118.7596429, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -118.762207, 34.025348 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 45, "felt:has_geometry": true, "felt:h3_index": 644747131027237789, "STATEFP": 6, "PLACEFP": 44000, "PLACENS": 2410877, "GEOID": 644000, "NAME": "Los Angeles", "NAMELSAD": "Los Angeles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1218634998, "AWATER": 80417875, "INTPTLAT": 34.0193936, "INTPTLON": -118.4108248, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 998, "felt:has_geometry": true, "felt:h3_index": 644747131324165390, "STATEFP": 6, "PLACEFP": 39108, "PLACENS": 2408521, "GEOID": 639108, "NAMELSAD": "Ladera Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7679969, "AWATER": 276, "INTPTLAT": 33.9967756, "INTPTLON": -118.370028, "NAME": "Ladera Heights,Culver City", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -118.366699, 33.998027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 42, "felt:has_geometry": true, "felt:h3_index": 644747131427669805, "STATEFP": 6, "PLACEFP": 6308, "PLACENS": 2409840, "GEOID": 606308, "NAME": "Beverly Hills", "NAMELSAD": "Beverly Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14784194, "AWATER": 2279, "INTPTLAT": 34.07923, "INTPTLON": -118.4024374, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -118.399658, 34.079962 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1109, "felt:has_geometry": true, "felt:h3_index": 644747131572210081, "STATEFP": 6, "PLACEFP": 45806, "PLACENS": 2408179, "GEOID": 645806, "NAME": "Marina del Rey", "NAMELSAD": "Marina del Rey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221336, "AWATER": 1546421, "INTPTLAT": 33.9763728, "INTPTLON": -118.4508879, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -118.443604, 33.970698 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 435, "felt:has_geometry": true, "felt:h3_index": 644747131694930644, "STATEFP": 6, "PLACEFP": 70000, "PLACENS": 2411825, "GEOID": 670000, "NAME": "Santa Monica", "NAMELSAD": "Santa Monica city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21779158, "AWATER": 22696935, "INTPTLAT": 34.0109107, "INTPTLON": -118.4982446, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -118.498535, 34.007135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 31, "felt:has_geometry": true, "felt:h3_index": 644747133490056433, "STATEFP": 6, "PLACEFP": 24092, "PLACENS": 2410504, "GEOID": 624092, "NAME": "Fillmore", "NAMELSAD": "Fillmore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8553766, "AWATER": 0, "INTPTLAT": 34.3989578, "INTPTLON": -118.9174598, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1280, "felt:has_geometry": true, "felt:h3_index": 644747135884366873, "STATEFP": 6, "PLACEFP": 57372, "PLACENS": 2409077, "GEOID": 657372, "NAME": "Piru", "NAMELSAD": "Piru CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8233997, "AWATER": 40401, "INTPTLAT": 34.4056778, "INTPTLON": -118.80509670000001, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -118.806152, 34.406910 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1418, "felt:has_geometry": true, "felt:h3_index": 644747137630910901, "STATEFP": 6, "PLACEFP": 72632, "PLACENS": 2807036, "GEOID": 672632, "NAME": "Somis", "NAMELSAD": "Somis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8683406, "AWATER": 0, "INTPTLAT": 34.2652625, "INTPTLON": -118.9984062, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -118.992920, 34.261757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 26, "felt:has_geometry": true, "felt:h3_index": 644747137748173861, "STATEFP": 6, "PLACEFP": 49138, "PLACENS": 2411157, "GEOID": 649138, "NAMELSAD": "Moorpark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31796168, "AWATER": 488806, "INTPTLAT": 34.285942, "INTPTLON": -118.8770396, "NAME": "Moorpark,Santa Rosa Valley", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 34.279914 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 640, "felt:has_geometry": true, "felt:h3_index": 644747138005393675, "STATEFP": 6, "PLACEFP": 11656, "PLACENS": 2407978, "GEOID": 611656, "NAME": "Casa Conejo", "NAMELSAD": "Casa Conejo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1221471, "AWATER": 0, "INTPTLAT": 34.184731, "INTPTLON": -118.9445166, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -118.937988, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 30, "felt:has_geometry": true, "felt:h3_index": 644747138103846309, "STATEFP": 6, "PLACEFP": 10046, "PLACENS": 2409966, "GEOID": 610046, "NAME": "Camarillo", "NAMELSAD": "Camarillo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50986168, "AWATER": 42884, "INTPTLAT": 34.2218233, "INTPTLON": -119.0321535, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 34.216345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 192, "felt:has_geometry": true, "felt:h3_index": 644747138335401093, "STATEFP": 6, "PLACEFP": 78582, "PLACENS": 2412065, "GEOID": 678582, "NAME": "Thousand Oaks", "NAMELSAD": "Thousand Oaks city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 143115867, "AWATER": 375961, "INTPTLAT": 34.1932896, "INTPTLON": -118.874235, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 34.189086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 272, "felt:has_geometry": true, "felt:h3_index": 644747139012551940, "STATEFP": 6, "PLACEFP": 70042, "PLACENS": 2411826, "GEOID": 670042, "NAME": "Santa Paula", "NAMELSAD": "Santa Paula city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14323012, "AWATER": 423953, "INTPTLAT": 34.35495, "INTPTLON": -119.0662804, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -119.058838, 34.352507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1383, "felt:has_geometry": true, "felt:h3_index": 644747139090582170, "STATEFP": 6, "PLACEFP": 70322, "PLACENS": 2585446, "GEOID": 670322, "NAMELSAD": "Saticoy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 968248, "AWATER": 796, "INTPTLAT": 34.2824692, "INTPTLON": -119.1428442, "NAME": "Saticoy,El Rio", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -119.135742, 34.279914 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 191, "felt:has_geometry": true, "felt:h3_index": 644747140464139555, "STATEFP": 6, "PLACEFP": 72016, "PLACENS": 2411904, "GEOID": 672016, "NAME": "Simi Valley", "NAMELSAD": "Simi Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107601139, "AWATER": 1831566, "INTPTLAT": 34.2668875, "INTPTLON": -118.7484575, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -118.740234, 34.261757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 504, "felt:has_geometry": true, "felt:h3_index": 644747141745695387, "STATEFP": 6, "PLACEFP": 1290, "PLACENS": 2407732, "GEOID": 601290, "NAME": "Altadena", "NAMELSAD": "Altadena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21924372, "AWATER": 40734, "INTPTLAT": 34.1922117, "INTPTLON": -118.1355893, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -118.135986, 34.189086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 126, "felt:has_geometry": true, "felt:h3_index": 644747142268297243, "STATEFP": 6, "PLACEFP": 68224, "PLACENS": 2411799, "GEOID": 668224, "NAMELSAD": "San Marino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9753267, "AWATER": 16339, "INTPTLAT": 34.1226714, "INTPTLON": -118.1129107, "NAME": "San Marino,San Pasqual,South Pasadena", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -118.114014, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 434, "felt:has_geometry": true, "felt:h3_index": 644747142494357794, "STATEFP": 6, "PLACEFP": 56000, "PLACENS": 2411379, "GEOID": 656000, "NAME": "Pasadena", "NAMELSAD": "Pasadena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59466031, "AWATER": 366889, "INTPTLAT": 34.1606016, "INTPTLON": -118.1379537, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -118.135986, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 17, "felt:has_geometry": true, "felt:h3_index": 644747142573379811, "STATEFP": 6, "PLACEFP": 71806, "PLACENS": 2411897, "GEOID": 671806, "NAMELSAD": "Sierra Madre city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7643252, "AWATER": 10258, "INTPTLAT": 34.1687705, "INTPTLON": -118.0502158, "NAME": "Sierra Madre,East Pasadena,Arcadia", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -118.048096, 34.170908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 127, "felt:has_geometry": true, "felt:h3_index": 644747143423834323, "STATEFP": 6, "PLACEFP": 8954, "PLACENS": 2409939, "GEOID": 608954, "NAME": "Burbank", "NAMELSAD": "Burbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 44848115, "AWATER": 94723, "INTPTLAT": 34.1900793, "INTPTLON": -118.3264045, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -118.322754, 34.189086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 995, "felt:has_geometry": true, "felt:h3_index": 644747143617877316, "STATEFP": 6, "PLACEFP": 39045, "PLACENS": 2408503, "GEOID": 639045, "NAMELSAD": "La Crescenta-Montrose CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8878978, "AWATER": 28793, "INTPTLAT": 34.233016, "INTPTLON": -118.2357737, "NAME": "La Crescenta-Montrose,La Cañada Flintridge", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -118.234863, 34.234512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1425, "felt:has_geometry": true, "felt:h3_index": 644747146064096371, "STATEFP": 6, "PLACEFP": 73276, "PLACENS": 2408771, "GEOID": 673276, "NAMELSAD": "South San Gabriel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2160330, "AWATER": 685, "INTPTLAT": 34.0477943, "INTPTLON": -118.095678, "NAME": "South San Gabriel,Montebello", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -118.092041, 34.043557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 139, "felt:has_geometry": true, "felt:h3_index": 644747146190761301, "STATEFP": 6, "PLACEFP": 884, "PLACENS": 2409681, "GEOID": 600884, "NAMELSAD": "Alhambra city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19764463, "AWATER": 1730, "INTPTLAT": 34.0835711, "INTPTLON": -118.1364436, "NAME": "Alhambra,Monterey Park", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -118.135986, 34.079962 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 120, "felt:has_geometry": true, "felt:h3_index": 644747146297436835, "STATEFP": 6, "PLACEFP": 72996, "PLACENS": 2411934, "GEOID": 672996, "NAMELSAD": "South El Monte city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7364933, "AWATER": 14107, "INTPTLAT": 34.0503775, "INTPTLON": -118.048384, "NAME": "South El Monte,Avocado Heights", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -118.048096, 34.043557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 145, "felt:has_geometry": true, "felt:h3_index": 644747146431773787, "STATEFP": 6, "PLACEFP": 67042, "PLACENS": 2411787, "GEOID": 667042, "NAMELSAD": "San Gabriel city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10732387, "AWATER": 1750, "INTPTLAT": 34.0946359, "INTPTLON": -118.0984687, "NAME": "San Gabriel,Temple City,East San Gabriel,Rosemead", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -118.092041, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 149, "felt:has_geometry": true, "felt:h3_index": 644747146589438262, "STATEFP": 6, "PLACEFP": 56924, "PLACENS": 2411417, "GEOID": 656924, "NAMELSAD": "Pico Rivera city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21536859, "AWATER": 1518068, "INTPTLAT": 33.9895238, "INTPTLON": -118.0892952, "NAME": "Pico Rivera,Downey,Bell Gardens", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -118.092041, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 770, "felt:has_geometry": true, "felt:h3_index": 644747146735274539, "STATEFP": 6, "PLACEFP": 20802, "PLACENS": 2408711, "GEOID": 620802, "NAMELSAD": "East Los Angeles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19303560, "AWATER": 11013, "INTPTLAT": 34.0315059, "INTPTLON": -118.1685666, "NAME": "East Los Angeles,Maywood,Commerce", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 34.025348 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1345, "felt:has_geometry": true, "felt:h3_index": 644747146872339478, "STATEFP": 6, "PLACEFP": 62860, "PLACENS": 2583098, "GEOID": 662860, "NAMELSAD": "Rose Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1128791, "AWATER": 0, "INTPTLAT": 34.0090124, "INTPTLON": -118.041909, "NAME": "Rose Hills,West Whittier-Los Nietos,Whittier", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 34.007135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 43, "felt:has_geometry": true, "felt:h3_index": 644747147539074405, "STATEFP": 6, "PLACEFP": 30000, "PLACENS": 2410597, "GEOID": 630000, "NAME": "Glendale", "NAMELSAD": "Glendale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78940369, "AWATER": 330542, "INTPTLAT": 34.1813929, "INTPTLON": -118.2458301, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -118.245850, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 122, "felt:has_geometry": true, "felt:h3_index": 644747147783517546, "STATEFP": 6, "PLACEFP": 84410, "PLACENS": 2412221, "GEOID": 684410, "NAME": "West Hollywood", "NAMELSAD": "West Hollywood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4888800, "AWATER": 0, "INTPTLAT": 34.0882676, "INTPTLON": -118.3718315, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -118.366699, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1528, "felt:has_geometry": true, "felt:h3_index": 644747148233723293, "STATEFP": 6, "PLACEFP": 82815, "PLACENS": 2409516, "GEOID": 682815, "NAME": "Vincent", "NAMELSAD": "Vincent CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3814588, "AWATER": 0, "INTPTLAT": 34.0982678, "INTPTLON": -117.9238011, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -117.916260, 34.098159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 451, "felt:has_geometry": true, "felt:h3_index": 644747148296010002, "STATEFP": 6, "PLACEFP": 48648, "PLACENS": 2411138, "GEOID": 648648, "NAMELSAD": "Monrovia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35306882, "AWATER": 282054, "INTPTLAT": 34.1639844, "INTPTLON": -117.9846459, "NAME": "Monrovia,Bradbury,Duarte", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -117.982178, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 5, "felt:has_geometry": true, "felt:h3_index": 644747148491540618, "STATEFP": 6, "PLACEFP": 30014, "PLACENS": 2410601, "GEOID": 630014, "NAMELSAD": "Glendora city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50531741, "AWATER": 400123, "INTPTLAT": 34.1449643, "INTPTLON": -117.8478035, "NAME": "Glendora,Charter Oak,Citrus", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -117.850342, 34.143635 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 128, "felt:has_geometry": true, "felt:h3_index": 644747148639192686, "STATEFP": 6, "PLACEFP": 3386, "PLACENS": 2409768, "GEOID": 603386, "NAME": "Azusa", "NAMELSAD": "Azusa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25022011, "AWATER": 32168, "INTPTLAT": 34.1385241, "INTPTLON": -117.912253, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -117.905273, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1561, "felt:has_geometry": true, "felt:h3_index": 644747148707437168, "STATEFP": 6, "PLACEFP": 84774, "PLACENS": 2409564, "GEOID": 684774, "NAMELSAD": "West Puente Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4842002, "AWATER": 2700, "INTPTLAT": 34.0522802, "INTPTLON": -117.9667167, "NAME": "West Puente Valley,La Puente,Industry,Valinda", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -117.960205, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1198, "felt:has_geometry": true, "felt:h3_index": 644747148860459248, "STATEFP": 6, "PLACEFP": 51820, "PLACENS": 2408938, "GEOID": 651820, "NAMELSAD": "North El Monte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1101654, "AWATER": 0, "INTPTLAT": 34.1029266, "INTPTLON": -118.0238624, "NAME": "North El Monte,Irwindale,South Monrovia Island,Mayflower Village,El Monte,Baldwin Park", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -118.026123, 34.098159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 447, "felt:has_geometry": true, "felt:h3_index": 644747149015418564, "STATEFP": 6, "PLACEFP": 16742, "PLACENS": 2410251, "GEOID": 616742, "NAMELSAD": "Covina city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18220783, "AWATER": 32773, "INTPTLAT": 34.0904746, "INTPTLON": -117.8821434, "NAME": "Covina,West Covina", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 968, "felt:has_geometry": true, "felt:h3_index": 644747194024372355, "STATEFP": 6, "PLACEFP": 37554, "PLACENS": 2408454, "GEOID": 637554, "NAME": "Joshua Tree", "NAMELSAD": "Joshua Tree CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 93463461, "AWATER": 0, "INTPTLAT": 34.1236329, "INTPTLON": -116.3128622, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -116.312256, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 933, "felt:has_geometry": true, "felt:h3_index": 644747194572775696, "STATEFP": 6, "PLACEFP": 34392, "PLACENS": 2629366, "GEOID": 634392, "NAME": "Homestead Valley", "NAMELSAD": "Homestead Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87686964, "AWATER": 0, "INTPTLAT": 34.2730035, "INTPTLON": -116.4145486, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -116.411133, 34.270836 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 358, "felt:has_geometry": true, "felt:h3_index": 644747196022577172, "STATEFP": 6, "PLACEFP": 80994, "PLACENS": 2412119, "GEOID": 680994, "NAME": "Twentynine Palms", "NAMELSAD": "Twentynine Palms city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 152157672, "AWATER": 0, "INTPTLAT": 34.1478175, "INTPTLON": -116.0659586, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -116.059570, 34.143635 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 361, "felt:has_geometry": true, "felt:h3_index": 644747198802471755, "STATEFP": 6, "PLACEFP": 87056, "PLACENS": 2413524, "GEOID": 687056, "NAME": "Yucca Valley", "NAMELSAD": "Yucca Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103161847, "AWATER": 0, "INTPTLAT": 34.1233473, "INTPTLON": -116.4215573, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -116.422119, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 963, "felt:has_geometry": true, "felt:h3_index": 644747236764377309, "STATEFP": 6, "PLACEFP": 37400, "PLACENS": 2408446, "GEOID": 637400, "NAMELSAD": "Johannesburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6354495, "AWATER": 0, "INTPTLAT": 35.3718756, "INTPTLON": -117.6418025, "NAME": "Johannesburg,Randsburg", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 35.371135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 284, "felt:has_geometry": true, "felt:h3_index": 644747239564182225, "STATEFP": 6, "PLACEFP": 60704, "PLACENS": 2410944, "GEOID": 660704, "NAME": "Ridgecrest", "NAMELSAD": "Ridgecrest city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 54029088, "AWATER": 1671951, "INTPTLAT": 35.6285421, "INTPTLON": -117.6639923, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -117.663574, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 853, "felt:has_geometry": true, "felt:h3_index": 644747245305307165, "STATEFP": 6, "PLACEFP": 25114, "PLACENS": 2628733, "GEOID": 625114, "NAME": "Fort Irwin", "NAMELSAD": "Fort Irwin CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18040432, "AWATER": 0, "INTPTLAT": 35.2477015, "INTPTLON": -116.6834115, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -116.685791, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1408, "felt:has_geometry": true, "felt:h3_index": 644747264891429038, "STATEFP": 6, "PLACEFP": 71964, "PLACENS": 2583143, "GEOID": 671964, "NAME": "Silver Lakes", "NAMELSAD": "Silver Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13552756, "AWATER": 1165902, "INTPTLAT": 34.7478201, "INTPTLON": -117.3449658, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 364, "felt:has_geometry": true, "felt:h3_index": 644747266452686109, "STATEFP": 6, "PLACEFP": 296, "PLACENS": 2409663, "GEOID": 600296, "NAME": "Adelanto", "NAMELSAD": "Adelanto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 136923866, "AWATER": 41151, "INTPTLAT": 34.5809017, "INTPTLON": -117.4394577, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -117.432861, 34.578952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 275, "felt:has_geometry": true, "felt:h3_index": 644747266610574700, "STATEFP": 6, "PLACEFP": 82590, "PLACENS": 2412156, "GEOID": 682590, "NAME": "Victorville", "NAMELSAD": "Victorville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 190908178, "AWATER": 744967, "INTPTLAT": 34.5277346, "INTPTLON": -117.3535789, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -117.355957, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1174, "felt:has_geometry": true, "felt:h3_index": 644747267111201923, "STATEFP": 6, "PLACEFP": 49684, "PLACENS": 2408883, "GEOID": 649684, "NAME": "Mountain View Acres", "NAMELSAD": "Mountain View Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4114534, "AWATER": 0, "INTPTLAT": 34.4975579, "INTPTLON": -117.3471727, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1197, "felt:has_geometry": true, "felt:h3_index": 644747270804527410, "STATEFP": 6, "PLACEFP": 51812, "PLACENS": 2408937, "GEOID": 651812, "NAME": "North Edwards", "NAMELSAD": "North Edwards CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33012003, "AWATER": 0, "INTPTLAT": 35.0473324, "INTPTLON": -117.8093616, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -117.806396, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 584, "felt:has_geometry": true, "felt:h3_index": 644747270943253810, "STATEFP": 6, "PLACEFP": 7568, "PLACENS": 2407886, "GEOID": 607568, "NAME": "Boron", "NAMELSAD": "Boron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35516742, "AWATER": 24136, "INTPTLAT": 35.0197799, "INTPTLON": -117.6659382, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -117.663574, 35.021000 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 366, "felt:has_geometry": true, "felt:h3_index": 644747274542948770, "STATEFP": 6, "PLACEFP": 9780, "PLACENS": 2409960, "GEOID": 609780, "NAME": "California City", "NAMELSAD": "California City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 527395596, "AWATER": 174458, "INTPTLAT": 35.1465903, "INTPTLON": -117.8693463, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 35.146863 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 790, "felt:has_geometry": true, "felt:h3_index": 644747276044088179, "STATEFP": 6, "PLACEFP": 21600, "PLACENS": 2408048, "GEOID": 621600, "NAME": "Edwards AFB", "NAMELSAD": "Edwards AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44377479, "AWATER": 1729, "INTPTLAT": 34.9024079, "INTPTLON": -117.9218689, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -117.916260, 34.903953 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1049, "felt:has_geometry": true, "felt:h3_index": 644747280253347606, "STATEFP": 6, "PLACEFP": 41194, "PLACENS": 2408601, "GEOID": 641194, "NAME": "Lenwood", "NAMELSAD": "Lenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5389420, "AWATER": 0, "INTPTLAT": 34.8860557, "INTPTLON": -117.1077727, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -117.103271, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 57, "felt:has_geometry": true, "felt:h3_index": 644747280593375522, "STATEFP": 6, "PLACEFP": 4030, "PLACENS": 2409790, "GEOID": 604030, "NAME": "Barstow", "NAMELSAD": "Barstow city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 106964252, "AWATER": 112301, "INTPTLAT": 34.8669866, "INTPTLON": -117.0430349, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -117.037354, 34.867905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1587, "felt:has_geometry": true, "felt:h3_index": 644747281532308337, "STATEFP": 6, "PLACEFP": 86720, "PLACENS": 2805257, "GEOID": 686720, "NAME": "Yermo", "NAMELSAD": "Yermo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1680240, "AWATER": 12788, "INTPTLAT": 34.9066556, "INTPTLON": -116.8232743, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -116.817627, 34.903953 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 342, "felt:has_geometry": true, "felt:h3_index": 644747298923432365, "STATEFP": 6, "PLACEFP": 58520, "PLACENS": 2411480, "GEOID": 658520, "NAME": "Poway", "NAMELSAD": "Poway city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 101210495, "AWATER": 223435, "INTPTLAT": 32.9876765, "INTPTLON": -117.0218144, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -117.015381, 32.981020 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 482, "felt:has_geometry": true, "felt:h3_index": 644747299395028361, "STATEFP": 6, "PLACEFP": 70224, "PLACENS": 2411830, "GEOID": 670224, "NAME": "Santee", "NAMELSAD": "Santee city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42831663, "AWATER": 470863, "INTPTLAT": 32.8549903, "INTPTLON": -116.9860556, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -116.982422, 32.851903 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 372, "felt:has_geometry": true, "felt:h3_index": 644747299588038765, "STATEFP": 6, "PLACEFP": 72506, "PLACENS": 2411923, "GEOID": 672506, "NAME": "Solana Beach", "NAMELSAD": "Solana Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8841642, "AWATER": 270081, "INTPTLAT": 32.9913002, "INTPTLON": -117.2580617, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 339, "felt:has_geometry": true, "felt:h3_index": 644747299725936744, "STATEFP": 6, "PLACEFP": 22678, "PLACENS": 2410440, "GEOID": 622678, "NAME": "Encinitas", "NAMELSAD": "Encinitas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 49353552, "AWATER": 2854559, "INTPTLAT": 33.0506323, "INTPTLON": -117.2636163, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 33.045508 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 822, "felt:has_geometry": true, "felt:h3_index": 644747299910195546, "STATEFP": 6, "PLACEFP": 23150, "PLACENS": 2408101, "GEOID": 623150, "NAME": "Fairbanks Ranch", "NAMELSAD": "Fairbanks Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13195969, "AWATER": 12376, "INTPTLAT": 32.9915955, "INTPTLON": -117.186611, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -117.180176, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1315, "felt:has_geometry": true, "felt:h3_index": 644747300032824901, "STATEFP": 6, "PLACEFP": 59584, "PLACENS": 2409138, "GEOID": 659584, "NAME": "Rancho Santa Fe", "NAMELSAD": "Rancho Santa Fe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17384981, "AWATER": 188500, "INTPTLAT": 33.025814, "INTPTLON": -117.198148, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -117.191162, 33.027088 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 412, "felt:has_geometry": true, "felt:h3_index": 644747300151053218, "STATEFP": 6, "PLACEFP": 18506, "PLACENS": 2410314, "GEOID": 618506, "NAME": "Del Mar", "NAMELSAD": "Del Mar city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4446743, "AWATER": 141302, "INTPTLAT": 32.9639446, "INTPTLON": -117.2598039, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 32.962586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 302, "felt:has_geometry": true, "felt:h3_index": 644747300973930090, "STATEFP": 6, "PLACEFP": 16378, "PLACENS": 2410233, "GEOID": 616378, "NAME": "Coronado", "NAMELSAD": "Coronado city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20215844, "AWATER": 63957492, "INTPTLAT": 32.6576246, "INTPTLON": -117.1565392, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 32.657876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 318, "felt:has_geometry": true, "felt:h3_index": 644747302892672018, "STATEFP": 6, "PLACEFP": 41124, "PLACENS": 2410818, "GEOID": 641124, "NAME": "Lemon Grove", "NAMELSAD": "Lemon Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10045731, "AWATER": 0, "INTPTLAT": 32.7330712, "INTPTLON": -117.0344134, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -117.026367, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 320, "felt:has_geometry": true, "felt:h3_index": 644747302935828405, "STATEFP": 6, "PLACEFP": 66000, "PLACENS": 2411782, "GEOID": 666000, "NAME": "San Diego", "NAMELSAD": "San Diego city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 844031824, "AWATER": 120532755, "INTPTLAT": 32.814977, "INTPTLON": -117.1355615, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 32.814978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 340, "felt:has_geometry": true, "felt:h3_index": 644747303065095330, "STATEFP": 6, "PLACEFP": 40004, "PLACENS": 2411576, "GEOID": 640004, "NAMELSAD": "La Mesa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23546769, "AWATER": 12381, "INTPTLAT": 32.7694947, "INTPTLON": -117.0219232, "NAME": "La Mesa,Casa de Oro-Mount Helix", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -117.015381, 32.768800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 481, "felt:has_geometry": true, "felt:h3_index": 644747303393477936, "STATEFP": 6, "PLACEFP": 50398, "PLACENS": 2411216, "GEOID": 650398, "NAME": "National City", "NAMELSAD": "National City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19030794, "AWATER": 4772029, "INTPTLAT": 32.6658617, "INTPTLON": -117.097361, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -117.092285, 32.667125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1031, "felt:has_geometry": true, "felt:h3_index": 644747303627811586, "STATEFP": 6, "PLACEFP": 40326, "PLACENS": 2408510, "GEOID": 640326, "NAMELSAD": "La Presa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14238420, "AWATER": 1349731, "INTPTLAT": 32.7123147, "INTPTLON": -117.0037099, "NAME": "La Presa,Bonita", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -117.004395, 32.713355 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 629, "felt:has_geometry": true, "felt:h3_index": 644747307116790155, "STATEFP": 6, "PLACEFP": 10561, "PLACENS": 2407947, "GEOID": 610561, "NAME": "Camp Pendleton South", "NAMELSAD": "Camp Pendleton South CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17965903, "AWATER": 1062655, "INTPTLAT": 33.2318244, "INTPTLON": -117.391998, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 33.229498 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 341, "felt:has_geometry": true, "felt:h3_index": 644747307456168565, "STATEFP": 6, "PLACEFP": 53322, "PLACENS": 2411301, "GEOID": 653322, "NAME": "Oceanside", "NAMELSAD": "Oceanside city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 106883484, "AWATER": 2297570, "INTPTLAT": 33.2246006, "INTPTLON": -117.3062909, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -117.301025, 33.220308 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 501, "felt:has_geometry": true, "felt:h3_index": 644747314123622017, "STATEFP": 6, "PLACEFP": 1192, "PLACENS": 2407726, "GEOID": 601192, "NAME": "Alpine", "NAMELSAD": "Alpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69374324, "AWATER": 1475, "INTPTLAT": 32.842487, "INTPTLON": -116.7559106, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -116.751709, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1310, "felt:has_geometry": true, "felt:h3_index": 644747315001812819, "STATEFP": 6, "PLACEFP": 59346, "PLACENS": 2409128, "GEOID": 659346, "NAME": "Ramona", "NAMELSAD": "Ramona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 99548576, "AWATER": 49343, "INTPTLAT": 33.0458112, "INTPTLON": -116.8775465, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 33.045508 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1367, "felt:has_geometry": true, "felt:h3_index": 644747317368534028, "STATEFP": 6, "PLACEFP": 66004, "PLACENS": 2409252, "GEOID": 666004, "NAME": "San Diego Country Estates", "NAMELSAD": "San Diego Country Estates CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43471183, "AWATER": 0, "INTPTLAT": 33.0093755, "INTPTLON": -116.7873141, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 33.008663 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1609, "felt:has_geometry": true, "felt:h3_index": 644747318909765468, "STATEFP": 6, "PLACEFP": 85992, "PLACENS": 2409614, "GEOID": 685992, "NAMELSAD": "Winter Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11447561, "AWATER": 1027, "INTPTLAT": 32.8375118, "INTPTLON": -116.9265552, "NAME": "Winter Gardens,Lakeside,Granite Hills", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -116.927490, 32.833443 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 821, "felt:has_geometry": true, "felt:h3_index": 644747319026607748, "STATEFP": 6, "PLACEFP": 23000, "PLACENS": 2628813, "GEOID": 623000, "NAME": "Eucalyptus Hills", "NAMELSAD": "Eucalyptus Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12324306, "AWATER": 38920, "INTPTLAT": 32.8851767, "INTPTLON": -116.9449826, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -116.938477, 32.879587 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 912, "felt:has_geometry": true, "felt:h3_index": 644747319251122776, "STATEFP": 6, "PLACEFP": 32044, "PLACENS": 2408350, "GEOID": 632044, "NAME": "Harbison Canyon", "NAMELSAD": "Harbison Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26085235, "AWATER": 0, "INTPTLAT": 32.8272739, "INTPTLON": -116.8380698, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -116.839600, 32.824211 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1314, "felt:has_geometry": true, "felt:h3_index": 644747319495804516, "STATEFP": 6, "PLACEFP": 59550, "PLACENS": 2409137, "GEOID": 659550, "NAME": "Rancho San Diego", "NAMELSAD": "Rancho San Diego CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22523642, "AWATER": 0, "INTPTLAT": 32.762405, "INTPTLON": -116.9196906, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -116.916504, 32.759562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 338, "felt:has_geometry": true, "felt:h3_index": 644747319627887118, "STATEFP": 6, "PLACEFP": 21712, "PLACENS": 2410406, "GEOID": 621712, "NAMELSAD": "El Cajon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37579662, "AWATER": 0, "INTPTLAT": 32.8016733, "INTPTLON": -116.9604685, "NAME": "El Cajon,Bostonia", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -116.960449, 32.796510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 711, "felt:has_geometry": true, "felt:h3_index": 644747319712212869, "STATEFP": 6, "PLACEFP": 17106, "PLACENS": 2407680, "GEOID": 617106, "NAME": "Crest", "NAMELSAD": "Crest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16913607, "AWATER": 0, "INTPTLAT": 32.8000203, "INTPTLON": -116.8670776, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -116.861572, 32.796510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 737, "felt:has_geometry": true, "felt:h3_index": 644747320189325364, "STATEFP": 6, "PLACEFP": 18940, "PLACENS": 2582992, "GEOID": 618940, "NAME": "Descanso", "NAMELSAD": "Descanso CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49613062, "AWATER": 0, "INTPTLAT": 32.8695654, "INTPTLON": -116.6278783, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -116.619873, 32.870360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1277, "felt:has_geometry": true, "felt:h3_index": 644747320310638465, "STATEFP": 6, "PLACEFP": 57260, "PLACENS": 2409070, "GEOID": 657260, "NAME": "Pine Valley", "NAMELSAD": "Pine Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18555854, "AWATER": 0, "INTPTLAT": 32.841513, "INTPTLON": -116.5107062, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -116.510010, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1608, "felt:has_geometry": true, "felt:h3_index": 644747322470885632, "STATEFP": 6, "PLACEFP": 81736, "PLACENS": 2409396, "GEOID": 681736, "NAME": "Valley Center", "NAMELSAD": "Valley Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71083460, "AWATER": 0, "INTPTLAT": 33.2329944, "INTPTLON": -117.015763, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -117.015381, 33.229498 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 923, "felt:has_geometry": true, "felt:h3_index": 644747322880239104, "STATEFP": 6, "PLACEFP": 33532, "PLACENS": 2408381, "GEOID": 633532, "NAME": "Hidden Meadows", "NAMELSAD": "Hidden Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17061107, "AWATER": 0, "INTPTLAT": 33.2236343, "INTPTLON": -117.1198258, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 33.220308 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 828, "felt:has_geometry": true, "felt:h3_index": 644747323583501577, "STATEFP": 6, "PLACEFP": 23462, "PLACENS": 2408113, "GEOID": 623462, "NAME": "Fallbrook", "NAMELSAD": "Fallbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45429891, "AWATER": 47337, "INTPTLAT": 33.3742351, "INTPTLON": -117.2203748, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -117.213135, 33.376412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 628, "felt:has_geometry": true, "felt:h3_index": 644747323880117952, "STATEFP": 6, "PLACEFP": 10554, "PLACENS": 2407946, "GEOID": 610554, "NAME": "Camp Pendleton Mainside", "NAMELSAD": "Camp Pendleton Mainside CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27834793, "AWATER": 525021, "INTPTLAT": 33.3072088, "INTPTLON": -117.3310482, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -117.322998, 33.302986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 581, "felt:has_geometry": true, "felt:h3_index": 644747323985629586, "STATEFP": 6, "PLACEFP": 7498, "PLACENS": 2407884, "GEOID": 607498, "NAME": "Bonsall", "NAMELSAD": "Bonsall CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35286264, "AWATER": 451966, "INTPTLAT": 33.2748761, "INTPTLON": -117.1918628, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -117.191162, 33.275435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1240, "felt:has_geometry": true, "felt:h3_index": 644747325903749669, "STATEFP": 6, "PLACEFP": 55058, "PLACENS": 2585656, "GEOID": 655058, "NAME": "Pala", "NAMELSAD": "Pala CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14449444, "AWATER": 0, "INTPTLAT": 33.3639256, "INTPTLON": -117.0677853, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1308, "felt:has_geometry": true, "felt:h3_index": 644747326050231120, "STATEFP": 6, "PLACEFP": 59248, "PLACENS": 2409123, "GEOID": 659248, "NAME": "Rainbow", "NAMELSAD": "Rainbow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28633080, "AWATER": 0, "INTPTLAT": 33.4098728, "INTPTLON": -117.1394401, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 33.403931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 914, "felt:has_geometry": true, "felt:h3_index": 644747326632756579, "STATEFP": 6, "PLACEFP": 32212, "PLACENS": 2813413, "GEOID": 632212, "NAME": "Harmony Grove", "NAMELSAD": "Harmony Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7980769, "AWATER": 0, "INTPTLAT": 33.1007172, "INTPTLON": -117.1379923, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 33.100745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 303, "felt:has_geometry": true, "felt:h3_index": 644747326829808690, "STATEFP": 6, "PLACEFP": 22804, "PLACENS": 2410455, "GEOID": 622804, "NAME": "Escondido", "NAMELSAD": "Escondido city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 96726218, "AWATER": 276445, "INTPTLAT": 33.1330533, "INTPTLON": -117.074043, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 33.128351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 796, "felt:has_geometry": true, "felt:h3_index": 644747327091146763, "STATEFP": 6, "PLACEFP": 21916, "PLACENS": 2813412, "GEOID": 621916, "NAMELSAD": "Elfin Forest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5243843, "AWATER": 0, "INTPTLAT": 33.0812315, "INTPTLON": -117.1774428, "NAME": "Elfin Forest,Del Dios", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -117.180176, 33.082337 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 343, "felt:has_geometry": true, "felt:h3_index": 644747327819540016, "STATEFP": 6, "PLACEFP": 68196, "PLACENS": 2411797, "GEOID": 668196, "NAME": "San Marcos", "NAMELSAD": "San Marcos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 63624545, "AWATER": 52493, "INTPTLAT": 33.1325674, "INTPTLON": -117.1698921, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -117.169189, 33.128351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 349, "felt:has_geometry": true, "felt:h3_index": 644747327971027348, "STATEFP": 6, "PLACEFP": 82996, "PLACENS": 2412161, "GEOID": 682996, "NAME": "Vista", "NAMELSAD": "Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48551300, "AWATER": 0, "INTPTLAT": 33.1896819, "INTPTLON": -117.2385799, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -117.235107, 33.183537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 480, "felt:has_geometry": true, "felt:h3_index": 644747328246928626, "STATEFP": 6, "PLACEFP": 11194, "PLACENS": 2409984, "GEOID": 611194, "NAME": "Carlsbad", "NAMELSAD": "Carlsbad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 97932263, "AWATER": 3378580, "INTPTLAT": 33.1292841, "INTPTLON": -117.2841831, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 33.128351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1021, "felt:has_geometry": true, "felt:h3_index": 644747328301214488, "STATEFP": 6, "PLACEFP": 39724, "PLACENS": 2408550, "GEOID": 639724, "NAME": "Lake San Marcos", "NAMELSAD": "Lake San Marcos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4420806, "AWATER": 266467, "INTPTLAT": 33.1223616, "INTPTLON": -117.2085756, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -117.202148, 33.119150 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 319, "felt:has_geometry": true, "felt:h3_index": 644747349465553050, "STATEFP": 6, "PLACEFP": 13392, "PLACENS": 2409461, "GEOID": 613392, "NAME": "Chula Vista", "NAMELSAD": "Chula Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 128560729, "AWATER": 6360807, "INTPTLAT": 32.6276701, "INTPTLON": -117.0151696, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -117.015381, 32.620870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 304, "felt:has_geometry": true, "felt:h3_index": 644747349727826304, "STATEFP": 6, "PLACEFP": 36294, "PLACENS": 2410098, "GEOID": 636294, "NAME": "Imperial Beach", "NAMELSAD": "Imperial Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11112520, "AWATER": 304504, "INTPTLAT": 32.5691398, "INTPTLON": -117.1149206, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 32.565333 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1607, "felt:has_geometry": true, "felt:h3_index": 644747351250961776, "STATEFP": 6, "PLACEFP": 73696, "PLACENS": 2408796, "GEOID": 673696, "NAME": "Spring Valley", "NAMELSAD": "Spring Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19015909, "AWATER": 88959, "INTPTLAT": 32.7299478, "INTPTLON": -116.9764015, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -116.971436, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 960, "felt:has_geometry": true, "felt:h3_index": 644747351573707558, "STATEFP": 6, "PLACEFP": 37120, "PLACENS": 2408438, "GEOID": 637120, "NAME": "Jamul", "NAMELSAD": "Jamul CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43597950, "AWATER": 0, "INTPTLAT": 32.71841, "INTPTLON": -116.870862, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 32.713355 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 415, "felt:has_geometry": true, "felt:h3_index": 644747371654271030, "STATEFP": 6, "PLACEFP": 3274, "PLACENS": 2409763, "GEOID": 603274, "NAME": "Avalon", "NAMELSAD": "Avalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7473920, "AWATER": 12349954, "INTPTLAT": 33.3433354, "INTPTLON": -118.3176149, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -118.311768, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 236, "felt:has_geometry": true, "felt:h3_index": 644747384394364529, "STATEFP": 6, "PLACEFP": 39178, "PLACENS": 2411595, "GEOID": 639178, "NAME": "Laguna Beach", "NAMELSAD": "Laguna Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23037592, "AWATER": 2512773, "INTPTLAT": 33.54337, "INTPTLON": -117.7618013, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -117.762451, 33.541395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 238, "felt:has_geometry": true, "felt:h3_index": 644747384789207693, "STATEFP": 6, "PLACEFP": 39259, "PLACENS": 2411598, "GEOID": 639259, "NAMELSAD": "Laguna Woods city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8655356, "AWATER": 2375, "INTPTLAT": 33.6120583, "INTPTLON": -117.7303193, "NAME": "Laguna Woods,Aliso Viejo,Laguna Hills", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -117.729492, 33.605470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 257, "felt:has_geometry": true, "felt:h3_index": 644747385239448646, "STATEFP": 6, "PLACEFP": 39248, "PLACENS": 2411597, "GEOID": 639248, "NAMELSAD": "Laguna Niguel city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38165700, "AWATER": 133550, "INTPTLAT": 33.5286538, "INTPTLON": -117.7012525, "NAME": "Laguna Niguel,Dana Point", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -117.696533, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 253, "felt:has_geometry": true, "felt:h3_index": 644747385956222806, "STATEFP": 6, "PLACEFP": 16532, "PLACENS": 2410239, "GEOID": 616532, "NAME": "Costa Mesa", "NAMELSAD": "Costa Mesa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40937010, "AWATER": 24554, "INTPTLAT": 33.6659055, "INTPTLON": -117.9123358, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -117.905273, 33.660353 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 473, "felt:has_geometry": true, "felt:h3_index": 644747386286516806, "STATEFP": 6, "PLACEFP": 51182, "PLACENS": 2411250, "GEOID": 651182, "NAME": "Newport Beach", "NAMELSAD": "Newport Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61634972, "AWATER": 75434150, "INTPTLAT": 33.597332, "INTPTLON": -117.890352, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1552, "felt:has_geometry": true, "felt:h3_index": 644747391002831275, "STATEFP": 6, "PLACEFP": 84144, "PLACENS": 2409546, "GEOID": 684144, "NAMELSAD": "West Carson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5868539, "AWATER": 33313, "INTPTLAT": 33.8231392, "INTPTLON": -118.2936849, "NAME": "West Carson,Lomita", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -118.289795, 33.824794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 135, "felt:has_geometry": true, "felt:h3_index": 644747391127717476, "STATEFP": 6, "PLACEFP": 71876, "PLACENS": 2411899, "GEOID": 671876, "NAMELSAD": "Signal Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5670582, "AWATER": 4445, "INTPTLAT": 33.803461, "INTPTLON": -118.1697347, "NAME": "Signal Hill,Long Beach", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 317, "felt:has_geometry": true, "felt:h3_index": 644747391231408362, "STATEFP": 6, "PLACEFP": 11530, "PLACENS": 2409399, "GEOID": 611530, "NAME": "Carson", "NAMELSAD": "Carson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48513002, "AWATER": 612009, "INTPTLAT": 33.840367, "INTPTLON": -118.2495736, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -118.245850, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 12, "felt:has_geometry": true, "felt:h3_index": 644747391507016790, "STATEFP": 6, "PLACEFP": 62602, "PLACENS": 2410986, "GEOID": 662602, "NAMELSAD": "Rolling Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7744892, "AWATER": 0, "INTPTLAT": 33.7600164, "INTPTLON": -118.3471684, "NAME": "Rolling Hills,Rolling Hills Estates", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -118.344727, 33.760882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 431, "felt:has_geometry": true, "felt:h3_index": 644747391939978161, "STATEFP": 6, "PLACEFP": 33364, "PLACENS": 2410749, "GEOID": 633364, "NAME": "Hermosa Beach", "NAMELSAD": "Hermosa Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3692737, "AWATER": 12981958, "INTPTLAT": 33.8698189, "INTPTLON": -118.4052955, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -118.399658, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 499, "felt:has_geometry": true, "felt:h3_index": 644747392208083680, "STATEFP": 6, "PLACEFP": 1150, "PLACENS": 2407724, "GEOID": 601150, "NAMELSAD": "Alondra Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2861316, "AWATER": 93791, "INTPTLAT": 33.8901549, "INTPTLON": -118.3356779, "NAME": "Alondra Park,Lawndale,Redondo Beach", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -118.333740, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 429, "felt:has_geometry": true, "felt:h3_index": 644747392312425654, "STATEFP": 6, "PLACEFP": 22412, "PLACENS": 2410417, "GEOID": 622412, "NAMELSAD": "El Segundo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14113054, "AWATER": 13722008, "INTPTLAT": 33.9103673, "INTPTLON": -118.4250795, "NAME": "El Segundo,Manhattan Beach", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -118.421631, 33.906896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 11, "felt:has_geometry": true, "felt:h3_index": 644747392549282996, "STATEFP": 6, "PLACEFP": 55380, "PLACENS": 2411363, "GEOID": 655380, "NAME": "Palos Verdes Estates", "NAMELSAD": "Palos Verdes Estates city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12369151, "AWATER": 33350007, "INTPTLAT": 33.774271, "INTPTLON": -118.4257542, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -118.421631, 33.770015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 175, "felt:has_geometry": true, "felt:h3_index": 644747392745152580, "STATEFP": 6, "PLACEFP": 80000, "PLACENS": 2412087, "GEOID": 680000, "NAME": "Torrance", "NAMELSAD": "Torrance city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 53136568, "AWATER": 10607454, "INTPTLAT": 33.8304529, "INTPTLON": -118.3566183, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -118.355713, 33.824794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 410, "felt:has_geometry": true, "felt:h3_index": 644747392977549932, "STATEFP": 6, "PLACEFP": 2896, "PLACENS": 2409735, "GEOID": 602896, "NAMELSAD": "Artesia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4196986, "AWATER": 0, "INTPTLAT": 33.8675912, "INTPTLON": -118.0806338, "NAME": "Artesia,Cerritos,Lakewood", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 33.861293 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 46, "felt:has_geometry": true, "felt:h3_index": 644747393191424750, "STATEFP": 6, "PLACEFP": 55618, "PLACENS": 2411369, "GEOID": 655618, "NAMELSAD": "Paramount city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12240740, "AWATER": 283684, "INTPTLAT": 33.8988835, "INTPTLON": -118.1666294, "NAME": "Paramount,Bellflower", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.897777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 9, "felt:has_geometry": true, "felt:h3_index": 644747393297385361, "STATEFP": 6, "PLACEFP": 40032, "PLACENS": 2411577, "GEOID": 640032, "NAMELSAD": "La Mirada city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20262797, "AWATER": 44394, "INTPTLAT": 33.9020453, "INTPTLON": -118.0089608, "NAME": "La Mirada,Buena Park", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -118.004150, 33.897777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 14, "felt:has_geometry": true, "felt:h3_index": 644747393419727128, "STATEFP": 6, "PLACEFP": 69154, "PLACENS": 2411823, "GEOID": 669154, "NAMELSAD": "Santa Fe Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22942025, "AWATER": 101085, "INTPTLAT": 33.9335648, "INTPTLON": -118.0626113, "NAME": "Santa Fe Springs,Norwalk", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -118.059082, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 254, "felt:has_geometry": true, "felt:h3_index": 644747393783649610, "STATEFP": 6, "PLACEFP": 17750, "PLACENS": 2410282, "GEOID": 617750, "NAMELSAD": "Cypress city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17130355, "AWATER": 22347, "INTPTLAT": 33.8184768, "INTPTLON": -118.0383074, "NAME": "Cypress,Hawaiian Gardens,La Palma,Los Alamitos", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 33.815666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1562, "felt:has_geometry": true, "felt:h3_index": 644747394123115086, "STATEFP": 6, "PLACEFP": 84780, "PLACENS": 2409548, "GEOID": 684780, "NAMELSAD": "West Rancho Dominguez CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10284759, "AWATER": 13545, "INTPTLAT": 33.9043316, "INTPTLON": -118.2677765, "NAME": "West Rancho Dominguez,West Athens,Willowbrook", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -118.267822, 33.897777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1526, "felt:has_geometry": true, "felt:h3_index": 644747394208558448, "STATEFP": 6, "PLACEFP": 82667, "PLACENS": 2409512, "GEOID": 682667, "NAME": "View Park-Windsor Hills", "NAMELSAD": "View Park-Windsor Hills CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4768647, "AWATER": 1987, "INTPTLAT": 33.9944725, "INTPTLON": -118.3477617, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -118.344727, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 152, "felt:has_geometry": true, "felt:h3_index": 644747394329006921, "STATEFP": 6, "PLACEFP": 73080, "PLACENS": 2411935, "GEOID": 673080, "NAMELSAD": "South Gate city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18744410, "AWATER": 303434, "INTPTLAT": 33.9441585, "INTPTLON": -118.1927614, "NAME": "South Gate,Walnut Park,Cudahy,Bell,Lynwood", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 15, "felt:has_geometry": true, "felt:h3_index": 644747394496411456, "STATEFP": 6, "PLACEFP": 82422, "PLACENS": 2412150, "GEOID": 682422, "NAMELSAD": "Vernon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12882252, "AWATER": 476377, "INTPTLAT": 34.001123, "INTPTLON": -118.2108689, "NAME": "Vernon,Florence-Graham,Huntington Park", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 33.998027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 142, "felt:has_geometry": true, "felt:h3_index": 644747394604597965, "STATEFP": 6, "PLACEFP": 28168, "PLACENS": 2410570, "GEOID": 628168, "NAME": "Gardena", "NAMELSAD": "Gardena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15097437, "AWATER": 93629, "INTPTLAT": 33.8944169, "INTPTLON": -118.307522, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1048, "felt:has_geometry": true, "felt:h3_index": 644747394734962224, "STATEFP": 6, "PLACEFP": 41180, "PLACENS": 2408600, "GEOID": 641180, "NAMELSAD": "Lennox CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2831941, "AWATER": 0, "INTPTLAT": 33.9380681, "INTPTLON": -118.3585399, "NAME": "Lennox,Westmont,Inglewood,Del Aire,Hawthorne", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -118.355713, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 144, "felt:has_geometry": true, "felt:h3_index": 644747394863290888, "STATEFP": 6, "PLACEFP": 15044, "PLACENS": 2410213, "GEOID": 615044, "NAMELSAD": "Compton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25971194, "AWATER": 230555, "INTPTLAT": 33.8940467, "INTPTLON": -118.2274687, "NAME": "Compton,East Rancho Dominguez", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -118.223877, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 136, "felt:has_geometry": true, "felt:h3_index": 644747396703175478, "STATEFP": 6, "PLACEFP": 59514, "PLACENS": 2411516, "GEOID": 659514, "NAME": "Rancho Palos Verdes", "NAMELSAD": "Rancho Palos Verdes city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34893929, "AWATER": 67929785, "INTPTLAT": 33.7385168, "INTPTLON": -118.3696845, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -118.366699, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 230, "felt:has_geometry": true, "felt:h3_index": 644747397645512960, "STATEFP": 6, "PLACEFP": 36000, "PLACENS": 2410811, "GEOID": 636000, "NAME": "Huntington Beach", "NAMELSAD": "Huntington Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69882014, "AWATER": 3455277, "INTPTLAT": 33.6980069, "INTPTLON": -118.0038344, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -118.004150, 33.696923 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 227, "felt:has_geometry": true, "felt:h3_index": 644747397679615026, "STATEFP": 6, "PLACEFP": 70686, "PLACENS": 2411851, "GEOID": 670686, "NAMELSAD": "Seal Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29278826, "AWATER": 1340063, "INTPTLAT": 33.7543992, "INTPTLON": -118.0713198, "NAME": "Seal Beach,Rossmoor", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -118.070068, 33.751748 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 741, "felt:has_geometry": true, "felt:h3_index": 644747433847119077, "STATEFP": 6, "PLACEFP": 19024, "PLACENS": 2408665, "GEOID": 619024, "NAME": "Desert Shores", "NAMELSAD": "Desert Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1809312, "AWATER": 294345, "INTPTLAT": 33.4038032, "INTPTLON": -116.0392059, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -116.037598, 33.403931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1361, "felt:has_geometry": true, "felt:h3_index": 644747434590840730, "STATEFP": 6, "PLACEFP": 64308, "PLACENS": 2409243, "GEOID": 664308, "NAME": "Salton Sea Beach", "NAMELSAD": "Salton Sea Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 780215, "AWATER": 0, "INTPTLAT": 33.3758448, "INTPTLON": -116.0113755, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -116.004639, 33.376412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1217, "felt:has_geometry": true, "felt:h3_index": 644747435151144662, "STATEFP": 6, "PLACEFP": 53224, "PLACENS": 2630708, "GEOID": 653224, "NAME": "Oasis", "NAMELSAD": "Oasis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50832299, "AWATER": 0, "INTPTLAT": 33.5275314, "INTPTLON": -116.12611389999999, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -116.125488, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1206, "felt:has_geometry": true, "felt:h3_index": 644747435951268661, "STATEFP": 6, "PLACEFP": 52302, "PLACENS": 2583097, "GEOID": 652302, "NAME": "North Shore", "NAMELSAD": "North Shore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28952350, "AWATER": 13989, "INTPTLAT": 33.5145756, "INTPTLON": -115.9109591, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -115.905762, 33.513919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1123, "felt:has_geometry": true, "felt:h3_index": 644747437084350486, "STATEFP": 6, "PLACEFP": 46660, "PLACENS": 2408811, "GEOID": 646660, "NAME": "Mecca", "NAMELSAD": "Mecca CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18042180, "AWATER": 0, "INTPTLAT": 33.5767084, "INTPTLON": -116.0645275, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -116.059570, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1480, "felt:has_geometry": true, "felt:h3_index": 644747437216367403, "STATEFP": 6, "PLACEFP": 78456, "PLACENS": 2583161, "GEOID": 678456, "NAME": "Thermal", "NAMELSAD": "Thermal CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24307854, "AWATER": 0, "INTPTLAT": 33.6261951, "INTPTLON": -116.1308336, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -116.125488, 33.623768 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1360, "felt:has_geometry": true, "felt:h3_index": 644747440964263009, "STATEFP": 6, "PLACEFP": 64294, "PLACENS": 2409242, "GEOID": 664294, "NAME": "Salton City", "NAMELSAD": "Salton City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55521880, "AWATER": 0, "INTPTLAT": 33.299426, "INTPTLON": -115.9609466, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -115.960693, 33.293804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 108, "felt:has_geometry": true, "felt:h3_index": 644747442472890388, "STATEFP": 6, "PLACEFP": 55184, "PLACENS": 2411356, "GEOID": 655184, "NAME": "Palm Desert", "NAMELSAD": "Palm Desert city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69352308, "AWATER": 528740, "INTPTLAT": 33.7376353, "INTPTLON": -116.3641448, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 211, "felt:has_geometry": true, "felt:h3_index": 644747442571460748, "STATEFP": 6, "PLACEFP": 59500, "PLACENS": 2411515, "GEOID": 659500, "NAME": "Rancho Mirage", "NAMELSAD": "Rancho Mirage city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 65518114, "AWATER": 1008457, "INTPTLAT": 33.7638377, "INTPTLON": -116.4303875, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -116.433105, 33.760882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 554, "felt:has_geometry": true, "felt:h3_index": 644747442747446932, "STATEFP": 6, "PLACEFP": 6028, "PLACENS": 2407831, "GEOID": 606028, "NAME": "Bermuda Dunes", "NAMELSAD": "Bermuda Dunes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639830, "AWATER": 0, "INTPTLAT": 33.7434898, "INTPTLON": -116.2873354, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -116.279297, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1482, "felt:has_geometry": true, "felt:h3_index": 644747442812498717, "STATEFP": 6, "PLACEFP": 78596, "PLACENS": 2409313, "GEOID": 678596, "NAME": "Thousand Palms", "NAMELSAD": "Thousand Palms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61175435, "AWATER": 0, "INTPTLAT": 33.8150058, "INTPTLON": -116.3544809, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.815666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 203, "felt:has_geometry": true, "felt:h3_index": 644747443212399126, "STATEFP": 6, "PLACEFP": 36434, "PLACENS": 2410100, "GEOID": 636434, "NAME": "Indian Wells", "NAMELSAD": "Indian Wells city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37039262, "AWATER": 679921, "INTPTLAT": 33.7034648, "INTPTLON": -116.3258978, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -116.323242, 33.696923 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 214, "felt:has_geometry": true, "felt:h3_index": 644747443548210560, "STATEFP": 6, "PLACEFP": 55254, "PLACENS": 2411357, "GEOID": 655254, "NAME": "Palm Springs", "NAMELSAD": "Palm Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244855729, "AWATER": 358065, "INTPTLAT": 33.8033613, "INTPTLON": -116.5382801, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -116.531982, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 106, "felt:has_geometry": true, "felt:h3_index": 644747443814965976, "STATEFP": 6, "PLACEFP": 12048, "PLACENS": 2409412, "GEOID": 612048, "NAME": "Cathedral City", "NAMELSAD": "Cathedral City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 58212517, "AWATER": 665524, "INTPTLAT": 33.8354871, "INTPTLON": -116.4631031, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -116.455078, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 951, "felt:has_geometry": true, "felt:h3_index": 644747444529407400, "STATEFP": 6, "PLACEFP": 36452, "PLACENS": 2583039, "GEOID": 636452, "NAME": "Indio Hills", "NAMELSAD": "Indio Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56620987, "AWATER": 0, "INTPTLAT": 33.8410604, "INTPTLON": -116.2484731, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -116.246338, 33.843045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 740, "felt:has_geometry": true, "felt:h3_index": 644747445260133184, "STATEFP": 6, "PLACEFP": 19022, "PLACENS": 2629131, "GEOID": 619022, "NAME": "Desert Palms", "NAMELSAD": "Desert Palms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6927150, "AWATER": 2271, "INTPTLAT": 33.7791438, "INTPTLON": -116.2982193, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -116.290283, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 739, "felt:has_geometry": true, "felt:h3_index": 644747445796426793, "STATEFP": 6, "PLACEFP": 18986, "PLACENS": 2582994, "GEOID": 618986, "NAME": "Desert Edge", "NAMELSAD": "Desert Edge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5872955, "AWATER": 0, "INTPTLAT": 33.9222888, "INTPTLON": -116.4400922, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -116.433105, 33.916013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 873, "felt:has_geometry": true, "felt:h3_index": 644747446318371098, "STATEFP": 6, "PLACEFP": 29112, "PLACENS": 2629132, "GEOID": 629112, "NAME": "Garnet", "NAMELSAD": "Garnet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20397318, "AWATER": 0, "INTPTLAT": 33.9178924, "INTPTLON": -116.479609, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -116.477051, 33.916013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1410, "felt:has_geometry": true, "felt:h3_index": 644747446444233025, "STATEFP": 6, "PLACEFP": 72156, "PLACENS": 2583145, "GEOID": 672156, "NAME": "Sky Valley", "NAMELSAD": "Sky Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 62985642, "AWATER": 0, "INTPTLAT": 33.8912372, "INTPTLON": -116.3550396, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 202, "felt:has_geometry": true, "felt:h3_index": 644747449139910869, "STATEFP": 6, "PLACEFP": 14260, "PLACENS": 2409493, "GEOID": 614260, "NAME": "Coachella", "NAMELSAD": "Coachella city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77484255, "AWATER": 0, "INTPTLAT": 33.6903799, "INTPTLON": -116.1431282, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -116.136475, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 281, "felt:has_geometry": true, "felt:h3_index": 644747449238602998, "STATEFP": 6, "PLACEFP": 36448, "PLACENS": 2410101, "GEOID": 636448, "NAME": "Indio", "NAMELSAD": "Indio city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 85944832, "AWATER": 20661, "INTPTLAT": 33.7316388, "INTPTLON": -116.2359705, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -116.235352, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1532, "felt:has_geometry": true, "felt:h3_index": 644747449382634130, "STATEFP": 6, "PLACEFP": 83085, "PLACENS": 2583177, "GEOID": 683085, "NAME": "Vista Santa Rosa", "NAMELSAD": "Vista Santa Rosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41657100, "AWATER": 32133, "INTPTLAT": 33.6214513, "INTPTLON": -116.2088163, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -116.202393, 33.614619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 204, "felt:has_geometry": true, "felt:h3_index": 644747449581397654, "STATEFP": 6, "PLACEFP": 40354, "PLACENS": 2411582, "GEOID": 640354, "NAME": "La Quinta", "NAMELSAD": "La Quinta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 91409861, "AWATER": 1101656, "INTPTLAT": 33.6460833, "INTPTLON": -116.275297, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -116.268311, 33.642063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 577, "felt:has_geometry": true, "felt:h3_index": 644747456934429382, "STATEFP": 6, "PLACEFP": 7372, "PLACENS": 2407878, "GEOID": 607372, "NAME": "Bombay Beach", "NAMELSAD": "Bombay Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1719105, "AWATER": 0, "INTPTLAT": 33.3556097, "INTPTLON": -115.7269018, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -115.718994, 33.348885 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1178, "felt:has_geometry": true, "felt:h3_index": 644747474043667859, "STATEFP": 6, "PLACEFP": 49810, "PLACENS": 2628763, "GEOID": 649810, "NAME": "Mount Laguna", "NAMELSAD": "Mount Laguna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4395332, "AWATER": 0, "INTPTLAT": 32.871105, "INTPTLON": -116.4246869, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -116.422119, 32.870360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 970, "felt:has_geometry": true, "felt:h3_index": 644747481633020677, "STATEFP": 6, "PLACEFP": 37582, "PLACENS": 2408455, "GEOID": 637582, "NAME": "Julian", "NAMELSAD": "Julian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20424527, "AWATER": 0, "INTPTLAT": 33.0735017, "INTPTLON": -116.588883, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -116.586914, 33.073131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 586, "felt:has_geometry": true, "felt:h3_index": 644747483273028443, "STATEFP": 6, "PLACEFP": 7596, "PLACENS": 2407888, "GEOID": 607596, "NAME": "Borrego Springs", "NAMELSAD": "Borrego Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 112422778, "AWATER": 0, "INTPTLAT": 33.2409651, "INTPTLON": -116.3571189, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.238688 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1191, "felt:has_geometry": true, "felt:h3_index": 644747487865806163, "STATEFP": 6, "PLACEFP": 51392, "PLACENS": 2408926, "GEOID": 651392, "NAME": "Niland", "NAMELSAD": "Niland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1040220, "AWATER": 0, "INTPTLAT": 33.2387079, "INTPTLON": -115.5144396, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -115.510254, 33.238688 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 250, "felt:has_geometry": true, "felt:h3_index": 644747488324637332, "STATEFP": 6, "PLACEFP": 9878, "PLACENS": 2409962, "GEOID": 609878, "NAME": "Calipatria", "NAMELSAD": "Calipatria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9579219, "AWATER": 0, "INTPTLAT": 33.1688054, "INTPTLON": -115.4856694, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -115.488281, 33.165145 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 440, "felt:has_geometry": true, "felt:h3_index": 644747492481485891, "STATEFP": 6, "PLACEFP": 84606, "PLACENS": 2412239, "GEOID": 684606, "NAME": "Westmorland", "NAMELSAD": "Westmorland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1528294, "AWATER": 0, "INTPTLAT": 33.038922, "INTPTLON": -115.6223136, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -115.620117, 33.036298 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 428, "felt:has_geometry": true, "felt:h3_index": 644747492590805858, "STATEFP": 6, "PLACEFP": 8058, "PLACENS": 2409893, "GEOID": 608058, "NAME": "Brawley", "NAMELSAD": "Brawley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21024324, "AWATER": 0, "INTPTLAT": 32.9783547, "INTPTLON": -115.5286723, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -115.521240, 32.971804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1047, "felt:has_geometry": true, "felt:h3_index": 644747572466202214, "STATEFP": 6, "PLACEFP": 41166, "PLACENS": 2408599, "GEOID": 641166, "NAME": "Lemoore Station", "NAMELSAD": "Lemoore Station CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10965026, "AWATER": 0, "INTPTLAT": 36.2632777, "INTPTLON": -119.9048364, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -119.904785, 36.261992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1446, "felt:has_geometry": true, "felt:h3_index": 644747573154620105, "STATEFP": 6, "PLACEFP": 75252, "PLACENS": 2410009, "GEOID": 675252, "NAME": "Stratford", "NAMELSAD": "Stratford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805595, "AWATER": 0, "INTPTLAT": 36.1884644, "INTPTLON": -119.8222466, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -119.816895, 36.182225 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 519, "felt:has_geometry": true, "felt:h3_index": 644747574496057734, "STATEFP": 6, "PLACEFP": 2700, "PLACENS": 2407762, "GEOID": 602700, "NAME": "Armona", "NAMELSAD": "Armona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5317203, "AWATER": 0, "INTPTLAT": 36.3166068, "INTPTLON": -119.7053798, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.315125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 888, "felt:has_geometry": true, "felt:h3_index": 644747574617122230, "STATEFP": 6, "PLACEFP": 30686, "PLACENS": 2628734, "GEOID": 630686, "NAME": "Grangeville", "NAMELSAD": "Grangeville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1657009, "AWATER": 0, "INTPTLAT": 36.3438978, "INTPTLON": -119.707467, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.341678 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 240, "felt:has_geometry": true, "felt:h3_index": 644747574722896102, "STATEFP": 6, "PLACEFP": 31960, "PLACENS": 2410696, "GEOID": 631960, "NAMELSAD": "Hanford city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45249771, "AWATER": 0, "INTPTLAT": 36.3275118, "INTPTLON": -119.6550178, "NAME": "Hanford,Home Garden", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -119.652100, 36.323977 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 234, "felt:has_geometry": true, "felt:h3_index": 644747575125298613, "STATEFP": 6, "PLACEFP": 41152, "PLACENS": 2410819, "GEOID": 641152, "NAME": "Lemoore", "NAMELSAD": "Lemoore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22828779, "AWATER": 0, "INTPTLAT": 36.2949219, "INTPTLON": -119.7983331, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.288563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 986, "felt:has_geometry": true, "felt:h3_index": 644747577347466051, "STATEFP": 6, "PLACEFP": 38394, "PLACENS": 2408476, "GEOID": 638394, "NAME": "Kettleman City", "NAMELSAD": "Kettleman City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 546646, "AWATER": 0, "INTPTLAT": 36.0089852, "INTPTLON": -119.9628518, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -119.959717, 36.004673 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 363, "felt:has_geometry": true, "felt:h3_index": 644747577859302684, "STATEFP": 6, "PLACEFP": 16224, "PLACENS": 2410227, "GEOID": 616224, "NAME": "Corcoran", "NAMELSAD": "Corcoran city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19315232, "AWATER": 0, "INTPTLAT": 36.084057, "INTPTLON": -119.5612683, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 36.084621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1543, "felt:has_geometry": true, "felt:h3_index": 644747578083830861, "STATEFP": 6, "PLACEFP": 83724, "PLACENS": 2585463, "GEOID": 683724, "NAME": "Waukena", "NAMELSAD": "Waukena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 907531, "AWATER": 0, "INTPTLAT": 36.1391038, "INTPTLON": -119.5109733, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -119.509277, 36.137875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1029, "felt:has_geometry": true, "felt:h3_index": 644747580186125331, "STATEFP": 6, "PLACEFP": 40116, "PLACENS": 2408570, "GEOID": 640116, "NAME": "Lanare", "NAMELSAD": "Lanare CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5232743, "AWATER": 0, "INTPTLAT": 36.4377234, "INTPTLON": -119.9321988, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -119.926758, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1563, "felt:has_geometry": true, "felt:h3_index": 644747580572327337, "STATEFP": 6, "PLACEFP": 84863, "PLACENS": 2628800, "GEOID": 684863, "NAME": "Westside", "NAMELSAD": "Westside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5740778, "AWATER": 0, "INTPTLAT": 36.4042015, "INTPTLON": -120.1343258, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 36.403600 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 800, "felt:has_geometry": true, "felt:h3_index": 644747581565594317, "STATEFP": 6, "PLACEFP": 10816, "PLACENS": 2407954, "GEOID": 610816, "NAME": "Cantua Creek", "NAMELSAD": "Cantua Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832915, "AWATER": 0, "INTPTLAT": 36.5000453, "INTPTLON": -120.3163615, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -120.311279, 36.500805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 801, "felt:has_geometry": true, "felt:h3_index": 644747581985458390, "STATEFP": 6, "PLACEFP": 11614, "PLACENS": 2407976, "GEOID": 611614, "NAME": "Caruthers", "NAMELSAD": "Caruthers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5238364, "AWATER": 0, "INTPTLAT": 36.5399071, "INTPTLON": -119.8450271, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -119.838867, 36.536123 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 291, "felt:has_geometry": true, "felt:h3_index": 644747584730061441, "STATEFP": 6, "PLACEFP": 36084, "PLACENS": 2410081, "GEOID": 636084, "NAME": "Huron", "NAMELSAD": "Huron city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4302328, "AWATER": 0, "INTPTLAT": 36.2042339, "INTPTLON": -120.0953108, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -120.091553, 36.199958 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1332, "felt:has_geometry": true, "felt:h3_index": 644747586678671960, "STATEFP": 6, "PLACEFP": 61096, "PLACENS": 2409186, "GEOID": 661096, "NAME": "Riverdale", "NAMELSAD": "Riverdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10164976, "AWATER": 0, "INTPTLAT": 36.4304021, "INTPTLON": -119.8671785, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -119.860840, 36.430122 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 406, "felt:has_geometry": true, "felt:h3_index": 644747588564558930, "STATEFP": 6, "PLACEFP": 23616, "PLACENS": 2410485, "GEOID": 623616, "NAMELSAD": "Farmersville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5860074, "AWATER": 0, "INTPTLAT": 36.3047394, "INTPTLON": -119.2086052, "NAME": "Farmersville,Linnell Camp,Hypericum", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.306272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1488, "felt:has_geometry": true, "felt:h3_index": 644747588676380354, "STATEFP": 6, "PLACEFP": 78932, "PLACENS": 2585461, "GEOID": 678932, "NAME": "Tonyville", "NAMELSAD": "Tonyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 130784, "AWATER": 0, "INTPTLAT": 36.247382, "INTPTLON": -119.0903523, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 36.244273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 405, "felt:has_geometry": true, "felt:h3_index": 644747588809938028, "STATEFP": 6, "PLACEFP": 23126, "PLACENS": 2410472, "GEOID": 623126, "NAMELSAD": "Exeter city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6373810, "AWATER": 0, "INTPTLAT": 36.2940725, "INTPTLON": -119.1459536, "NAME": "Exeter,Tooleville", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -119.146729, 36.288563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 784, "felt:has_geometry": true, "felt:h3_index": 644747589158480278, "STATEFP": 6, "PLACEFP": 21210, "PLACENS": 2585408, "GEOID": 621210, "NAME": "East Tulare Villa", "NAMELSAD": "East Tulare Villa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 731424, "AWATER": 0, "INTPTLAT": 36.2037626, "INTPTLON": -119.2803352, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -119.278564, 36.199958 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 407, "felt:has_geometry": true, "felt:h3_index": 644747589237869779, "STATEFP": 6, "PLACEFP": 41712, "PLACENS": 2410839, "GEOID": 641712, "NAME": "Lindsay", "NAMELSAD": "Lindsay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7055435, "AWATER": 0, "INTPTLAT": 36.2081916, "INTPTLON": -119.0897031, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 36.208823 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 176, "felt:has_geometry": true, "felt:h3_index": 644747589504949646, "STATEFP": 6, "PLACEFP": 82954, "PLACENS": 2412160, "GEOID": 682954, "NAME": "Visalia", "NAMELSAD": "Visalia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 98720318, "AWATER": 51434, "INTPTLAT": 36.3280297, "INTPTLON": -119.3285195, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -119.322510, 36.323977 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 886, "felt:has_geometry": true, "felt:h3_index": 644747589693055857, "STATEFP": 6, "PLACEFP": 30476, "PLACENS": 2408310, "GEOID": 630476, "NAME": "Goshen", "NAMELSAD": "Goshen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7292688, "AWATER": 0, "INTPTLAT": 36.3492658, "INTPTLON": -119.4206215, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -119.421387, 36.350527 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1253, "felt:has_geometry": true, "felt:h3_index": 644747589917098704, "STATEFP": 6, "PLACEFP": 56120, "PLACENS": 2585436, "GEOID": 656120, "NAME": "Patterson Tract", "NAMELSAD": "Patterson Tract CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3744512, "AWATER": 0, "INTPTLAT": 36.3795209, "INTPTLON": -119.2956042, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -119.289551, 36.377068 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1045, "felt:has_geometry": true, "felt:h3_index": 644747590710743209, "STATEFP": 6, "PLACEFP": 41110, "PLACENS": 2408598, "GEOID": 641110, "NAMELSAD": "Lemon Cove CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3457953, "AWATER": 0, "INTPTLAT": 36.38088, "INTPTLON": -119.0284596, "NAME": "Lemon Cove,Lindcove", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 36.377068 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 957, "felt:has_geometry": true, "felt:h3_index": 644747591710840683, "STATEFP": 6, "PLACEFP": 36910, "PLACENS": 2408434, "GEOID": 636910, "NAME": "Ivanhoe", "NAMELSAD": "Ivanhoe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3392302, "AWATER": 0, "INTPTLAT": 36.3834389, "INTPTLON": -119.220088, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -119.212646, 36.377068 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 357, "felt:has_geometry": true, "felt:h3_index": 644747591885081987, "STATEFP": 6, "PLACEFP": 86300, "PLACENS": 2412299, "GEOID": 686300, "NAME": "Woodlake", "NAMELSAD": "Woodlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7379538, "AWATER": 1178472, "INTPTLAT": 36.4128277, "INTPTLON": -119.1007177, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -119.102783, 36.412442 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1582, "felt:has_geometry": true, "felt:h3_index": 644747592708875594, "STATEFP": 6, "PLACEFP": 86482, "PLACENS": 2409628, "GEOID": 686482, "NAMELSAD": "Woodville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2584379, "AWATER": 0, "INTPTLAT": 36.0926804, "INTPTLON": -119.2012255, "NAME": "Woodville,Woodville Farm Labor Camp,Poplar-Cotton Center", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.093499 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1282, "felt:has_geometry": true, "felt:h3_index": 644747593096158564, "STATEFP": 6, "PLACEFP": 57568, "PLACENS": 2585439, "GEOID": 657568, "NAME": "Plainview", "NAMELSAD": "Plainview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 591714, "AWATER": 0, "INTPTLAT": 36.1430275, "INTPTLON": -119.1353398, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -119.135742, 36.137875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1114, "felt:has_geometry": true, "felt:h3_index": 644747593825062285, "STATEFP": 6, "PLACEFP": 46223, "PLACENS": 2585433, "GEOID": 646223, "NAME": "Matheny", "NAMELSAD": "Matheny CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1109244, "AWATER": 0, "INTPTLAT": 36.1706457, "INTPTLON": -119.3516084, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -119.344482, 36.164488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 208, "felt:has_geometry": true, "felt:h3_index": 644747594249747697, "STATEFP": 6, "PLACEFP": 80644, "PLACENS": 2412107, "GEOID": 680644, "NAME": "Tulare", "NAMELSAD": "Tulare city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 53407652, "AWATER": 197854, "INTPTLAT": 36.1993663, "INTPTLON": -119.3419206, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -119.344482, 36.199958 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 812, "felt:has_geometry": true, "felt:h3_index": 644747595000689689, "STATEFP": 6, "PLACEFP": 22360, "PLACENS": 2585422, "GEOID": 622360, "NAME": "El Rancho", "NAMELSAD": "El Rancho CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55904, "AWATER": 0, "INTPTLAT": 36.2206835, "INTPTLON": -119.0683571, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -119.069824, 36.217687 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1447, "felt:has_geometry": true, "felt:h3_index": 644747595521508660, "STATEFP": 6, "PLACEFP": 75280, "PLACENS": 2410010, "GEOID": 675280, "NAME": "Strathmore", "NAMELSAD": "Strathmore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3655054, "AWATER": 0, "INTPTLAT": 36.1461167, "INTPTLON": -119.064341, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -119.058838, 36.146747 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 460, "felt:has_geometry": true, "felt:h3_index": 644747597079579664, "STATEFP": 6, "PLACEFP": 38562, "PLACENS": 2411548, "GEOID": 638562, "NAME": "Kingsburg", "NAMELSAD": "Kingsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9627176, "AWATER": 0, "INTPTLAT": 36.5251925, "INTPTLON": -119.5665645, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -119.564209, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 470, "felt:has_geometry": true, "felt:h3_index": 644747597212359372, "STATEFP": 6, "PLACEFP": 70882, "PLACENS": 2411863, "GEOID": 670882, "NAME": "Selma", "NAMELSAD": "Selma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15041784, "AWATER": 0, "INTPTLAT": 36.5715478, "INTPTLON": -119.6142675, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -119.608154, 36.571424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 809, "felt:has_geometry": true, "felt:h3_index": 644747597358436958, "STATEFP": 6, "PLACEFP": 22235, "PLACENS": 2805242, "GEOID": 622235, "NAME": "El Monte Mobile Village", "NAMELSAD": "El Monte Mobile Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18565, "AWATER": 0, "INTPTLAT": 36.547075, "INTPTLON": -119.4250492, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -119.421387, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 467, "felt:has_geometry": true, "felt:h3_index": 644747597413788188, "STATEFP": 6, "PLACEFP": 55856, "PLACENS": 2411376, "GEOID": 655856, "NAME": "Parlier", "NAMELSAD": "Parlier city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6238407, "AWATER": 0, "INTPTLAT": 36.608693, "INTPTLON": -119.5433673, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -119.542236, 36.606709 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 729, "felt:has_geometry": true, "felt:h3_index": 644747597828172160, "STATEFP": 6, "PLACEFP": 18450, "PLACENS": 2585407, "GEOID": 618450, "NAMELSAD": "Delft Colony CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 344432, "AWATER": 0, "INTPTLAT": 36.5138094, "INTPTLON": -119.446522, "NAME": "Delft Colony,London", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 36.509636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 459, "felt:has_geometry": true, "felt:h3_index": 644747598104416946, "STATEFP": 6, "PLACEFP": 25436, "PLACENS": 2410538, "GEOID": 625436, "NAME": "Fowler", "NAMELSAD": "Fowler city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6924931, "AWATER": 0, "INTPTLAT": 36.6241197, "INTPTLON": -119.6746987, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -119.674072, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 774, "felt:has_geometry": true, "felt:h3_index": 644747598277946656, "STATEFP": 6, "PLACEFP": 20928, "PLACENS": 2408041, "GEOID": 620928, "NAME": "Easton", "NAMELSAD": "Easton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7799485, "AWATER": 0, "INTPTLAT": 36.6523908, "INTPTLON": -119.790786, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -119.783936, 36.650793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1151, "felt:has_geometry": true, "felt:h3_index": 644747598616454195, "STATEFP": 6, "PLACEFP": 48592, "PLACENS": 2628758, "GEOID": 648592, "NAME": "Monmouth", "NAMELSAD": "Monmouth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 797858, "AWATER": 0, "INTPTLAT": 36.5656206, "INTPTLON": -119.7404754, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -119.739990, 36.562600 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 799, "felt:has_geometry": true, "felt:h3_index": 644747598763255132, "STATEFP": 6, "PLACEFP": 7750, "PLACENS": 2407895, "GEOID": 607750, "NAME": "Bowles", "NAMELSAD": "Bowles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 985992, "AWATER": 0, "INTPTLAT": 36.6088734, "INTPTLON": -119.7525639, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -119.750977, 36.606709 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 466, "felt:has_geometry": true, "felt:h3_index": 644747599237693969, "STATEFP": 6, "PLACEFP": 54008, "PLACENS": 2411327, "GEOID": 654008, "NAME": "Orange Cove", "NAMELSAD": "Orange Cove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4640753, "AWATER": 0, "INTPTLAT": 36.6211449, "INTPTLON": -119.3187498, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 36.615528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 468, "felt:has_geometry": true, "felt:h3_index": 644747599899282065, "STATEFP": 6, "PLACEFP": 60242, "PLACENS": 2410920, "GEOID": 660242, "NAME": "Reedley", "NAMELSAD": "Reedley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14429457, "AWATER": 185397, "INTPTLAT": 36.5983642, "INTPTLON": -119.4466866, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 36.597889 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 469, "felt:has_geometry": true, "felt:h3_index": 644747600295446035, "STATEFP": 6, "PLACEFP": 67056, "PLACENS": 2411811, "GEOID": 667056, "NAME": "Sanger", "NAMELSAD": "Sanger city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14937115, "AWATER": 0, "INTPTLAT": 36.6989667, "INTPTLON": -119.5574831, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -119.553223, 36.694851 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1141, "felt:has_geometry": true, "felt:h3_index": 644747600480617499, "STATEFP": 6, "PLACEFP": 47822, "PLACENS": 2583082, "GEOID": 647822, "NAMELSAD": "Minkler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15166528, "AWATER": 0, "INTPTLAT": 36.7276241, "INTPTLON": -119.4588496, "NAME": "Minkler,Centerville", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -119.454346, 36.721274 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 733, "felt:has_geometry": true, "felt:h3_index": 644747600957454509, "STATEFP": 6, "PLACEFP": 18674, "PLACENS": 2408651, "GEOID": 618674, "NAME": "Del Rey", "NAMELSAD": "Del Rey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3456848, "AWATER": 0, "INTPTLAT": 36.6564641, "INTPTLON": -119.5981349, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -119.597168, 36.650793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1495, "felt:has_geometry": true, "felt:h3_index": 644747601725891606, "STATEFP": 6, "PLACEFP": 80280, "PLACENS": 2409348, "GEOID": 680280, "NAME": "Traver", "NAMELSAD": "Traver CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1735180, "AWATER": 0, "INTPTLAT": 36.4541114, "INTPTLON": -119.4837296, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -119.476318, 36.447799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1553, "felt:has_geometry": true, "felt:h3_index": 644747602129605221, "STATEFP": 6, "PLACEFP": 84345, "PLACENS": 2627938, "GEOID": 684345, "NAME": "West Goshen", "NAMELSAD": "West Goshen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1734524, "AWATER": 0, "INTPTLAT": 36.3491827, "INTPTLON": -119.4573743, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -119.454346, 36.350527 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1038, "felt:has_geometry": true, "felt:h3_index": 644747602419724299, "STATEFP": 6, "PLACEFP": 40746, "PLACENS": 2408585, "GEOID": 640746, "NAME": "Laton", "NAMELSAD": "Laton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6545990, "AWATER": 0, "INTPTLAT": 36.4314103, "INTPTLON": -119.6975968, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -119.696045, 36.430122 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 913, "felt:has_geometry": true, "felt:h3_index": 644747602896963982, "STATEFP": 6, "PLACEFP": 32156, "PLACENS": 2628738, "GEOID": 632156, "NAME": "Hardwick", "NAMELSAD": "Hardwick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 359343, "AWATER": 0, "INTPTLAT": 36.4025959, "INTPTLON": -119.7207704, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 36.403600 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1154, "felt:has_geometry": true, "felt:h3_index": 644747603462808452, "STATEFP": 6, "PLACEFP": 48676, "PLACENS": 2585434, "GEOID": 648676, "NAME": "Monson", "NAMELSAD": "Monson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 523997, "AWATER": 0, "INTPTLAT": 36.4924201, "INTPTLON": -119.3361205, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 404, "felt:has_geometry": true, "felt:h3_index": 644747603618660723, "STATEFP": 6, "PLACEFP": 19318, "PLACENS": 2410342, "GEOID": 619318, "NAME": "Dinuba", "NAMELSAD": "Dinuba city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16892332, "AWATER": 0, "INTPTLAT": 36.5453259, "INTPTLON": -119.3986439, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -119.399414, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1588, "felt:has_geometry": true, "felt:h3_index": 644747603801825306, "STATEFP": 6, "PLACEFP": 86734, "PLACENS": 2585465, "GEOID": 686734, "NAME": "Yettem", "NAMELSAD": "Yettem CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 284865, "AWATER": 0, "INTPTLAT": 36.4856842, "INTPTLON": -119.2556893, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 36.483141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1235, "felt:has_geometry": true, "felt:h3_index": 644747603868199494, "STATEFP": 6, "PLACEFP": 54372, "PLACENS": 2409000, "GEOID": 654372, "NAMELSAD": "Orosi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6672042, "AWATER": 0, "INTPTLAT": 36.5432708, "INTPTLON": -119.2914187, "NAME": "Orosi,Sultana", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -119.289551, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1081, "felt:has_geometry": true, "felt:h3_index": 644747612084539746, "STATEFP": 6, "PLACEFP": 44280, "PLACENS": 2408143, "GEOID": 644280, "NAME": "Lost Hills", "NAMELSAD": "Lost Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14378327, "AWATER": 30536, "INTPTLAT": 35.6327212, "INTPTLON": -119.6778893, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -119.674072, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 225, "felt:has_geometry": true, "felt:h3_index": 644747614544475188, "STATEFP": 6, "PLACEFP": 3302, "PLACENS": 2409764, "GEOID": 603302, "NAME": "Avenal", "NAMELSAD": "Avenal city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50459974, "AWATER": 0, "INTPTLAT": 36.0311072, "INTPTLON": -120.1161739, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 457, "felt:has_geometry": true, "felt:h3_index": 644747615712534694, "STATEFP": 6, "PLACEFP": 14274, "PLACENS": 2409495, "GEOID": 614274, "NAME": "Coalinga", "NAMELSAD": "Coalinga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17734580, "AWATER": 79727, "INTPTLAT": 36.1330557, "INTPTLON": -120.3390286, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -120.333252, 36.129002 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 497, "felt:has_geometry": true, "felt:h3_index": 644747622956296557, "STATEFP": 6, "PLACEFP": 1010, "PLACENS": 2585402, "GEOID": 601010, "NAME": "Allensworth", "NAMELSAD": "Allensworth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8035085, "AWATER": 0, "INTPTLAT": 35.8498779, "INTPTLON": -119.389209, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -119.388428, 35.844535 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 305, "felt:has_geometry": true, "felt:h3_index": 644747623669054852, "STATEFP": 6, "PLACEFP": 18394, "PLACENS": 2410317, "GEOID": 618394, "NAME": "Delano", "NAMELSAD": "Delano city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38114812, "AWATER": 135325, "INTPTLAT": 35.7664302, "INTPTLON": -119.2642212, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 35.764343 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 500, "felt:has_geometry": true, "felt:h3_index": 644747623936866486, "STATEFP": 6, "PLACEFP": 1164, "PLACENS": 2407725, "GEOID": 601164, "NAME": "Alpaugh", "NAMELSAD": "Alpaugh CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1082836, "AWATER": 0, "INTPTLAT": 35.8890372, "INTPTLON": -119.4858089, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -119.487305, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 765, "felt:has_geometry": true, "felt:h3_index": 644747625667123280, "STATEFP": 6, "PLACEFP": 20438, "PLACENS": 2408701, "GEOID": 620438, "NAME": "Earlimart", "NAMELSAD": "Earlimart CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7519391, "AWATER": 0, "INTPTLAT": 35.8913541, "INTPTLON": -119.2720916, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1485, "felt:has_geometry": true, "felt:h3_index": 644747626384819344, "STATEFP": 6, "PLACEFP": 78750, "PLACENS": 2409325, "GEOID": 678750, "NAME": "Tipton", "NAMELSAD": "Tipton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4471210, "AWATER": 0, "INTPTLAT": 36.0572328, "INTPTLON": -119.3135247, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 36.057981 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1281, "felt:has_geometry": true, "felt:h3_index": 644747626833840880, "STATEFP": 6, "PLACEFP": 57512, "PLACENS": 2409079, "GEOID": 657512, "NAMELSAD": "Pixley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13597489, "AWATER": 56590, "INTPTLAT": 35.976823, "INTPTLON": -119.3001904, "NAME": "Pixley,Teviston", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -119.300537, 35.978006 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 306, "felt:has_geometry": true, "felt:h3_index": 644747627426563821, "STATEFP": 6, "PLACEFP": 44826, "PLACENS": 2411062, "GEOID": 644826, "NAME": "McFarland", "NAMELSAD": "McFarland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7875289, "AWATER": 0, "INTPTLAT": 35.6705643, "INTPTLON": -119.231681, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 35.666222 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 322, "felt:has_geometry": true, "felt:h3_index": 644747627683405902, "STATEFP": 6, "PLACEFP": 83542, "PLACENS": 2412185, "GEOID": 683542, "NAME": "Wasco", "NAMELSAD": "Wasco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24313382, "AWATER": 0, "INTPTLAT": 35.5937849, "INTPTLON": -119.3671006, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -119.366455, 35.594786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 969, "felt:has_geometry": true, "felt:h3_index": 644747629431316765, "STATEFP": 6, "PLACEFP": 37568, "PLACENS": 2805908, "GEOID": 637568, "NAME": "Jovista", "NAMELSAD": "Jovista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260300, "AWATER": 0, "INTPTLAT": 35.7940141, "INTPTLON": -119.18957, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -119.190674, 35.791083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1325, "felt:has_geometry": true, "felt:h3_index": 644747629488099461, "STATEFP": 6, "PLACEFP": 60606, "PLACENS": 2409166, "GEOID": 660606, "NAME": "Richgrove", "NAMELSAD": "Richgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1170649, "AWATER": 0, "INTPTLAT": 35.7966117, "INTPTLON": -119.1069032, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -119.102783, 35.791083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1339, "felt:has_geometry": true, "felt:h3_index": 644747629608566958, "STATEFP": 6, "PLACEFP": 62496, "PLACENS": 2585443, "GEOID": 662496, "NAME": "Rodriguez Camp", "NAMELSAD": "Rodriguez Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 682112, "AWATER": 0, "INTPTLAT": 35.8089861, "INTPTLON": -119.1388223, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -119.135742, 35.808904 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1496, "felt:has_geometry": true, "felt:h3_index": 644747653026284737, "STATEFP": 6, "PLACEFP": 80364, "PLACENS": 2583166, "GEOID": 680364, "NAME": "Tres Pinos", "NAMELSAD": "Tres Pinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9327895, "AWATER": 0, "INTPTLAT": 36.7903815, "INTPTLON": -121.3105643, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 445, "felt:has_geometry": true, "felt:h3_index": 644747654188651234, "STATEFP": 6, "PLACEFP": 34120, "PLACENS": 2410778, "GEOID": 634120, "NAME": "Hollister", "NAMELSAD": "Hollister city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20622323, "AWATER": 0, "INTPTLAT": 36.8555992, "INTPTLON": -121.3985978, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 36.853252 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1604, "felt:has_geometry": true, "felt:h3_index": 644747654733703281, "STATEFP": 6, "PLACEFP": 60706, "PLACENS": 2409168, "GEOID": 660706, "NAME": "Ridgemark", "NAMELSAD": "Ridgemark CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6656246, "AWATER": 0, "INTPTLAT": 36.8082406, "INTPTLON": -121.3622802, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 465, "felt:has_geometry": true, "felt:h3_index": 644747657149768426, "STATEFP": 6, "PLACEFP": 46828, "PLACENS": 2411078, "GEOID": 646828, "NAME": "Mendota", "NAMELSAD": "Mendota city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8788278, "AWATER": 8333, "INTPTLAT": 36.7575951, "INTPTLON": -120.3804737, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 36.756490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 458, "felt:has_geometry": true, "felt:h3_index": 644747660894821784, "STATEFP": 6, "PLACEFP": 24134, "PLACENS": 2410507, "GEOID": 624134, "NAME": "Firebaugh", "NAMELSAD": "Firebaugh city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9109030, "AWATER": 143103, "INTPTLAT": 36.8537446, "INTPTLON": -120.4537457, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 36.853252 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1483, "felt:has_geometry": true, "felt:h3_index": 644747662055020099, "STATEFP": 6, "PLACEFP": 78652, "PLACENS": 2583162, "GEOID": 678652, "NAME": "Three Rocks", "NAMELSAD": "Three Rocks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1941449, "AWATER": 0, "INTPTLAT": 36.5051483, "INTPTLON": -120.3935343, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -120.388184, 36.500805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1494, "felt:has_geometry": true, "felt:h3_index": 644747663648924314, "STATEFP": 6, "PLACEFP": 80266, "PLACENS": 2409347, "GEOID": 680266, "NAME": "Tranquillity", "NAMELSAD": "Tranquillity CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1599152, "AWATER": 0, "INTPTLAT": 36.6480071, "INTPTLON": -120.2525415, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -120.245361, 36.641978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 220, "felt:has_geometry": true, "felt:h3_index": 644747664457569548, "STATEFP": 6, "PLACEFP": 67126, "PLACENS": 2411789, "GEOID": 667126, "NAME": "San Joaquin", "NAMELSAD": "San Joaquin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3101203, "AWATER": 0, "INTPTLAT": 36.6055688, "INTPTLON": -120.1899215, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 36.606709 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 198, "felt:has_geometry": true, "felt:h3_index": 644747665924608198, "STATEFP": 6, "PLACEFP": 44028, "PLACENS": 2410878, "GEOID": 644028, "NAME": "Los Banos", "NAMELSAD": "Los Banos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25891767, "AWATER": 320639, "INTPTLAT": 37.0631841, "INTPTLON": -120.8403045, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 37.063944 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1534, "felt:has_geometry": true, "felt:h3_index": 644747666886413670, "STATEFP": 6, "PLACEFP": 83108, "PLACENS": 2583179, "GEOID": 683108, "NAME": "Volta", "NAMELSAD": "Volta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11318388, "AWATER": 165270, "INTPTLAT": 37.0823527, "INTPTLON": -120.9144798, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 37.081476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1377, "felt:has_geometry": true, "felt:h3_index": 644747667509871857, "STATEFP": 6, "PLACEFP": 70028, "PLACENS": 2583129, "GEOID": 670028, "NAME": "Santa Nella", "NAMELSAD": "Santa Nella CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12128897, "AWATER": 0, "INTPTLAT": 37.1012188, "INTPTLON": -121.0156971, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -121.014404, 37.099003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 810, "felt:has_geometry": true, "felt:h3_index": 644747668223271726, "STATEFP": 6, "PLACEFP": 22286, "PLACENS": 2583007, "GEOID": 622286, "NAME": "El Nido", "NAMELSAD": "El Nido CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8525668, "AWATER": 0, "INTPTLAT": 37.1323764, "INTPTLON": -120.4985513, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 37.134045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 754, "felt:has_geometry": true, "felt:h3_index": 644747668483560090, "STATEFP": 6, "PLACEFP": 19654, "PLACENS": 2582998, "GEOID": 619654, "NAME": "Dos Palos Y", "NAMELSAD": "Dos Palos Y CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4054329, "AWATER": 0, "INTPTLAT": 37.0468402, "INTPTLON": -120.6394732, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -120.640869, 37.046409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 86, "felt:has_geometry": true, "felt:h3_index": 644747672347326621, "STATEFP": 6, "PLACEFP": 19612, "PLACENS": 2410348, "GEOID": 619612, "NAME": "Dos Palos", "NAMELSAD": "Dos Palos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3494393, "AWATER": 0, "INTPTLAT": 36.9854237, "INTPTLON": -120.6338446, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1422, "felt:has_geometry": true, "felt:h3_index": 644747672872620166, "STATEFP": 6, "PLACEFP": 72954, "PLACENS": 2408762, "GEOID": 672954, "NAME": "South Dos Palos", "NAMELSAD": "South Dos Palos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3984072, "AWATER": 0, "INTPTLAT": 36.9707011, "INTPTLON": -120.6467311, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -120.640869, 36.967449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 356, "felt:has_geometry": true, "felt:h3_index": 644747675028637091, "STATEFP": 6, "PLACEFP": 38520, "PLACENS": 2411544, "GEOID": 638520, "NAME": "King City", "NAMELSAD": "King City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9833874, "AWATER": 342510, "INTPTLAT": 36.2162833, "INTPTLON": -121.1319616, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -121.124268, 36.217687 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 293, "felt:has_geometry": true, "felt:h3_index": 644747675861780150, "STATEFP": 6, "PLACEFP": 30994, "PLACENS": 2410657, "GEOID": 630994, "NAME": "Greenfield", "NAMELSAD": "Greenfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7548415, "AWATER": 98210, "INTPTLAT": 36.3245614, "INTPTLON": -121.2426579, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 36.323977 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1370, "felt:has_geometry": true, "felt:h3_index": 644747679034789924, "STATEFP": 6, "PLACEFP": 68140, "PLACENS": 2409261, "GEOID": 668140, "NAME": "San Lucas", "NAMELSAD": "San Lucas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1020818, "AWATER": 0, "INTPTLAT": 36.1283492, "INTPTLON": -121.0217318, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -121.014404, 36.129002 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1271, "felt:has_geometry": true, "felt:h3_index": 644747679985378393, "STATEFP": 6, "PLACEFP": 57070, "PLACENS": 2583113, "GEOID": 657070, "NAME": "Pine Canyon", "NAMELSAD": "Pine Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8639261, "AWATER": 2301, "INTPTLAT": 36.1720725, "INTPTLON": -121.1430132, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 36.173357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 292, "felt:has_geometry": true, "felt:h3_index": 644747682967826784, "STATEFP": 6, "PLACEFP": 30392, "PLACENS": 2410617, "GEOID": 630392, "NAME": "Gonzales", "NAMELSAD": "Gonzales city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4955568, "AWATER": 98218, "INTPTLAT": 36.505979, "INTPTLON": -121.442918, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 36.500805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1430, "felt:has_geometry": true, "felt:h3_index": 644747684091471524, "STATEFP": 6, "PLACEFP": 73612, "PLACENS": 2408789, "GEOID": 673612, "NAME": "Spreckels", "NAMELSAD": "Spreckels CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 316377, "AWATER": 0, "INTPTLAT": 36.6247156, "INTPTLON": -121.646487, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 673, "felt:has_geometry": true, "felt:h3_index": 644747684305611873, "STATEFP": 6, "PLACEFP": 13364, "PLACENS": 2407612, "GEOID": 613364, "NAME": "Chualar", "NAMELSAD": "Chualar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1621710, "AWATER": 0, "INTPTLAT": 36.5711128, "INTPTLON": -121.5102955, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 36.571424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 311, "felt:has_geometry": true, "felt:h3_index": 644747689997471765, "STATEFP": 6, "PLACEFP": 72520, "PLACENS": 2411924, "GEOID": 672520, "NAME": "Soledad", "NAMELSAD": "Soledad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11551909, "AWATER": 492321, "INTPTLAT": 36.4345222, "INTPTLON": -121.31775879999999, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 36.430122 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 948, "felt:has_geometry": true, "felt:h3_index": 644747731397256489, "STATEFP": 6, "PLACEFP": 36350, "PLACENS": 2408418, "GEOID": 636350, "NAME": "Independence", "NAMELSAD": "Independence CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12590232, "AWATER": 7190, "INTPTLAT": 36.8303101, "INTPTLON": -118.207855, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -118.201904, 36.826875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 563, "felt:has_geometry": true, "felt:h3_index": 644747734461914507, "STATEFP": 6, "PLACEFP": 6616, "PLACENS": 2407843, "GEOID": 606616, "NAME": "Big Pine", "NAMELSAD": "Big Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7636605, "AWATER": 4831, "INTPTLAT": 37.1655071, "INTPTLON": -118.2962618, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -118.289795, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 337, "felt:has_geometry": true, "felt:h3_index": 644747737800824493, "STATEFP": 6, "PLACEFP": 6798, "PLACENS": 2409852, "GEOID": 606798, "NAME": "Bishop", "NAMELSAD": "Bishop city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4827233, "AWATER": 122068, "INTPTLAT": 37.3663813, "INTPTLON": -118.3958082, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1570, "felt:has_geometry": true, "felt:h3_index": 644747738387940234, "STATEFP": 6, "PLACEFP": 85551, "PLACENS": 2409595, "GEOID": 685551, "NAME": "Wilkerson", "NAMELSAD": "Wilkerson CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14833037, "AWATER": 1906, "INTPTLAT": 37.2773387, "INTPTLON": -118.3915877, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.274053 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1611, "felt:has_geometry": true, "felt:h3_index": 644747744295196939, "STATEFP": 6, "PLACEFP": 78638, "PLACENS": 2409316, "GEOID": 678638, "NAME": "Three Rivers", "NAMELSAD": "Three Rivers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80245468, "AWATER": 268932, "INTPTLAT": 36.440041, "INTPTLON": -118.8802803, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1407, "felt:has_geometry": true, "felt:h3_index": 644747747066560809, "STATEFP": 6, "PLACEFP": 71932, "PLACENS": 2585449, "GEOID": 671932, "NAME": "Silver City", "NAMELSAD": "Silver City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 302352, "AWATER": 0, "INTPTLAT": 36.4663058, "INTPTLON": -118.6495083, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -118.641357, 36.465472 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1389, "felt:has_geometry": true, "felt:h3_index": 644747747354917429, "STATEFP": 6, "PLACEFP": 70966, "PLACENS": 2585447, "GEOID": 670966, "NAME": "Sequoia Crest", "NAMELSAD": "Sequoia Crest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646709, "AWATER": 0, "INTPTLAT": 36.1858823, "INTPTLON": -118.6256351, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -118.619385, 36.182225 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 626, "felt:has_geometry": true, "felt:h3_index": 644747748116088140, "STATEFP": 6, "PLACEFP": 10494, "PLACENS": 2585405, "GEOID": 610494, "NAMELSAD": "Camp Nelson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3207672, "AWATER": 0, "INTPTLAT": 36.1419783, "INTPTLON": -118.61071, "NAME": "Camp Nelson,Pierpoint,Cedar Slope", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 36.137875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 915, "felt:has_geometry": true, "felt:h3_index": 644747751962263715, "STATEFP": 6, "PLACEFP": 32324, "PLACENS": 2585423, "GEOID": 632324, "NAME": "Hartland", "NAMELSAD": "Hartland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 599099, "AWATER": 0, "INTPTLAT": 36.6538667, "INTPTLON": -118.9588124, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 36.650793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1435, "felt:has_geometry": true, "felt:h3_index": 644747752687112604, "STATEFP": 6, "PLACEFP": 73794, "PLACENS": 2408799, "GEOID": 673794, "NAME": "Squaw Valley", "NAMELSAD": "Squaw Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 164758384, "AWATER": 142813, "INTPTLAT": 36.719141, "INTPTLON": -119.2026773, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.721274 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1574, "felt:has_geometry": true, "felt:h3_index": 644747755709400800, "STATEFP": 6, "PLACEFP": 85866, "PLACENS": 2585464, "GEOID": 685866, "NAME": "Wilsonia", "NAMELSAD": "Wilsonia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 705824, "AWATER": 0, "INTPTLAT": 36.734598, "INTPTLON": -118.9558466, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -118.948975, 36.730080 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1391, "felt:has_geometry": true, "felt:h3_index": 644747757604606379, "STATEFP": 6, "PLACEFP": 71078, "PLACENS": 2585448, "GEOID": 671078, "NAME": "Seville", "NAMELSAD": "Seville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 712368, "AWATER": 0, "INTPTLAT": 36.4835333, "INTPTLON": -119.2258679, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 36.483141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 775, "felt:has_geometry": true, "felt:h3_index": 644747757646210161, "STATEFP": 6, "PLACEFP": 20942, "PLACENS": 2408715, "GEOID": 620942, "NAMELSAD": "East Orosi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 642248, "AWATER": 0, "INTPTLAT": 36.5480688, "INTPTLON": -119.2598526, "NAME": "East Orosi,Cutler", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1073, "felt:has_geometry": true, "felt:h3_index": 644747764256103088, "STATEFP": 6, "PLACEFP": 42580, "PLACENS": 2408123, "GEOID": 642580, "NAME": "Lone Pine", "NAMELSAD": "Lone Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49299705, "AWATER": 468049, "INTPTLAT": 36.5744471, "INTPTLON": -118.0806101, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 36.571424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 639, "felt:has_geometry": true, "felt:h3_index": 644747764802586790, "STATEFP": 6, "PLACEFP": 11600, "PLACENS": 2407973, "GEOID": 611600, "NAME": "Cartago", "NAMELSAD": "Cartago CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3028826, "AWATER": 7192, "INTPTLAT": 36.3052395, "INTPTLON": -118.0271663, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -118.026123, 36.306272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 684, "felt:has_geometry": true, "felt:h3_index": 644747777473030838, "STATEFP": 6, "PLACEFP": 14288, "PLACENS": 2628719, "GEOID": 614288, "NAME": "Coarsegold", "NAMELSAD": "Coarsegold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44620400, "AWATER": 172119, "INTPTLAT": 37.2391838, "INTPTLON": -119.7009723, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -119.696045, 37.239075 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1590, "felt:has_geometry": true, "felt:h3_index": 644747778000791921, "STATEFP": 6, "PLACEFP": 86878, "PLACENS": 2409637, "GEOID": 686878, "NAME": "Yosemite Lakes", "NAMELSAD": "Yosemite Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54136050, "AWATER": 250537, "INTPTLAT": 37.1853582, "INTPTLON": -119.7721217, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -119.772949, 37.186579 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 536, "felt:has_geometry": true, "felt:h3_index": 644747779608432652, "STATEFP": 6, "PLACEFP": 4198, "PLACENS": 2628709, "GEOID": 604198, "NAME": "Bass Lake", "NAMELSAD": "Bass Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4874800, "AWATER": 1570518, "INTPTLAT": 37.3272815, "INTPTLON": -119.565326, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -119.564209, 37.326489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1211, "felt:has_geometry": true, "felt:h3_index": 644747780242946254, "STATEFP": 6, "PLACEFP": 52764, "PLACENS": 2408967, "GEOID": 652764, "NAME": "Oakhurst", "NAMELSAD": "Oakhurst CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 86634988, "AWATER": 19415, "INTPTLAT": 37.3413962, "INTPTLON": -119.6262147, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -119.619141, 37.335224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1192, "felt:has_geometry": true, "felt:h3_index": 644747780594680515, "STATEFP": 6, "PLACEFP": 51470, "PLACENS": 2628765, "GEOID": 651470, "NAME": "Nipinnawasee", "NAMELSAD": "Nipinnawasee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7990118, "AWATER": 0, "INTPTLAT": 37.4030526, "INTPTLON": -119.729269, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -119.729004, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 489, "felt:has_geometry": true, "felt:h3_index": 644747781168871065, "STATEFP": 6, "PLACEFP": 478, "PLACENS": 2628702, "GEOID": 600478, "NAME": "Ahwahnee", "NAMELSAD": "Ahwahnee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29896182, "AWATER": 0, "INTPTLAT": 37.3654228, "INTPTLON": -119.7165606, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1200, "felt:has_geometry": true, "felt:h3_index": 644747784219067529, "STATEFP": 6, "PLACEFP": 51868, "PLACENS": 2804436, "GEOID": 651868, "NAME": "North Fork", "NAMELSAD": "North Fork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83490248, "AWATER": 112922, "INTPTLAT": 37.2346317, "INTPTLON": -119.5210379, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -119.520264, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 543, "felt:has_geometry": true, "felt:h3_index": 644747786170317588, "STATEFP": 6, "PLACEFP": 4730, "PLACENS": 2582941, "GEOID": 604730, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6318984, "AWATER": 3006, "INTPTLAT": 37.5747403, "INTPTLON": -120.1360978, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1175, "felt:has_geometry": true, "felt:h3_index": 644747786771082475, "STATEFP": 6, "PLACEFP": 49726, "PLACENS": 2812657, "GEOID": 649726, "NAME": "Mt. Bullion", "NAMELSAD": "Mt. Bullion CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1580000, "AWATER": 1730, "INTPTLAT": 37.5086185, "INTPTLON": -120.0420805, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -120.036621, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1135, "felt:has_geometry": true, "felt:h3_index": 644747788719416102, "STATEFP": 6, "PLACEFP": 47374, "PLACENS": 2583080, "GEOID": 647374, "NAME": "Midpines", "NAMELSAD": "Midpines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11289069, "AWATER": 8983, "INTPTLAT": 37.5534113, "INTPTLON": -119.928791, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -119.926758, 37.553288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 893, "felt:has_geometry": true, "felt:h3_index": 644747789362004803, "STATEFP": 6, "PLACEFP": 30900, "PLACENS": 2583028, "GEOID": 630900, "NAME": "Greeley Hill", "NAMELSAD": "Greeley Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61850758, "AWATER": 119779, "INTPTLAT": 37.7570432, "INTPTLON": -120.1307588, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -120.124512, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 651, "felt:has_geometry": true, "felt:h3_index": 644747790500096218, "STATEFP": 6, "PLACEFP": 12062, "PLACENS": 2582968, "GEOID": 612062, "NAME": "Catheys Valley", "NAMELSAD": "Catheys Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61148098, "AWATER": 148425, "INTPTLAT": 37.4277063, "INTPTLON": -120.0960378, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -120.091553, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 940, "felt:has_geometry": true, "felt:h3_index": 644747791803659437, "STATEFP": 6, "PLACEFP": 34708, "PLACENS": 2628740, "GEOID": 634708, "NAME": "Hornitos", "NAMELSAD": "Hornitos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2989557, "AWATER": 0, "INTPTLAT": 37.5025245, "INTPTLON": -120.238859, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 583, "felt:has_geometry": true, "felt:h3_index": 644747792508084312, "STATEFP": 6, "PLACEFP": 7525, "PLACENS": 2407885, "GEOID": 607525, "NAME": "Bootjack", "NAMELSAD": "Bootjack CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9924991, "AWATER": 80795, "INTPTLAT": 37.4740444, "INTPTLON": -119.8837998, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -119.882812, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1111, "felt:has_geometry": true, "felt:h3_index": 644747792618013426, "STATEFP": 6, "PLACEFP": 45932, "PLACENS": 2408181, "GEOID": 645932, "NAME": "Mariposa", "NAMELSAD": "Mariposa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10455849, "AWATER": 8859, "INTPTLAT": 37.4912172, "INTPTLON": -119.973216, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -119.970703, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 561, "felt:has_geometry": true, "felt:h3_index": 644747799558897750, "STATEFP": 6, "PLACEFP": 6518, "PLACENS": 2628711, "GEOID": 606518, "NAME": "Big Creek", "NAMELSAD": "Big Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1191495, "AWATER": 0, "INTPTLAT": 37.2035645, "INTPTLON": -119.2484886, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -119.245605, 37.204082 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 845, "felt:has_geometry": true, "felt:h3_index": 644747804294008897, "STATEFP": 6, "PLACEFP": 24792, "PLACENS": 2830231, "GEOID": 624792, "NAME": "Foresta", "NAMELSAD": "Foresta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 958026, "AWATER": 0, "INTPTLAT": 37.6987793, "INTPTLON": -119.7482741, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -119.750977, 37.692514 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 811, "felt:has_geometry": true, "felt:h3_index": 644747804769739932, "STATEFP": 6, "PLACEFP": 22328, "PLACENS": 2583008, "GEOID": 622328, "NAME": "El Portal", "NAMELSAD": "El Portal CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4827205, "AWATER": 118590, "INTPTLAT": 37.6732408, "INTPTLON": -119.7877157, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -119.783936, 37.675125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1591, "felt:has_geometry": true, "felt:h3_index": 644747807012362256, "STATEFP": 6, "PLACEFP": 86912, "PLACENS": 2409638, "GEOID": 686912, "NAME": "Yosemite Valley", "NAMELSAD": "Yosemite Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5330276, "AWATER": 158738, "INTPTLAT": 37.7425227, "INTPTLON": -119.577626, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -119.575195, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1545, "felt:has_geometry": true, "felt:h3_index": 644747807589428272, "STATEFP": 6, "PLACEFP": 83766, "PLACENS": 2583183, "GEOID": 683766, "NAME": "Wawona", "NAMELSAD": "Wawona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2786953, "AWATER": 0, "INTPTLAT": 37.5446736, "INTPTLON": -119.6386738, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -119.641113, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 837, "felt:has_geometry": true, "felt:h3_index": 644747808119313114, "STATEFP": 6, "PLACEFP": 24218, "PLACENS": 2583013, "GEOID": 624218, "NAME": "Fish Camp", "NAMELSAD": "Fish Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1036205, "AWATER": 5626, "INTPTLAT": 37.4799003, "INTPTLON": -119.6409112, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -119.641113, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1592, "felt:has_geometry": true, "felt:h3_index": 644747808967637762, "STATEFP": 6, "PLACEFP": 86916, "PLACENS": 2813254, "GEOID": 686916, "NAME": "Yosemite West", "NAMELSAD": "Yosemite West CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 708714, "AWATER": 0, "INTPTLAT": 37.6481932, "INTPTLON": -119.7182169, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 37.649034 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1224, "felt:has_geometry": true, "felt:h3_index": 644747812644395803, "STATEFP": 6, "PLACEFP": 53505, "PLACENS": 2583103, "GEOID": 653505, "NAME": "Old Fig Garden", "NAMELSAD": "Old Fig Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4317800, "AWATER": 0, "INTPTLAT": 36.7988446, "INTPTLON": -119.8051281, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -119.805908, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1250, "felt:has_geometry": true, "felt:h3_index": 644747812842957570, "STATEFP": 6, "PLACEFP": 55842, "PLACENS": 2409036, "GEOID": 655842, "NAME": "Parkwood", "NAMELSAD": "Parkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1804074, "AWATER": 0, "INTPTLAT": 36.929270699999999, "INTPTLON": -120.04819, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -120.047607, 36.923548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 158, "felt:has_geometry": true, "felt:h3_index": 644747812986863784, "STATEFP": 6, "PLACEFP": 45022, "PLACENS": 2410906, "GEOID": 645022, "NAME": "Madera", "NAMELSAD": "Madera city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42967631, "AWATER": 0, "INTPTLAT": 36.9631786, "INTPTLON": -120.0779135, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 36.958671 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1248, "felt:has_geometry": true, "felt:h3_index": 644747813093457032, "STATEFP": 6, "PLACEFP": 55751, "PLACENS": 2409034, "GEOID": 655751, "NAME": "Parksdale", "NAMELSAD": "Parksdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4500371, "AWATER": 0, "INTPTLAT": 36.9464877, "INTPTLON": -120.0211776, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 36.941111 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1039, "felt:has_geometry": true, "felt:h3_index": 644747813586403651, "STATEFP": 6, "PLACEFP": 40872, "PLACENS": 2628749, "GEOID": 640872, "NAME": "La Vina", "NAMELSAD": "La Vina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260865, "AWATER": 0, "INTPTLAT": 36.8798651, "INTPTLON": -120.1148024, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 36.879621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 863, "felt:has_geometry": true, "felt:h3_index": 644747814374030657, "STATEFP": 6, "PLACEFP": 27014, "PLACENS": 2408265, "GEOID": 627014, "NAMELSAD": "Friant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239537, "AWATER": 130737, "INTPTLAT": 36.9840123, "INTPTLON": -119.7080595, "NAME": "Friant,Millerton", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 854, "felt:has_geometry": true, "felt:h3_index": 644747814434449683, "STATEFP": 6, "PLACEFP": 25300, "PLACENS": 2583015, "GEOID": 625300, "NAME": "Fort Washington", "NAMELSAD": "Fort Washington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 321161, "AWATER": 0, "INTPTLAT": 36.8792978, "INTPTLON": -119.761256, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -119.761963, 36.879621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1340, "felt:has_geometry": true, "felt:h3_index": 644747814620665040, "STATEFP": 6, "PLACEFP": 62625, "PLACENS": 2628784, "GEOID": 662625, "NAME": "Rolling Hills", "NAMELSAD": "Rolling Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1555414, "AWATER": 0, "INTPTLAT": 36.903962, "INTPTLON": -119.7966238, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.905980 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 578, "felt:has_geometry": true, "felt:h3_index": 644747815029937379, "STATEFP": 6, "PLACEFP": 7378, "PLACENS": 2805049, "GEOID": 607378, "NAME": "Bonadelle Ranchos", "NAMELSAD": "Bonadelle Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23343618, "AWATER": 0, "INTPTLAT": 36.9688065, "INTPTLON": -119.8927786, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -119.893799, 36.967449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1100, "felt:has_geometry": true, "felt:h3_index": 644747815604085862, "STATEFP": 6, "PLACEFP": 45054, "PLACENS": 2805050, "GEOID": 645054, "NAME": "Madera Ranchos", "NAMELSAD": "Madera Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6747243, "AWATER": 0, "INTPTLAT": 36.92791, "INTPTLON": -119.8772833, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -119.871826, 36.923548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1559, "felt:has_geometry": true, "felt:h3_index": 644747816066885171, "STATEFP": 6, "PLACEFP": 84680, "PLACENS": 2628799, "GEOID": 684680, "NAME": "West Park", "NAMELSAD": "West Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4640398, "AWATER": 0, "INTPTLAT": 36.7055261, "INTPTLON": -119.8515482, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -119.849854, 36.703660 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1309, "felt:has_geometry": true, "felt:h3_index": 644747816642026160, "STATEFP": 6, "PLACEFP": 59290, "PLACENS": 2409124, "GEOID": 659290, "NAME": "Raisin City", "NAMELSAD": "Raisin City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1967173, "AWATER": 0, "INTPTLAT": 36.6032623, "INTPTLON": -119.9091581, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -119.904785, 36.597889 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 336, "felt:has_geometry": true, "felt:h3_index": 644747817176709852, "STATEFP": 6, "PLACEFP": 38226, "PLACENS": 2411536, "GEOID": 638226, "NAME": "Kerman", "NAMELSAD": "Kerman city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8697690, "AWATER": 0, "INTPTLAT": 36.7250406, "INTPTLON": -120.0624734, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 36.721274 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 565, "felt:has_geometry": true, "felt:h3_index": 644747817615988385, "STATEFP": 6, "PLACEFP": 6728, "PLACENS": 2407849, "GEOID": 606728, "NAME": "Biola", "NAMELSAD": "Biola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1675805, "AWATER": 0, "INTPTLAT": 36.7999379, "INTPTLON": -120.0210376, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1470, "felt:has_geometry": true, "felt:h3_index": 644747818230253200, "STATEFP": 6, "PLACEFP": 77960, "PLACENS": 2583159, "GEOID": 677960, "NAME": "Tarpey Village", "NAMELSAD": "Tarpey Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2043494, "AWATER": 0, "INTPTLAT": 36.7940453, "INTPTLON": -119.7011976, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -119.696045, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 380, "felt:has_geometry": true, "felt:h3_index": 644747818578917681, "STATEFP": 6, "PLACEFP": 14218, "PLACENS": 2409488, "GEOID": 614218, "NAME": "Clovis", "NAMELSAD": "Clovis city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 66957051, "AWATER": 309836, "INTPTLAT": 36.8289665, "INTPTLON": -119.6849217, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -119.685059, 36.826875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 618, "felt:has_geometry": true, "felt:h3_index": 644747818737613745, "STATEFP": 6, "PLACEFP": 10032, "PLACENS": 2582958, "GEOID": 610032, "NAMELSAD": "Calwa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1470052, "AWATER": 29829, "INTPTLAT": 36.7134766, "INTPTLON": -119.7608602, "NAME": "Calwa,Sunnyside,Malaga", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -119.761963, 36.712467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1117, "felt:has_geometry": true, "felt:h3_index": 644747818879343533, "STATEFP": 6, "PLACEFP": 46400, "PLACENS": 2583075, "GEOID": 646400, "NAMELSAD": "Mayfair CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1342684, "AWATER": 0, "INTPTLAT": 36.7693457, "INTPTLON": -119.7612619, "NAME": "Mayfair,Fresno", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -119.761963, 36.765292 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 199, "felt:has_geometry": true, "felt:h3_index": 644747820390188740, "STATEFP": 6, "PLACEFP": 13294, "PLACENS": 2409459, "GEOID": 613294, "NAME": "Chowchilla", "NAMELSAD": "Chowchilla city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28713589, "AWATER": 119504, "INTPTLAT": 37.1161043, "INTPTLON": -120.2419783, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 37.116526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 825, "felt:has_geometry": true, "felt:h3_index": 644747821194675803, "STATEFP": 6, "PLACEFP": 23210, "PLACENS": 2583011, "GEOID": 623210, "NAME": "Fairmead", "NAMELSAD": "Fairmead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20018088, "AWATER": 0, "INTPTLAT": 37.0774661, "INTPTLON": -120.1936593, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 37.072710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1044, "felt:has_geometry": true, "felt:h3_index": 644747824191334660, "STATEFP": 6, "PLACEFP": 41040, "PLACENS": 2408590, "GEOID": 641040, "NAME": "Le Grand", "NAMELSAD": "Le Grand CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2953204, "AWATER": 0, "INTPTLAT": 37.2288146, "INTPTLON": -120.2540024, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -120.256348, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1283, "felt:has_geometry": true, "felt:h3_index": 644747824221921803, "STATEFP": 6, "PLACEFP": 57582, "PLACENS": 2409081, "GEOID": 657582, "NAME": "Planada", "NAMELSAD": "Planada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4511785, "AWATER": 0, "INTPTLAT": 37.2902022, "INTPTLON": -120.3216317, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -120.322266, 37.291535 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1099, "felt:has_geometry": true, "felt:h3_index": 644747827306739501, "STATEFP": 6, "PLACEFP": 45050, "PLACENS": 2408158, "GEOID": 645050, "NAME": "Madera Acres", "NAMELSAD": "Madera Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18560291, "AWATER": 0, "INTPTLAT": 37.0126384, "INTPTLON": -120.0797304, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 37.011326 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1394, "felt:has_geometry": true, "felt:h3_index": 644747832495626590, "STATEFP": 6, "PLACEFP": 71246, "PLACENS": 2408722, "GEOID": 671246, "NAME": "Shaver Lake", "NAMELSAD": "Shaver Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83623481, "AWATER": 5897217, "INTPTLAT": 37.0991842, "INTPTLON": -119.3256772, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -119.322510, 37.099003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 525, "felt:has_geometry": true, "felt:h3_index": 644747832813524064, "STATEFP": 6, "PLACEFP": 3190, "PLACENS": 2407779, "GEOID": 603190, "NAME": "Auberry", "NAMELSAD": "Auberry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 120251753, "AWATER": 1032543, "INTPTLAT": 37.0886542, "INTPTLON": -119.4507568, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1185, "felt:has_geometry": true, "felt:h3_index": 644747846698677542, "STATEFP": 6, "PLACEFP": 51028, "PLACENS": 2583090, "GEOID": 651028, "NAME": "New Cuyama", "NAMELSAD": "New Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1637550, "AWATER": 0, "INTPTLAT": 34.9430572, "INTPTLON": -119.6820182, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -119.674072, 34.939985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 831, "felt:has_geometry": true, "felt:h3_index": 644747848426205812, "STATEFP": 6, "PLACEFP": 23812, "PLACENS": 2408207, "GEOID": 623812, "NAME": "Fellows", "NAMELSAD": "Fellows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1801266, "AWATER": 0, "INTPTLAT": 35.1779287, "INTPTLON": -119.5472109, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -119.542236, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 367, "felt:has_geometry": true, "felt:h3_index": 644747848510120284, "STATEFP": 6, "PLACEFP": 77574, "PLACENS": 2412026, "GEOID": 677574, "NAME": "Taft", "NAMELSAD": "Taft city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39552120, "AWATER": 0, "INTPTLAT": 35.126696, "INTPTLON": -119.4241938, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -119.421387, 35.128894 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 844, "felt:has_geometry": true, "felt:h3_index": 644747848642569509, "STATEFP": 6, "PLACEFP": 24764, "PLACENS": 2408226, "GEOID": 624764, "NAMELSAD": "Ford City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3974713, "AWATER": 0, "INTPTLAT": 35.1647352, "INTPTLON": -119.4584001, "NAME": "Ford City,Taft Heights,South Taft", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -119.454346, 35.164828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 307, "felt:has_geometry": true, "felt:h3_index": 644747849145864875, "STATEFP": 6, "PLACEFP": 45736, "PLACENS": 2411033, "GEOID": 645736, "NAME": "Maricopa", "NAMELSAD": "Maricopa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4054515, "AWATER": 0, "INTPTLAT": 35.050942, "INTPTLON": -119.406605, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -119.399414, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 736, "felt:has_geometry": true, "felt:h3_index": 644747849762672988, "STATEFP": 6, "PLACEFP": 18926, "PLACENS": 2408660, "GEOID": 618926, "NAME": "Derby Acres", "NAMELSAD": "Derby Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9274814, "AWATER": 0, "INTPTLAT": 35.2440253, "INTPTLON": -119.603833, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -119.597168, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 721, "felt:has_geometry": true, "felt:h3_index": 644747850852946089, "STATEFP": 6, "PLACEFP": 17727, "PLACENS": 2582989, "GEOID": 617727, "NAME": "Cuyama", "NAMELSAD": "Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1174244, "AWATER": 11429, "INTPTLAT": 34.9310567, "INTPTLON": -119.6148797, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -119.608154, 34.930979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 762, "felt:has_geometry": true, "felt:h3_index": 644747864549918555, "STATEFP": 6, "PLACEFP": 20284, "PLACENS": 2408697, "GEOID": 620284, "NAME": "Dustin Acres", "NAMELSAD": "Dustin Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9521683, "AWATER": 0, "INTPTLAT": 35.2159286, "INTPTLON": -119.3749872, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -119.377441, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 896, "felt:has_geometry": true, "felt:h3_index": 644747865589081875, "STATEFP": 6, "PLACEFP": 30987, "PLACENS": 2628815, "GEOID": 630987, "NAMELSAD": "Greenfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3433778, "AWATER": 0, "INTPTLAT": 35.269489, "INTPTLON": -119.0094914, "NAME": "Greenfield,Pumpkin Center", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -119.003906, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1546, "felt:has_geometry": true, "felt:h3_index": 644747865746768664, "STATEFP": 6, "PLACEFP": 83863, "PLACENS": 2409538, "GEOID": 683863, "NAME": "Weedpatch", "NAMELSAD": "Weedpatch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9212054, "AWATER": 11548, "INTPTLAT": 35.2358918, "INTPTLON": -118.9095605, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -118.905029, 35.236646 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 791, "felt:has_geometry": true, "felt:h3_index": 644747865892179356, "STATEFP": 6, "PLACEFP": 21691, "PLACENS": 2804119, "GEOID": 621691, "NAME": "El Adobe", "NAMELSAD": "El Adobe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2594445, "AWATER": 0, "INTPTLAT": 35.2450825, "INTPTLON": -118.9588417, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1225, "felt:has_geometry": true, "felt:h3_index": 644747867351624216, "STATEFP": 6, "PLACEFP": 53574, "PLACENS": 2804424, "GEOID": 653574, "NAMELSAD": "Old River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2550660, "AWATER": 0, "INTPTLAT": 35.2671232, "INTPTLON": -119.1055226, "NAME": "Old River,Lakeside", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -119.102783, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1131, "felt:has_geometry": true, "felt:h3_index": 644747869765632337, "STATEFP": 6, "PLACEFP": 47164, "PLACENS": 2408825, "GEOID": 647164, "NAME": "Mettler", "NAMELSAD": "Mettler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 602290, "AWATER": 0, "INTPTLAT": 35.0635633, "INTPTLON": -118.9729799, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -118.970947, 35.056980 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 608, "felt:has_geometry": true, "felt:h3_index": 644747872724656994, "STATEFP": 6, "PLACEFP": 9332, "PLACENS": 2407932, "GEOID": 609332, "NAME": "Buttonwillow", "NAMELSAD": "Buttonwillow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17941128, "AWATER": 0, "INTPTLAT": 35.4092286, "INTPTLON": -119.4406682, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 35.406961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1132, "felt:has_geometry": true, "felt:h3_index": 644747874819988396, "STATEFP": 6, "PLACEFP": 47192, "PLACENS": 2629763, "GEOID": 647192, "NAMELSAD": "Mexican Colony CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82312, "AWATER": 0, "INTPTLAT": 35.4689297, "INTPTLON": -119.2687123, "NAME": "Mexican Colony,Cherokee Strip,Smith Corner", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 35.469618 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1515, "felt:has_geometry": true, "felt:h3_index": 644747877064181579, "STATEFP": 6, "PLACEFP": 81722, "PLACENS": 2409395, "GEOID": 681722, "NAME": "Valley Acres", "NAMELSAD": "Valley Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10677289, "AWATER": 0, "INTPTLAT": 35.2086679, "INTPTLON": -119.4106505, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -119.410400, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1096, "felt:has_geometry": true, "felt:h3_index": 644747878039075036, "STATEFP": 6, "PLACEFP": 44924, "PLACENS": 2408203, "GEOID": 644924, "NAME": "McKittrick", "NAMELSAD": "McKittrick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778294, "AWATER": 0, "INTPTLAT": 35.2980277, "INTPTLON": -119.6249215, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -119.619141, 35.299435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1439, "felt:has_geometry": true, "felt:h3_index": 644747878718695588, "STATEFP": 6, "PLACEFP": 74021, "PLACENS": 2804431, "GEOID": 674021, "NAME": "Stebbins", "NAMELSAD": "Stebbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2588072, "AWATER": 0, "INTPTLAT": 35.4056497, "INTPTLON": -119.3141782, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 35.406961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1502, "felt:has_geometry": true, "felt:h3_index": 644747878871016280, "STATEFP": 6, "PLACEFP": 80784, "PLACENS": 2409363, "GEOID": 680784, "NAME": "Tupman", "NAMELSAD": "Tupman CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1367277, "AWATER": 0, "INTPTLAT": 35.2987427, "INTPTLON": -119.3576736, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 35.299435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 767, "felt:has_geometry": true, "felt:h3_index": 644747884789663564, "STATEFP": 6, "PLACEFP": 20574, "PLACENS": 2813349, "GEOID": 620574, "NAME": "Eastern Goleta Valley", "NAMELSAD": "Eastern Goleta Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42981068, "AWATER": 755520, "INTPTLAT": 34.4439133, "INTPTLON": -119.7854766, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -119.783936, 34.443159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1144, "felt:has_geometry": true, "felt:h3_index": 644747885118043265, "STATEFP": 6, "PLACEFP": 48147, "PLACENS": 2408843, "GEOID": 648147, "NAME": "Mission Canyon", "NAMELSAD": "Mission Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4662212, "AWATER": 77753, "INTPTLAT": 34.4562519, "INTPTLON": -119.7169892, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 423, "felt:has_geometry": true, "felt:h3_index": 644747885459913905, "STATEFP": 6, "PLACEFP": 30378, "PLACENS": 2015546, "GEOID": 630378, "NAMELSAD": "Goleta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20339515, "AWATER": 187022, "INTPTLAT": 34.4354411, "INTPTLON": -119.8589464, "NAME": "Goleta,University of California-Santa Barbara,Isla Vista", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -119.860840, 34.434098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 872, "felt:has_geometry": true, "felt:h3_index": 644747894815397417, "STATEFP": 6, "PLACEFP": 29070, "PLACENS": 2583023, "GEOID": 629070, "NAMELSAD": "Garey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3275825, "AWATER": 9827, "INTPTLAT": 34.8858212, "INTPTLON": -120.3137504, "NAME": "Garey,Sisquoc", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -120.311279, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1275, "felt:has_geometry": true, "felt:h3_index": 644747899956521396, "STATEFP": 6, "PLACEFP": 57240, "PLACENS": 2409069, "GEOID": 657240, "NAME": "Pine Mountain Club", "NAMELSAD": "Pine Mountain Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43647394, "AWATER": 16918, "INTPTLAT": 34.8408949, "INTPTLON": -119.1685406, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -119.168701, 34.840859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 652, "felt:has_geometry": true, "felt:h3_index": 644747915418359645, "STATEFP": 6, "PLACEFP": 12132, "PLACENS": 2407994, "GEOID": 612132, "NAME": "Cayucos", "NAMELSAD": "Cayucos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8028952, "AWATER": 2418782, "INTPTLAT": 35.4395808, "INTPTLON": -120.8898281, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -120.882568, 35.433820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 621, "felt:has_geometry": true, "felt:h3_index": 644747916666027178, "STATEFP": 6, "PLACEFP": 10074, "PLACENS": 2407941, "GEOID": 610074, "NAME": "Cambria", "NAMELSAD": "Cambria CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21803724, "AWATER": 0, "INTPTLAT": 35.5520688, "INTPTLON": -121.0841373, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 35.550105 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 453, "felt:has_geometry": true, "felt:h3_index": 644747917244440605, "STATEFP": 6, "PLACEFP": 22300, "PLACENS": 2410415, "GEOID": 622300, "NAME": "El Paso de Robles (Paso Robles)", "NAMELSAD": "El Paso de Robles (Paso Robles) city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51579271, "AWATER": 29864, "INTPTLAT": 35.6285131, "INTPTLON": -120.6503559, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1475, "felt:has_geometry": true, "felt:h3_index": 644747917556128365, "STATEFP": 6, "PLACEFP": 78162, "PLACENS": 2410065, "GEOID": 678162, "NAME": "Templeton", "NAMELSAD": "Templeton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20484546, "AWATER": 0, "INTPTLAT": 35.5560235, "INTPTLON": -120.7181665, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -120.717773, 35.550105 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1017, "felt:has_geometry": true, "felt:h3_index": 644747918461971753, "STATEFP": 6, "PLACEFP": 39670, "PLACENS": 2408546, "GEOID": 639670, "NAME": "Lake Nacimiento", "NAMELSAD": "Lake Nacimiento CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27172014, "AWATER": 60669, "INTPTLAT": 35.730962, "INTPTLON": -120.8695164, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -120.871582, 35.728677 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 454, "felt:has_geometry": true, "felt:h3_index": 644747919127909449, "STATEFP": 6, "PLACEFP": 49362, "PLACENS": 2411169, "GEOID": 649362, "NAME": "Morro Bay", "NAMELSAD": "Morro Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13826501, "AWATER": 12914764, "INTPTLAT": 35.3667732, "INTPTLON": -120.8682895, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -120.860596, 35.362176 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1079, "felt:has_geometry": true, "felt:h3_index": 644747920002423320, "STATEFP": 6, "PLACEFP": 44182, "PLACENS": 2407812, "GEOID": 644182, "NAME": "Los Osos", "NAMELSAD": "Los Osos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33057047, "AWATER": 52650, "INTPTLAT": 35.3070832, "INTPTLON": -120.8245216, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -120.816650, 35.308401 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 375, "felt:has_geometry": true, "felt:h3_index": 644747921741987202, "STATEFP": 6, "PLACEFP": 3064, "PLACENS": 2409745, "GEOID": 603064, "NAME": "Atascadero", "NAMELSAD": "Atascadero city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67524872, "AWATER": 161112, "INTPTLAT": 35.4857179, "INTPTLON": -120.687942, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -120.684814, 35.487511 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 871, "felt:has_geometry": true, "felt:h3_index": 644747922093441386, "STATEFP": 6, "PLACEFP": 28210, "PLACENS": 2583022, "GEOID": 628210, "NAMELSAD": "Garden Farms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2831739, "AWATER": 0, "INTPTLAT": 35.4157817, "INTPTLON": -120.6140342, "NAME": "Garden Farms,Santa Margarita", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.415915 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1066, "felt:has_geometry": true, "felt:h3_index": 644747925786418421, "STATEFP": 6, "PLACEFP": 42146, "PLACENS": 2583058, "GEOID": 642146, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28157116, "AWATER": 86923, "INTPTLAT": 35.9400827, "INTPTLON": -121.078282, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 35.933541 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 852, "felt:has_geometry": true, "felt:h3_index": 644747926684172352, "STATEFP": 6, "PLACEFP": 25093, "PLACENS": 2805235, "GEOID": 625093, "NAME": "Fort Hunter Liggett", "NAMELSAD": "Fort Hunter Liggett CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7198561, "AWATER": 79767, "INTPTLAT": 35.992329, "INTPTLON": -121.2348698, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -121.234131, 35.986896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1375, "felt:has_geometry": true, "felt:h3_index": 644747928544318214, "STATEFP": 6, "PLACEFP": 68434, "PLACENS": 2583127, "GEOID": 668434, "NAME": "San Simeon", "NAMELSAD": "San Simeon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2063264, "AWATER": 0, "INTPTLAT": 35.6182056, "INTPTLON": -121.137438, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 35.612651 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1214, "felt:has_geometry": true, "felt:h3_index": 644747930143155597, "STATEFP": 6, "PLACEFP": 53160, "PLACENS": 2583101, "GEOID": 653160, "NAME": "Oak Shores", "NAMELSAD": "Oak Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13178331, "AWATER": 2012447, "INTPTLAT": 35.7607589, "INTPTLON": -120.9828249, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 35.755428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1392, "felt:has_geometry": true, "felt:h3_index": 644747932226194357, "STATEFP": 6, "PLACEFP": 71134, "PLACENS": 2408721, "GEOID": 671134, "NAME": "Shandon", "NAMELSAD": "Shandon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639224, "AWATER": 113009, "INTPTLAT": 35.6536085, "INTPTLON": -120.3831476, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 35.648369 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1568, "felt:has_geometry": true, "felt:h3_index": 644747933888473602, "STATEFP": 6, "PLACEFP": 85222, "PLACENS": 2583185, "GEOID": 685222, "NAME": "Whitley Gardens", "NAMELSAD": "Whitley Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3396918, "AWATER": 28851, "INTPTLAT": 35.6563222, "INTPTLON": -120.5081122, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -120.509033, 35.657296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 713, "felt:has_geometry": true, "felt:h3_index": 644747937433283797, "STATEFP": 6, "PLACEFP": 17232, "PLACENS": 2628724, "GEOID": 617232, "NAME": "Creston", "NAMELSAD": "Creston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1460395, "AWATER": 12359, "INTPTLAT": 35.5170972, "INTPTLON": -120.518136, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -120.520020, 35.514343 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1366, "felt:has_geometry": true, "felt:h3_index": 644747941889770099, "STATEFP": 6, "PLACEFP": 64476, "PLACENS": 2409249, "GEOID": 664476, "NAME": "San Ardo", "NAMELSAD": "San Ardo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1163657, "AWATER": 0, "INTPTLAT": 36.023699, "INTPTLON": -120.9073068, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -120.904541, 36.022447 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1373, "felt:has_geometry": true, "felt:h3_index": 644747944890350233, "STATEFP": 6, "PLACEFP": 68266, "PLACENS": 2409265, "GEOID": 668266, "NAME": "San Miguel", "NAMELSAD": "San Miguel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350219, "AWATER": 0, "INTPTLAT": 35.753402, "INTPTLON": -120.6923925, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -120.684814, 35.755428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 591, "felt:has_geometry": true, "felt:h3_index": 644747946277486941, "STATEFP": 6, "PLACEFP": 7974, "PLACENS": 2407899, "GEOID": 607974, "NAME": "Bradley", "NAMELSAD": "Bradley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 222711, "AWATER": 0, "INTPTLAT": 35.8628398, "INTPTLON": -120.8042676, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 35.862344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 789, "felt:has_geometry": true, "felt:h3_index": 644747967039661315, "STATEFP": 6, "PLACEFP": 21565, "PLACENS": 2583005, "GEOID": 621565, "NAME": "Edna", "NAMELSAD": "Edna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3158448, "AWATER": 0, "INTPTLAT": 35.2107858, "INTPTLON": -120.6059679, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 455, "felt:has_geometry": true, "felt:h3_index": 644747967536964293, "STATEFP": 6, "PLACEFP": 68154, "PLACENS": 2411796, "GEOID": 668154, "NAME": "San Luis Obispo", "NAMELSAD": "San Luis Obispo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34883862, "AWATER": 380513, "INTPTLAT": 35.2661952, "INTPTLON": -120.6684376, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 614, "felt:has_geometry": true, "felt:h3_index": 644747967904224288, "STATEFP": 6, "PLACEFP": 9835, "PLACENS": 2805238, "GEOID": 609835, "NAME": "California Polytechnic State University", "NAMELSAD": "California Polytechnic State University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3983144, "AWATER": 22384, "INTPTLAT": 35.3069806, "INTPTLON": -120.6672761, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 35.308401 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1080, "felt:has_geometry": true, "felt:h3_index": 644747968310007968, "STATEFP": 6, "PLACEFP": 44242, "PLACENS": 2583065, "GEOID": 644242, "NAME": "Los Ranchos", "NAMELSAD": "Los Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7482152, "AWATER": 8695, "INTPTLAT": 35.2126991, "INTPTLON": -120.6280302, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1193, "felt:has_geometry": true, "felt:h3_index": 644747970713575779, "STATEFP": 6, "PLACEFP": 51476, "PLACENS": 2408927, "GEOID": 651476, "NAME": "Nipomo", "NAMELSAD": "Nipomo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39044101, "AWATER": 985, "INTPTLAT": 35.0306599, "INTPTLON": -120.4977565, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1077, "felt:has_geometry": true, "felt:h3_index": 644747970854218868, "STATEFP": 6, "PLACEFP": 44042, "PLACENS": 2583063, "GEOID": 644042, "NAME": "Los Berros", "NAMELSAD": "Los Berros CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6507454, "AWATER": 0, "INTPTLAT": 35.0809068, "INTPTLON": -120.5450358, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 35.074965 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 567, "felt:has_geometry": true, "felt:h3_index": 644747971356265233, "STATEFP": 6, "PLACEFP": 6935, "PLACENS": 2582945, "GEOID": 606935, "NAMELSAD": "Blacklake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2707660, "AWATER": 0, "INTPTLAT": 35.0496895, "INTPTLON": -120.538642, "NAME": "Blacklake,Callender,Woodlands", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 377, "felt:has_geometry": true, "felt:h3_index": 644747971776234794, "STATEFP": 6, "PLACEFP": 57414, "PLACENS": 2411429, "GEOID": 657414, "NAME": "Pismo Beach", "NAMELSAD": "Pismo Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9057591, "AWATER": 25582378, "INTPTLAT": 35.1531734, "INTPTLON": -120.6738743, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 35.146863 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 529, "felt:has_geometry": true, "felt:h3_index": 644747971911081101, "STATEFP": 6, "PLACEFP": 3330, "PLACENS": 2582937, "GEOID": 603330, "NAME": "Avila Beach", "NAMELSAD": "Avila Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15761159, "AWATER": 580356, "INTPTLAT": 35.1993549, "INTPTLON": -120.7207571, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -120.717773, 35.200745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 376, "felt:has_geometry": true, "felt:h3_index": 644747972085499150, "STATEFP": 6, "PLACEFP": 31393, "PLACENS": 2410668, "GEOID": 631393, "NAMELSAD": "Grover Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5988133, "AWATER": 11431, "INTPTLAT": 35.1208877, "INTPTLON": -120.6196642, "NAME": "Grover Beach,Arroyo Grande", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -120.618896, 35.119909 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1219, "felt:has_geometry": true, "felt:h3_index": 644747972561421937, "STATEFP": 6, "PLACEFP": 53294, "PLACENS": 2408974, "GEOID": 653294, "NAME": "Oceano", "NAMELSAD": "Oceano CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3979427, "AWATER": 39216, "INTPTLAT": 35.1016077, "INTPTLON": -120.608217, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.101934 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1013, "felt:has_geometry": true, "felt:h3_index": 644747983533164040, "STATEFP": 6, "PLACEFP": 39570, "PLACENS": 2408538, "GEOID": 639570, "NAME": "Lake Isabella", "NAMELSAD": "Lake Isabella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56239883, "AWATER": 1098346, "INTPTLAT": 35.6370977, "INTPTLON": -118.4826097, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1171, "felt:has_geometry": true, "felt:h3_index": 644747983810348164, "STATEFP": 6, "PLACEFP": 49600, "PLACENS": 2408881, "GEOID": 649600, "NAMELSAD": "Mountain Mesa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2246361, "AWATER": 0, "INTPTLAT": 35.6411374, "INTPTLON": -118.4046454, "NAME": "Mountain Mesa,Squirrel Mountain Valley", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -118.399658, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 575, "felt:has_geometry": true, "felt:h3_index": 644747984072293270, "STATEFP": 6, "PLACEFP": 7274, "PLACENS": 2407873, "GEOID": 607274, "NAME": "Bodfish", "NAMELSAD": "Bodfish CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21273286, "AWATER": 31784, "INTPTLAT": 35.5734164, "INTPTLON": -118.4864408, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -118.487549, 35.567980 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 879, "felt:has_geometry": true, "felt:h3_index": 644747984836650157, "STATEFP": 6, "PLACEFP": 30126, "PLACENS": 2804407, "GEOID": 630126, "NAME": "Glennville", "NAMELSAD": "Glennville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4889260, "AWATER": 0, "INTPTLAT": 35.7241937, "INTPTLON": -118.7152172, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -118.707275, 35.719758 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 505, "felt:has_geometry": true, "felt:h3_index": 644747984907617924, "STATEFP": 6, "PLACEFP": 1358, "PLACENS": 2804107, "GEOID": 601358, "NAME": "Alta Sierra", "NAMELSAD": "Alta Sierra CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2631092, "AWATER": 1178, "INTPTLAT": 35.7257758, "INTPTLON": -118.5451664, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -118.542480, 35.719758 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1548, "felt:has_geometry": true, "felt:h3_index": 644747986326460268, "STATEFP": 6, "PLACEFP": 83948, "PLACENS": 2409540, "GEOID": 683948, "NAME": "Weldon", "NAMELSAD": "Weldon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69057891, "AWATER": 391674, "INTPTLAT": 35.6441026, "INTPTLON": -118.3090882, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -118.311768, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1230, "felt:has_geometry": true, "felt:h3_index": 644747986590942795, "STATEFP": 6, "PLACEFP": 53910, "PLACENS": 2408991, "GEOID": 653910, "NAME": "Onyx", "NAMELSAD": "Onyx CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29658338, "AWATER": 203115, "INTPTLAT": 35.67022, "INTPTLON": -118.2271631, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -118.223877, 35.666222 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1578, "felt:has_geometry": true, "felt:h3_index": 644747987398547217, "STATEFP": 6, "PLACEFP": 86174, "PLACENS": 2409619, "GEOID": 686174, "NAME": "Wofford Heights", "NAMELSAD": "Wofford Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16579394, "AWATER": 460, "INTPTLAT": 35.714951, "INTPTLON": -118.4726643, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -118.465576, 35.710838 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 984, "felt:has_geometry": true, "felt:h3_index": 644747987560177964, "STATEFP": 6, "PLACEFP": 38310, "PLACENS": 2408474, "GEOID": 638310, "NAME": "Kernville", "NAMELSAD": "Kernville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32727820, "AWATER": 797180, "INTPTLAT": 35.7550172, "INTPTLON": -118.4309073, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -118.432617, 35.755428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 207, "felt:has_geometry": true, "felt:h3_index": 644747993372731018, "STATEFP": 6, "PLACEFP": 58240, "PLACENS": 2411470, "GEOID": 658240, "NAME": "Porterville", "NAMELSAD": "Porterville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48294868, "AWATER": 141831, "INTPTLAT": 36.063542, "INTPTLON": -119.0336003, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 36.057981 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 777, "felt:has_geometry": true, "felt:h3_index": 644747993605562733, "STATEFP": 6, "PLACEFP": 21012, "PLACENS": 2408032, "GEOID": 621012, "NAME": "East Porterville", "NAMELSAD": "East Porterville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5496322, "AWATER": 0, "INTPTLAT": 36.0581549, "INTPTLON": -118.9748923, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -118.970947, 36.057981 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1478, "felt:has_geometry": true, "felt:h3_index": 644747993753774225, "STATEFP": 6, "PLACEFP": 78288, "PLACENS": 2410068, "GEOID": 678288, "NAME": "Terra Bella", "NAMELSAD": "Terra Bella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5668357, "AWATER": 0, "INTPTLAT": 35.9600114, "INTPTLON": -119.0385283, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -119.036865, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1434, "felt:has_geometry": true, "felt:h3_index": 644747995392888155, "STATEFP": 6, "PLACEFP": 73710, "PLACENS": 2408798, "GEOID": 673710, "NAME": "Springville", "NAMELSAD": "Springville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3933608, "AWATER": 35439, "INTPTLAT": 36.1208672, "INTPTLON": -118.822825, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 36.120128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1584, "felt:has_geometry": true, "felt:h3_index": 644747997053888913, "STATEFP": 6, "PLACEFP": 86496, "PLACENS": 2804433, "GEOID": 686496, "NAME": "Woody", "NAMELSAD": "Woody CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10453539, "AWATER": 0, "INTPTLAT": 35.7081483, "INTPTLON": -118.8143965, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 35.701917 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 759, "felt:has_geometry": true, "felt:h3_index": 644747997624067506, "STATEFP": 6, "PLACEFP": 20032, "PLACENS": 2408692, "GEOID": 620032, "NAME": "Ducor", "NAMELSAD": "Ducor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1442359, "AWATER": 0, "INTPTLAT": 35.892701, "INTPTLON": -119.0470096, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -119.047852, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 612, "felt:has_geometry": true, "felt:h3_index": 644747998616816278, "STATEFP": 6, "PLACEFP": 9822, "PLACENS": 2585404, "GEOID": 609822, "NAMELSAD": "California Hot Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2334885, "AWATER": 0, "INTPTLAT": 35.8875684, "INTPTLON": -118.6550221, "NAME": "California Hot Springs,Pine Flat", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 945, "felt:has_geometry": true, "felt:h3_index": 644747999107826817, "STATEFP": 6, "PLACEFP": 36168, "PLACENS": 2585425, "GEOID": 636168, "NAMELSAD": "Idlewild CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1189519, "AWATER": 0, "INTPTLAT": 35.809588, "INTPTLON": -118.6704627, "NAME": "Idlewild,Posey,McClenney Tract,Poso Park", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -118.663330, 35.808904 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1450, "felt:has_geometry": true, "felt:h3_index": 644747999393235232, "STATEFP": 6, "PLACEFP": 75592, "PLACENS": 2585451, "GEOID": 675592, "NAMELSAD": "Sugarloaf Saw Mill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 252263, "AWATER": 0, "INTPTLAT": 35.8342994, "INTPTLON": -118.6165411, "NAME": "Sugarloaf Saw Mill,Sugarloaf Village,Panorama Heights", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 35.835628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1257, "felt:has_geometry": true, "felt:h3_index": 644748003553121640, "STATEFP": 6, "PLACEFP": 56294, "PLACENS": 2409043, "GEOID": 656294, "NAME": "Pearsonville", "NAMELSAD": "Pearsonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10648134, "AWATER": 210748, "INTPTLAT": 35.8229451, "INTPTLON": -117.87825, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -117.872314, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 670, "felt:has_geometry": true, "felt:h3_index": 644748007264425394, "STATEFP": 6, "PLACEFP": 13157, "PLACENS": 2408027, "GEOID": 613157, "NAME": "China Lake Acres", "NAMELSAD": "China Lake Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13491529, "AWATER": 2579, "INTPTLAT": 35.6400189, "INTPTLON": -117.7664577, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -117.762451, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 954, "felt:has_geometry": true, "felt:h3_index": 644748007861981726, "STATEFP": 6, "PLACEFP": 36658, "PLACENS": 2408430, "GEOID": 636658, "NAME": "Inyokern", "NAMELSAD": "Inyokern CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28301165, "AWATER": 2685, "INTPTLAT": 35.6543866, "INTPTLON": -117.8194759, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -117.817383, 35.648369 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1327, "felt:has_geometry": true, "felt:h3_index": 644748008066535826, "STATEFP": 6, "PLACEFP": 60705, "PLACENS": 2804429, "GEOID": 660705, "NAME": "Ridgecrest Heights", "NAMELSAD": "Ridgecrest Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1564204, "AWATER": 0, "INTPTLAT": 35.6019004, "INTPTLON": -117.7041798, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -117.696533, 35.603719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1290, "felt:has_geometry": true, "felt:h3_index": 644748011080167693, "STATEFP": 6, "PLACEFP": 58134, "PLACENS": 2585440, "GEOID": 658134, "NAME": "Ponderosa", "NAMELSAD": "Ponderosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2099863, "AWATER": 9090, "INTPTLAT": 36.1046931, "INTPTLON": -118.5319148, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -118.531494, 36.102376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 979, "felt:has_geometry": true, "felt:h3_index": 644748016219490121, "STATEFP": 6, "PLACEFP": 38076, "PLACENS": 2585427, "GEOID": 638076, "NAME": "Kennedy Meadows", "NAMELSAD": "Kennedy Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15080914, "AWATER": 0, "INTPTLAT": 36.0076393, "INTPTLON": -118.1099468, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -118.103027, 36.004673 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 975, "felt:has_geometry": true, "felt:h3_index": 644748017925478132, "STATEFP": 6, "PLACEFP": 37946, "PLACENS": 2408467, "GEOID": 637946, "NAME": "Keene", "NAMELSAD": "Keene CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24459682, "AWATER": 13903, "INTPTLAT": 35.2317801, "INTPTLON": -118.6130668, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 35.227672 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 544, "felt:has_geometry": true, "felt:h3_index": 644748018489412126, "STATEFP": 6, "PLACEFP": 4734, "PLACENS": 2407815, "GEOID": 604734, "NAME": "Bear Valley Springs", "NAMELSAD": "Bear Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100685639, "AWATER": 173880, "INTPTLAT": 35.1783554, "INTPTLON": -118.669618, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -118.663330, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 787, "felt:has_geometry": true, "felt:h3_index": 644748019120552274, "STATEFP": 6, "PLACEFP": 21544, "PLACENS": 2804117, "GEOID": 621544, "NAME": "Edison", "NAMELSAD": "Edison CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2621330, "AWATER": 0, "INTPTLAT": 35.347313, "INTPTLON": -118.8698256, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 35.344255 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 788, "felt:has_geometry": true, "felt:h3_index": 644748019513837110, "STATEFP": 6, "PLACEFP": 21558, "PLACENS": 2629761, "GEOID": 621558, "NAMELSAD": "Edmundson Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 172230, "AWATER": 0, "INTPTLAT": 35.2272959, "INTPTLON": -118.823252, "NAME": "Edmundson Acres,Di Giorgio", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 35.227672 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1028, "felt:has_geometry": true, "felt:h3_index": 644748019729748112, "STATEFP": 6, "PLACEFP": 40088, "PLACENS": 2408568, "GEOID": 640088, "NAME": "Lamont", "NAMELSAD": "Lamont CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12423016, "AWATER": 66020, "INTPTLAT": 35.2651422, "INTPTLON": -118.9160415, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1437, "felt:has_geometry": true, "felt:h3_index": 644748022420525610, "STATEFP": 6, "PLACEFP": 73868, "PLACENS": 2408801, "GEOID": 673868, "NAME": "Stallion Springs", "NAMELSAD": "Stallion Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35163160, "AWATER": 63046, "INTPTLAT": 35.0920157, "INTPTLON": -118.6576491, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 35.092945 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 283, "felt:has_geometry": true, "felt:h3_index": 644748023430717729, "STATEFP": 6, "PLACEFP": 2924, "PLACENS": 2409738, "GEOID": 602924, "NAME": "Arvin", "NAMELSAD": "Arvin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12482061, "AWATER": 0, "INTPTLAT": 35.1943611, "INTPTLON": -118.8305687, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -118.828125, 35.191767 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 285, "felt:has_geometry": true, "felt:h3_index": 644748024436175472, "STATEFP": 6, "PLACEFP": 78092, "PLACENS": 2412041, "GEOID": 678092, "NAME": "Tehachapi", "NAMELSAD": "Tehachapi city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26563140, "AWATER": 250130, "INTPTLAT": 35.1429585, "INTPTLON": -118.4460356, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -118.443604, 35.137879 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 880, "felt:has_geometry": true, "felt:h3_index": 644748025051825883, "STATEFP": 6, "PLACEFP": 30282, "PLACENS": 2408306, "GEOID": 630282, "NAME": "Golden Hills", "NAMELSAD": "Golden Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28267176, "AWATER": 44673, "INTPTLAT": 35.1364219, "INTPTLON": -118.4975917, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -118.498535, 35.137879 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1170, "felt:has_geometry": true, "felt:h3_index": 644748025229612966, "STATEFP": 6, "PLACEFP": 49592, "PLACENS": 2804422, "GEOID": 649592, "NAME": "Mountain Meadows", "NAMELSAD": "Mountain Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10651128, "AWATER": 19545, "INTPTLAT": 35.0935654, "INTPTLON": -118.4326871, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -118.432617, 35.092945 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 927, "felt:has_geometry": true, "felt:h3_index": 644748030809134761, "STATEFP": 6, "PLACEFP": 33689, "PLACENS": 2804409, "GEOID": 633689, "NAMELSAD": "Hillcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3569985, "AWATER": 0, "INTPTLAT": 35.3789699, "INTPTLON": -118.9578535, "NAME": "Hillcrest,La Cresta,East Bakersfield,Cottonwood,Potomac Park", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.380093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1221, "felt:has_geometry": true, "felt:h3_index": 644748030961134821, "STATEFP": 6, "PLACEFP": 53448, "PLACENS": 2408979, "GEOID": 653448, "NAME": "Oildale", "NAMELSAD": "Oildale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20484539, "AWATER": 0, "INTPTLAT": 35.4292605, "INTPTLON": -119.0305761, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 35.424868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 532, "felt:has_geometry": true, "felt:h3_index": 644748031071160428, "STATEFP": 6, "PLACEFP": 3546, "PLACENS": 2804108, "GEOID": 603546, "NAMELSAD": "Bakersfield Country Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1963093, "AWATER": 0, "INTPTLAT": 35.3898914, "INTPTLON": -118.9409146, "NAME": "Bakersfield Country Club,East Niles", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -118.937988, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 884, "felt:has_geometry": true, "felt:h3_index": 644748031182788440, "STATEFP": 6, "PLACEFP": 30412, "PLACENS": 2804408, "GEOID": 630412, "NAMELSAD": "Goodmanville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1753841, "AWATER": 0, "INTPTLAT": 35.4289943, "INTPTLON": -118.9437185, "NAME": "Goodmanville,Rivergrove", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -118.937988, 35.424868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1323, "felt:has_geometry": true, "felt:h3_index": 644748031325824525, "STATEFP": 6, "PLACEFP": 60370, "PLACENS": 2804428, "GEOID": 660370, "NAMELSAD": "Rexland Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1345980, "AWATER": 0, "INTPTLAT": 35.3050527, "INTPTLON": -118.9969915, "NAME": "Rexland Acres,Casa Loma", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -118.992920, 35.299435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 279, "felt:has_geometry": true, "felt:h3_index": 644748031452316486, "STATEFP": 6, "PLACEFP": 3526, "PLACENS": 2409774, "GEOID": 603526, "NAMELSAD": "Bakersfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 389204786, "AWATER": 3792006, "INTPTLAT": 35.3531712, "INTPTLON": -119.0379186, "NAME": "Bakersfield,Old Stine,Olde Stockdale,Benton Park", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -119.036865, 35.353216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 823, "felt:has_geometry": true, "felt:h3_index": 644748031631495910, "STATEFP": 6, "PLACEFP": 23158, "PLACENS": 2804405, "GEOID": 623158, "NAMELSAD": "Fairfax CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2466696, "AWATER": 0, "INTPTLAT": 35.3468854, "INTPTLON": -118.9338065, "NAME": "Fairfax,Fuller Acres", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -118.927002, 35.344255 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 321, "felt:has_geometry": true, "felt:h3_index": 644748031996254085, "STATEFP": 6, "PLACEFP": 71106, "PLACENS": 2411873, "GEOID": 671106, "NAME": "Shafter", "NAMELSAD": "Shafter city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 100221605, "AWATER": 0, "INTPTLAT": 35.4794212, "INTPTLON": -119.2012851, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 35.478565 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1344, "felt:has_geometry": true, "felt:h3_index": 644748032414919902, "STATEFP": 6, "PLACEFP": 62854, "PLACENS": 2409211, "GEOID": 662854, "NAME": "Rosedale", "NAMELSAD": "Rosedale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75813312, "AWATER": 0, "INTPTLAT": 35.3886076, "INTPTLON": -119.2057422, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 894, "felt:has_geometry": true, "felt:h3_index": 644748032743610773, "STATEFP": 6, "PLACEFP": 30938, "PLACENS": 2628814, "GEOID": 630938, "NAME": "Greenacres", "NAMELSAD": "Greenacres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931784, "AWATER": 0, "INTPTLAT": 35.3831587, "INTPTLON": -119.1183805, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -119.113770, 35.380093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1469, "felt:has_geometry": true, "felt:h3_index": 644748033572608050, "STATEFP": 6, "PLACEFP": 77934, "PLACENS": 2804432, "GEOID": 677934, "NAME": "Tarina", "NAMELSAD": "Tarina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11542573, "AWATER": 0, "INTPTLAT": 35.3807004, "INTPTLON": -118.8170881, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 35.380093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 672, "felt:has_geometry": true, "felt:h3_index": 644748033596702771, "STATEFP": 6, "PLACEFP": 13278, "PLACENS": 2804111, "GEOID": 613278, "NAME": "Choctaw Valley", "NAMELSAD": "Choctaw Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5885507, "AWATER": 0, "INTPTLAT": 35.4485545, "INTPTLON": -118.8871907, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -118.883057, 35.442771 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 331, "felt:has_geometry": true, "felt:h3_index": 644748247045125961, "STATEFP": 6, "PLACEFP": 50734, "PLACENS": 2411220, "GEOID": 650734, "NAME": "Needles", "NAMELSAD": "Needles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79196617, "AWATER": 1289442, "INTPTLAT": 34.8134263, "INTPTLON": -114.6266387, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -114.620361, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 564, "felt:has_geometry": true, "felt:h3_index": 644748481924483172, "STATEFP": 6, "PLACEFP": 6635, "PLACENS": 2407844, "GEOID": 606635, "NAME": "Big River", "NAMELSAD": "Big River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28050915, "AWATER": 1344398, "INTPTLAT": 34.1398232, "INTPTLON": -114.3620987, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -114.356689, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 572, "felt:has_geometry": true, "felt:h3_index": 644748484593699356, "STATEFP": 6, "PLACEFP": 7172, "PLACENS": 2407869, "GEOID": 607172, "NAME": "Bluewater", "NAMELSAD": "Bluewater CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2711814, "AWATER": 766390, "INTPTLAT": 34.1754314, "INTPTLON": -114.2649617, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -114.257812, 34.170908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 738, "felt:has_geometry": true, "felt:h3_index": 644748511879802058, "STATEFP": 6, "PLACEFP": 18982, "PLACENS": 2582993, "GEOID": 618982, "NAME": "Desert Center", "NAMELSAD": "Desert Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799210, "AWATER": 0, "INTPTLAT": 33.7377986, "INTPTLON": -115.3666216, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -115.367432, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 280, "felt:has_geometry": true, "felt:h3_index": 644748516873606566, "STATEFP": 6, "PLACEFP": 7218, "PLACENS": 2409872, "GEOID": 607218, "NAME": "Blythe", "NAMELSAD": "Blythe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68645916, "AWATER": 2000747, "INTPTLAT": 33.6535205, "INTPTLON": -114.6218227, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -114.620361, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1129, "felt:has_geometry": true, "felt:h3_index": 644748522181272144, "STATEFP": 6, "PLACEFP": 47066, "PLACENS": 2583079, "GEOID": 647066, "NAME": "Mesa Verde", "NAMELSAD": "Mesa Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11139877, "AWATER": 0, "INTPTLAT": 33.5956999, "INTPTLON": -114.7316045, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -114.730225, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1297, "felt:has_geometry": true, "felt:h3_index": 645287510434742996, "STATEFP": 6, "PLACEFP": 58478, "PLACENS": 2628778, "GEOID": 658478, "NAME": "Potrero", "NAMELSAD": "Potrero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8157788, "AWATER": 0, "INTPTLAT": 32.6130891, "INTPTLON": -116.6068146, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -116.608887, 32.611616 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 627, "felt:has_geometry": true, "felt:h3_index": 645287510650479435, "STATEFP": 6, "PLACEFP": 10508, "PLACENS": 2582962, "GEOID": 610508, "NAME": "Campo", "NAMELSAD": "Campo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 60877895, "AWATER": 16844, "INTPTLAT": 32.6409655, "INTPTLON": -116.4745158, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -116.477051, 32.639375 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 589, "felt:has_geometry": true, "felt:h3_index": 645287511563970892, "STATEFP": 6, "PLACEFP": 7694, "PLACENS": 2582949, "GEOID": 607694, "NAME": "Boulevard", "NAMELSAD": "Boulevard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10115840, "AWATER": 0, "INTPTLAT": 32.6640221, "INTPTLON": -116.2896012, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -116.290283, 32.657876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 958, "felt:has_geometry": true, "felt:h3_index": 645287511715930501, "STATEFP": 6, "PLACEFP": 37022, "PLACENS": 2583040, "GEOID": 637022, "NAME": "Jacumba", "NAMELSAD": "Jacumba CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15848184, "AWATER": 18532, "INTPTLAT": 32.6364781, "INTPTLON": -116.190706, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -116.191406, 32.630123 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1220, "felt:has_geometry": true, "felt:h3_index": 645287527842001954, "STATEFP": 6, "PLACEFP": 53378, "PLACENS": 2408976, "GEOID": 653378, "NAME": "Ocotillo", "NAMELSAD": "Ocotillo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22959357, "AWATER": 0, "INTPTLAT": 32.7431265, "INTPTLON": -116.0018794, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -115.993652, 32.741082 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1605, "felt:has_geometry": true, "felt:h3_index": 645287528099885134, "STATEFP": 6, "PLACEFP": 70798, "PLACENS": 2409303, "GEOID": 670798, "NAME": "Seeley", "NAMELSAD": "Seeley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3660150, "AWATER": 78319, "INTPTLAT": 32.7904047, "INTPTLON": -115.685047, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -115.686035, 32.787275 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 792, "felt:has_geometry": true, "felt:h3_index": 645287528565971236, "STATEFP": 6, "PLACEFP": 21788, "PLACENS": 2805234, "GEOID": 621788, "NAME": "El Centro Naval Air Facility", "NAMELSAD": "El Centro Naval Air Facility CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10855446, "AWATER": 0, "INTPTLAT": 32.8252316, "INTPTLON": -115.6680724, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -115.664062, 32.824211 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1606, "felt:has_geometry": true, "felt:h3_index": 645287644837329651, "STATEFP": 6, "PLACEFP": 86020, "PLACENS": 2409615, "GEOID": 686020, "NAME": "Winterhaven", "NAMELSAD": "Winterhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 630958, "AWATER": 0, "INTPTLAT": 32.7371834, "INTPTLON": -114.6377979, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -114.631348, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1331, "felt:has_geometry": true, "felt:h3_index": 645287667033610280, "STATEFP": 6, "PLACEFP": 61012, "PLACENS": 2583122, "GEOID": 661012, "NAME": "Ripley", "NAMELSAD": "Ripley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4404857, "AWATER": 0, "INTPTLAT": 33.5237876, "INTPTLON": -114.6529919, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -114.653320, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1243, "felt:has_geometry": true, "felt:h3_index": 645287667289983361, "STATEFP": 6, "PLACEFP": 55422, "PLACENS": 2409022, "GEOID": 655422, "NAME": "Palo Verde", "NAMELSAD": "Palo Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1502113, "AWATER": 0, "INTPTLAT": 33.4278429, "INTPTLON": -114.7270947, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -114.719238, 33.422272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 438, "felt:has_geometry": true, "felt:h3_index": 645287681026633739, "STATEFP": 6, "PLACEFP": 34246, "PLACENS": 2410780, "GEOID": 634246, "NAME": "Holtville", "NAMELSAD": "Holtville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2988033, "AWATER": 11902, "INTPTLAT": 32.8137812, "INTPTLON": -115.3783188, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -115.378418, 32.814978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 439, "felt:has_geometry": true, "felt:h3_index": 645287681701005467, "STATEFP": 6, "PLACEFP": 36280, "PLACENS": 2410097, "GEOID": 636280, "NAME": "Imperial", "NAMELSAD": "Imperial city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16536838, "AWATER": 0, "INTPTLAT": 32.8388748, "INTPTLON": -115.5718415, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -115.565186, 32.833443 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 437, "felt:has_geometry": true, "felt:h3_index": 645287682155536658, "STATEFP": 6, "PLACEFP": 21782, "PLACENS": 2410409, "GEOID": 621782, "NAME": "El Centro", "NAMELSAD": "El Centro city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31280475, "AWATER": 45518, "INTPTLAT": 32.7863511, "INTPTLON": -115.5602059, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -115.554199, 32.787275 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 436, "felt:has_geometry": true, "felt:h3_index": 645287686261300440, "STATEFP": 6, "PLACEFP": 9710, "PLACENS": 2409958, "GEOID": 609710, "NAME": "Calexico", "NAMELSAD": "Calexico city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22324358, "AWATER": 0, "INTPTLAT": 32.6849313, "INTPTLON": -115.4943572, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -115.488281, 32.685620 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 919, "felt:has_geometry": true, "felt:h3_index": 645287686372214601, "STATEFP": 6, "PLACEFP": 33084, "PLACENS": 2408367, "GEOID": 633084, "NAME": "Heber", "NAMELSAD": "Heber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3718242, "AWATER": 0, "INTPTLAT": 32.7324941, "INTPTLON": -115.5293983, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -115.521240, 32.731841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAME": "Burnt Ranch", "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -123.508301, 40.805494 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1573, "felt:has_geometry": true, "felt:h3_index": 644718575030985218, "STATEFP": 6, "PLACEFP": 85642, "PLACENS": 2409598, "GEOID": 685642, "NAME": "Willow Creek", "NAMELSAD": "Willow Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78501415, "AWATER": 777004, "INTPTLAT": 40.9393305, "INTPTLON": -123.6410997, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -123.640137, 40.938415 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1362, "felt:has_geometry": true, "felt:h3_index": 644718575706457891, "STATEFP": 6, "PLACEFP": 64378, "PLACENS": 2804442, "GEOID": 664378, "NAMELSAD": "Salyer CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13662482, "AWATER": 113638, "INTPTLAT": 40.8767681, "INTPTLON": -123.5735007, "NAME": "Salyer,Trinity Village", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 40.871988 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAME": "Big Lagoon", "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -124.123535, 41.153842 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 170, "felt:has_geometry": true, "felt:h3_index": 644718581837530794, "STATEFP": 6, "PLACEFP": 80448, "PLACENS": 2412093, "GEOID": 680448, "NAME": "Trinidad", "NAMELSAD": "Trinidad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1263717, "AWATER": 412146, "INTPTLAT": 41.0577077, "INTPTLON": -124.143255, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.054502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1554, "felt:has_geometry": true, "felt:h3_index": 644718582140418460, "STATEFP": 6, "PLACEFP": 84385, "PLACENS": 2409573, "GEOID": 684385, "NAME": "Westhaven-Moonstone", "NAMELSAD": "Westhaven-Moonstone CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20954630, "AWATER": 70662, "INTPTLAT": 41.0361167, "INTPTLON": -124.0908296, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -124.090576, 41.037931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 167, "felt:has_geometry": true, "felt:h3_index": 644718585258590224, "STATEFP": 6, "PLACEFP": 7162, "PLACENS": 2409868, "GEOID": 607162, "NAME": "Blue Lake", "NAMELSAD": "Blue Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1601834, "AWATER": 79994, "INTPTLAT": 40.8809929, "INTPTLON": -123.994912, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -123.991699, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1095, "felt:has_geometry": true, "felt:h3_index": 644718585915844358, "STATEFP": 6, "PLACEFP": 44910, "PLACENS": 2408201, "GEOID": 644910, "NAMELSAD": "McKinleyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54083206, "AWATER": 657148, "INTPTLAT": 40.9515707, "INTPTLON": -124.077357, "NAME": "McKinleyville,Fieldbrook", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.946714 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -123.079834, 40.730608 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAME": "Weitchpec", "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -123.684082, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 937, "felt:has_geometry": true, "felt:h3_index": 644718603466353835, "STATEFP": 6, "PLACEFP": 34540, "PLACENS": 2585654, "GEOID": 634540, "NAME": "Hoopa", "NAMELSAD": "Hoopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52865786, "AWATER": 2013972, "INTPTLAT": 41.0796391, "INTPTLON": -123.6976603, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -123.695068, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6, "PLACEFP": 59906, "PLACENS": 2628781, "GEOID": 659906, "NAME": "Redcrest", "NAMELSAD": "Redcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190, "AWATER": 0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1102, "felt:has_geometry": true, "felt:h3_index": 644718609011754920, "STATEFP": 6, "PLACEFP": 45092, "PLACENS": 2583071, "GEOID": 645092, "NAME": "Mad River", "NAMELSAD": "Mad River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 91131300, "AWATER": 0, "INTPTLAT": 40.4325319, "INTPTLON": -123.4920607, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -123.486328, 40.430224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1549, "felt:has_geometry": true, "felt:h3_index": 644718611563321866, "STATEFP": 6, "PLACEFP": 84004, "PLACENS": 2611454, "GEOID": 684004, "NAME": "Weott", "NAMELSAD": "Weott CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1946274, "AWATER": 48591, "INTPTLAT": 40.3227715, "INTPTLON": -123.9206222, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -123.914795, 40.321420 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6, "PLACEFP": 25296, "PLACENS": 2410532, "GEOID": 625296, "NAME": "Fortuna", "NAMELSAD": "Fortuna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391, "AWATER": 7169, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -124.134521, 40.588928 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 836, "felt:has_geometry": true, "felt:h3_index": 644718615895212352, "STATEFP": 6, "PLACEFP": 24022, "PLACENS": 2628730, "GEOID": 624022, "NAMELSAD": "Fields Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 716672, "AWATER": 7676, "INTPTLAT": 40.7242363, "INTPTLON": -124.2186025, "NAME": "Fields Landing,Humboldt Hill", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -124.211426, 40.722283 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1183, "felt:has_geometry": true, "felt:h3_index": 644718617862603099, "STATEFP": 6, "PLACEFP": 50188, "PLACENS": 2408896, "GEOID": 650188, "NAME": "Myrtletown", "NAMELSAD": "Myrtletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5432288, "AWATER": 192918, "INTPTLAT": 40.7887307, "INTPTLON": -124.1306576, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -124.123535, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1106, "felt:has_geometry": true, "felt:h3_index": 644718617907779420, "STATEFP": 6, "PLACEFP": 45414, "PLACENS": 2628755, "GEOID": 645414, "NAME": "Manila", "NAMELSAD": "Manila CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805140, "AWATER": 17823, "INTPTLAT": 40.8508972, "INTPTLON": -124.1631934, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -124.156494, 40.847060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 950, "felt:has_geometry": true, "felt:h3_index": 644718618129342877, "STATEFP": 6, "PLACEFP": 36420, "PLACENS": 2628741, "GEOID": 636420, "NAME": "Indianola", "NAMELSAD": "Indianola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3651825, "AWATER": 483, "INTPTLAT": 40.8099643, "INTPTLON": -124.0784473, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.805494 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 172, "felt:has_geometry": true, "felt:h3_index": 644718618271660166, "STATEFP": 6, "PLACEFP": 2476, "PLACENS": 2409723, "GEOID": 602476, "NAME": "Arcata", "NAMELSAD": "Arcata city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24388526, "AWATER": 5063020, "INTPTLAT": 40.8622905, "INTPTLON": -124.0749667, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 40.863680 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 720, "felt:has_geometry": true, "felt:h3_index": 644718618362166534, "STATEFP": 6, "PLACEFP": 17722, "PLACENS": 2408637, "GEOID": 617722, "NAMELSAD": "Cutten CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3325001, "AWATER": 0, "INTPTLAT": 40.7656839, "INTPTLON": -124.1444615, "NAME": "Cutten,Pine Hills", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 40.763901 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 824, "felt:has_geometry": true, "felt:h3_index": 644718618447979912, "STATEFP": 6, "PLACEFP": 23196, "PLACENS": 2628729, "GEOID": 623196, "NAMELSAD": "Fairhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682712, "AWATER": 0, "INTPTLAT": 40.7882931, "INTPTLON": -124.2014211, "NAME": "Fairhaven,Eureka,Samoa,Bayview", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -124.200439, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1385, "felt:has_geometry": true, "felt:h3_index": 644718618917114405, "STATEFP": 6, "PLACEFP": 70518, "PLACENS": 2611446, "GEOID": 670518, "NAMELSAD": "Scotia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1932251, "AWATER": 262552, "INTPTLAT": 40.4788133, "INTPTLON": -124.1046506, "NAME": "Scotia,Rio Dell", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -124.101562, 40.480381 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 943, "felt:has_geometry": true, "felt:h3_index": 644718619252568853, "STATEFP": 6, "PLACEFP": 36126, "PLACENS": 2408413, "GEOID": 636126, "NAME": "Hydesville", "NAMELSAD": "Hydesville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19424163, "AWATER": 0, "INTPTLAT": 40.5578746, "INTPTLON": -124.0822499, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.555548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 171, "felt:has_geometry": true, "felt:h3_index": 644718619950247158, "STATEFP": 6, "PLACEFP": 23910, "PLACENS": 2410497, "GEOID": 623910, "NAME": "Ferndale", "NAMELSAD": "Ferndale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3124819, "AWATER": 0, "INTPTLAT": 40.5781435, "INTPTLON": -124.261247, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -124.255371, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1068, "felt:has_geometry": true, "felt:h3_index": 644718620356135345, "STATEFP": 6, "PLACEFP": 42328, "PLACENS": 2611440, "GEOID": 642328, "NAME": "Loleta", "NAMELSAD": "Loleta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5500846, "AWATER": 0, "INTPTLAT": 40.6408852, "INTPTLON": -124.2225561, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -124.222412, 40.638967 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6, "PLACEFP": 36098, "PLACENS": 2583038, "GEOID": 636098, "NAME": "Hyampom", "NAMELSAD": "Hyampom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399, "AWATER": 0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -123.464355, 40.622292 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1598, "felt:has_geometry": true, "felt:h3_index": 644718625962206297, "STATEFP": 6, "PLACEFP": 32562, "PLACENS": 2408361, "GEOID": 632562, "NAME": "Hayfork", "NAMELSAD": "Hayfork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 186854161, "AWATER": 58222, "INTPTLAT": 40.5758706, "INTPTLON": -123.123629, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1295, "felt:has_geometry": true, "felt:h3_index": 644718627603356904, "STATEFP": 6, "PLACEFP": 58456, "PLACENS": 2804441, "GEOID": 658456, "NAME": "Post Mountain", "NAMELSAD": "Post Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32146965, "AWATER": 0, "INTPTLAT": 40.4159487, "INTPTLON": -123.2316042, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -123.233643, 40.413496 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 41.286062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAME": "McArthur", "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 41.037931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 558, "felt:has_geometry": true, "felt:h3_index": 644719536896074354, "STATEFP": 6, "PLACEFP": 6336, "PLACENS": 2582944, "GEOID": 606336, "NAME": "Bieber", "NAMELSAD": "Bieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8944480, "AWATER": 148149, "INTPTLAT": 41.1384505, "INTPTLON": -121.1170059, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -121.113281, 41.137296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1208, "felt:has_geometry": true, "felt:h3_index": 644719537632617362, "STATEFP": 6, "PLACEFP": 52610, "PLACENS": 2628767, "GEOID": 652610, "NAME": "Nubieber", "NAMELSAD": "Nubieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1939993, "AWATER": 20921, "INTPTLAT": 41.0966269, "INTPTLON": -121.1821632, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 41.095912 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1062, "felt:has_geometry": true, "felt:h3_index": 644719539417787625, "STATEFP": 6, "PLACEFP": 41908, "PLACENS": 2611439, "GEOID": 641908, "NAME": "Little Valley", "NAMELSAD": "Little Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1076095, "AWATER": 26795, "INTPTLAT": 40.8930488, "INTPTLON": -121.1780413, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 40.888601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAME": "Likely", "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1098, "felt:has_geometry": true, "felt:h3_index": 644719557509073669, "STATEFP": 6, "PLACEFP": 45008, "PLACENS": 2804434, "GEOID": 645008, "NAME": "Madeline", "NAMELSAD": "Madeline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 137117, "AWATER": 0, "INTPTLAT": 41.0514103, "INTPTLON": -120.4754336, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 41.046217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6, "PLACEFP": 10732, "PLACENS": 2582963, "GEOID": 610732, "NAME": "Canby", "NAMELSAD": "Canby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540, "AWATER": 76979, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -120.882568, 41.450961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 486, "felt:has_geometry": true, "felt:h3_index": 644719563810683392, "STATEFP": 6, "PLACEFP": 310, "PLACENS": 2582927, "GEOID": 600310, "NAME": "Adin", "NAMELSAD": "Adin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7587701, "AWATER": 15858, "INTPTLAT": 41.1993122, "INTPTLON": -120.9567786, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1075, "felt:has_geometry": true, "felt:h3_index": 644719565413754960, "STATEFP": 6, "PLACEFP": 43126, "PLACENS": 2583062, "GEOID": 643126, "NAME": "Lookout", "NAMELSAD": "Lookout CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14152115, "AWATER": 322967, "INTPTLAT": 41.210401, "INTPTLON": -121.1529597, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -121.146240, 41.211722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAME": "Old Station", "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -121.409912, 40.672306 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1540, "felt:has_geometry": true, "felt:h3_index": 644719573066894226, "STATEFP": 6, "PLACEFP": 83494, "PLACENS": 2583182, "GEOID": 683494, "NAME": "Warner Valley", "NAMELSAD": "Warner Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45059297, "AWATER": 74958, "INTPTLAT": 40.4043546, "INTPTLON": -121.3405621, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 40.405131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAME": "Burney", "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -121.673584, 40.888601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 964, "felt:has_geometry": true, "felt:h3_index": 644719577030895305, "STATEFP": 6, "PLACEFP": 37442, "PLACENS": 2813351, "GEOID": 637442, "NAME": "Johnson Park", "NAMELSAD": "Johnson Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2337519, "AWATER": 0, "INTPTLAT": 40.9211789, "INTPTLON": -121.6295305, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 40.921814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 829, "felt:has_geometry": true, "felt:h3_index": 644719579180700011, "STATEFP": 6, "PLACEFP": 23532, "PLACENS": 2408112, "GEOID": 623532, "NAME": "Fall River Mills", "NAMELSAD": "Fall River Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6859381, "AWATER": 269074, "INTPTLAT": 41.0072414, "INTPTLON": -121.4411337, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 41.004775 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 645, "felt:has_geometry": true, "felt:h3_index": 644719579505466404, "STATEFP": 6, "PLACEFP": 11782, "PLACENS": 2611427, "GEOID": 611782, "NAME": "Cassel", "NAMELSAD": "Cassel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5246417, "AWATER": 193675, "INTPTLAT": 40.9250207, "INTPTLON": -121.5484758, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 40.921814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 918, "felt:has_geometry": true, "felt:h3_index": 644719583149349674, "STATEFP": 6, "PLACEFP": 32408, "PLACENS": 2583033, "GEOID": 632408, "NAME": "Hat Creek", "NAMELSAD": "Hat Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 129532652, "AWATER": 442608, "INTPTLAT": 40.7898058, "INTPTLON": -121.4745149, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAME": "Stones Landing", "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -120.728760, 40.688969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1429, "felt:has_geometry": true, "felt:h3_index": 644719585765267051, "STATEFP": 6, "PLACEFP": 73554, "PLACENS": 2583148, "GEOID": 673554, "NAME": "Spaulding", "NAMELSAD": "Spaulding CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8621924, "AWATER": 0, "INTPTLAT": 40.6556642, "INTPTLON": -120.7862597, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -120.783691, 40.655639 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6, "PLACEFP": 83850, "PLACENS": 2412201, "GEOID": 683850, "NAME": "Weed", "NAMELSAD": "Weed city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111, "AWATER": 13340, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 41.409776 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 786, "felt:has_geometry": true, "felt:h3_index": 644719602563303620, "STATEFP": 6, "PLACEFP": 21530, "PLACENS": 2408045, "GEOID": 621530, "NAME": "Edgewood", "NAMELSAD": "Edgewood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2656702, "AWATER": 12263, "INTPTLAT": 41.4607727, "INTPTLON": -122.4256868, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 638, "felt:has_geometry": true, "felt:h3_index": 644719602869519795, "STATEFP": 6, "PLACEFP": 11481, "PLACENS": 2407970, "GEOID": 611481, "NAME": "Carrick", "NAMELSAD": "Carrick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 152301, "AWATER": 0, "INTPTLAT": 41.4467465, "INTPTLON": -122.3634572, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 41.442726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 875, "felt:has_geometry": true, "felt:h3_index": 644719603752455388, "STATEFP": 6, "PLACEFP": 29252, "PLACENS": 2408286, "GEOID": 629252, "NAME": "Gazelle", "NAMELSAD": "Gazelle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1739436, "AWATER": 1757, "INTPTLAT": 41.5118701, "INTPTLON": -122.5219457, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1022, "felt:has_geometry": true, "felt:h3_index": 644719606499957170, "STATEFP": 6, "PLACEFP": 39728, "PLACENS": 2805902, "GEOID": 639728, "NAME": "Lake Shastina", "NAMELSAD": "Lake Shastina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10393370, "AWATER": 2563420, "INTPTLAT": 41.5231272, "INTPTLON": -122.3763662, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 41.525030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 300, "felt:has_geometry": true, "felt:h3_index": 644719609596492310, "STATEFP": 6, "PLACEFP": 49852, "PLACENS": 2411181, "GEOID": 649852, "NAME": "Mount Shasta", "NAMELSAD": "Mount Shasta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9754373, "AWATER": 9660, "INTPTLAT": 41.3208797, "INTPTLON": -122.3154809, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.310791, 41.319076 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 314, "felt:has_geometry": true, "felt:h3_index": 644719613690727203, "STATEFP": 6, "PLACEFP": 86944, "PLACENS": 2412324, "GEOID": 686944, "NAME": "Yreka", "NAMELSAD": "Yreka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25861889, "AWATER": 188154, "INTPTLAT": 41.7240335, "INTPTLON": -122.6315699, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 39, "felt:has_geometry": true, "felt:h3_index": 644719614003651185, "STATEFP": 6, "PLACEFP": 48690, "PLACENS": 2411140, "GEOID": 648690, "NAME": "Montague", "NAMELSAD": "Montague city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4604513, "AWATER": 39458, "INTPTLAT": 41.7270878, "INTPTLON": -122.5305115, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 38, "felt:has_geometry": true, "felt:h3_index": 644719616714914477, "STATEFP": 6, "PLACEFP": 25128, "PLACENS": 2410527, "GEOID": 625128, "NAME": "Fort Jones", "NAMELSAD": "Fort Jones city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1559876, "AWATER": 0, "INTPTLAT": 41.6084521, "INTPTLON": -122.8410656, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.838135, 41.607228 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 900, "felt:has_geometry": true, "felt:h3_index": 644719617245522853, "STATEFP": 6, "PLACEFP": 31134, "PLACENS": 2408333, "GEOID": 631134, "NAME": "Greenview", "NAMELSAD": "Greenview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3354179, "AWATER": 218772, "INTPTLAT": 41.5449224, "INTPTLON": -122.9209638, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 41.541478 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 902, "felt:has_geometry": true, "felt:h3_index": 644719617777944278, "STATEFP": 6, "PLACEFP": 31246, "PLACENS": 2408337, "GEOID": 631246, "NAME": "Grenada", "NAMELSAD": "Grenada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1335962, "AWATER": 3010, "INTPTLAT": 41.6401003, "INTPTLON": -122.5266271, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.640078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6, "PLACEFP": 78176, "PLACENS": 2410067, "GEOID": 678176, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560, "AWATER": 1194, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1093, "felt:has_geometry": true, "felt:h3_index": 644719631186676889, "STATEFP": 6, "PLACEFP": 44812, "PLACENS": 2408156, "GEOID": 644812, "NAME": "Macdoel", "NAMELSAD": "Macdoel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 432723, "AWATER": 0, "INTPTLAT": 41.8261734, "INTPTLON": -122.0058849, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 41.820455 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1176, "felt:has_geometry": true, "felt:h3_index": 644719635111010990, "STATEFP": 6, "PLACEFP": 49768, "PLACENS": 2408876, "GEOID": 649768, "NAME": "Mount Hebron", "NAMELSAD": "Mount Hebron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1922181, "AWATER": 0, "INTPTLAT": 41.785628, "INTPTLON": -122.0079795, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 41.779505 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAME": "Coffee Creek", "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1497, "felt:has_geometry": true, "felt:h3_index": 644719642529950797, "STATEFP": 6, "PLACEFP": 80476, "PLACENS": 2583167, "GEOID": 680476, "NAME": "Trinity Center", "NAMELSAD": "Trinity Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13547616, "AWATER": 0, "INTPTLAT": 40.9840636, "INTPTLON": -122.7083246, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 40.979898 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1011, "felt:has_geometry": true, "felt:h3_index": 644719643816705163, "STATEFP": 6, "PLACEFP": 39514, "PLACENS": 2408556, "GEOID": 639514, "NAME": "Lakehead", "NAMELSAD": "Lakehead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12160323, "AWATER": 1511480, "INTPTLAT": 40.9034358, "INTPTLON": -122.3996577, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 40.905210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6, "PLACEFP": 22972, "PLACENS": 2410458, "GEOID": 622972, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757, "AWATER": 2444, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.893066, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAME": "Dunsmuir", "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.266846, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1092, "felt:has_geometry": true, "felt:h3_index": 644719655508391001, "STATEFP": 6, "PLACEFP": 44784, "PLACENS": 2408196, "GEOID": 644784, "NAME": "McCloud", "NAMELSAD": "McCloud CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6273613, "AWATER": 170633, "INTPTLAT": 41.2547389, "INTPTLON": -122.1362211, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 41.253032 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 647, "felt:has_geometry": true, "felt:h3_index": 644719655759495833, "STATEFP": 6, "PLACEFP": 11824, "PLACENS": 2813347, "GEOID": 611824, "NAME": "Castella", "NAMELSAD": "Castella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2898121, "AWATER": 173038, "INTPTLAT": 41.1772527, "INTPTLON": -122.2872374, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 560, "felt:has_geometry": true, "felt:h3_index": 644719658497383694, "STATEFP": 6, "PLACEFP": 6475, "PLACENS": 2407839, "GEOID": 606475, "NAME": "Big Bend", "NAMELSAD": "Big Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14852515, "AWATER": 230960, "INTPTLAT": 41.0116239, "INTPTLON": -121.9304344, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1187, "felt:has_geometry": true, "felt:h3_index": 644719683479093780, "STATEFP": 6, "PLACEFP": 51168, "PLACENS": 2583092, "GEOID": 651168, "NAME": "New Pine Creek", "NAMELSAD": "New Pine Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5870148, "AWATER": 0, "INTPTLAT": 41.9872704, "INTPTLON": -120.3009638, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -120.300293, 41.983994 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 850, "felt:has_geometry": true, "felt:h3_index": 644719686301103334, "STATEFP": 6, "PLACEFP": 25030, "PLACENS": 2583014, "GEOID": 625030, "NAME": "Fort Bidwell", "NAMELSAD": "Fort Bidwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8299175, "AWATER": 43567, "INTPTLAT": 41.8633015, "INTPTLON": -120.1593945, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -120.157471, 41.861379 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6, "PLACEFP": 20424, "PLACENS": 2628727, "GEOID": 620424, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306, "AWATER": 0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 41.319076 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6, "PLACEFP": 17995, "PLACENS": 2582990, "GEOID": 617995, "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441, "AWATER": 4621, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069, "NAME": "Daphnedale Park,Alturas", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1008, "felt:has_geometry": true, "felt:h3_index": 644719716665661684, "STATEFP": 6, "PLACEFP": 39472, "PLACENS": 2583049, "GEOID": 639472, "NAME": "Lake City", "NAMELSAD": "Lake City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15065516, "AWATER": 6524, "INTPTLAT": 41.6453171, "INTPTLON": -120.222097, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -120.223389, 41.640078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 657, "felt:has_geometry": true, "felt:h3_index": 644719717021977715, "STATEFP": 6, "PLACEFP": 12328, "PLACENS": 2582971, "GEOID": 612328, "NAME": "Cedarville", "NAMELSAD": "Cedarville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14095280, "AWATER": 8675, "INTPTLAT": 41.5286833, "INTPTLON": -120.1744329, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 41.525030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 613, "felt:has_geometry": true, "felt:h3_index": 644719720153001358, "STATEFP": 6, "PLACEFP": 9834, "PLACENS": 2582955, "GEOID": 609834, "NAME": "California Pines", "NAMELSAD": "California Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19236734, "AWATER": 366425, "INTPTLAT": 41.413786, "INTPTLON": -120.6653096, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 41.409776 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1186, "felt:has_geometry": true, "felt:h3_index": 644719745745081189, "STATEFP": 6, "PLACEFP": 51042, "PLACENS": 2583091, "GEOID": 651042, "NAME": "Newell", "NAMELSAD": "Newell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6233913, "AWATER": 14912, "INTPTLAT": 41.8887312, "INTPTLON": -121.3602488, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 41.885921 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 299, "felt:has_geometry": true, "felt:h3_index": 644719784625908842, "STATEFP": 6, "PLACEFP": 19584, "PLACENS": 2410347, "GEOID": 619584, "NAME": "Dorris", "NAMELSAD": "Dorris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1819374, "AWATER": 40653, "INTPTLAT": 41.9649654, "INTPTLON": -121.9203865, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 41.959490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 60, "felt:has_geometry": true, "felt:h3_index": 644719785796805700, "STATEFP": 6, "PLACEFP": 80686, "PLACENS": 2412108, "GEOID": 680686, "NAME": "Tulelake", "NAMELSAD": "Tulelake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1061321, "AWATER": 6167, "INTPTLAT": 41.9534596, "INTPTLON": -121.4748966, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 41.951320 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6, "PLACEFP": 16630, "PLACENS": 2407668, "GEOID": 616630, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530, "AWATER": 0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.310791, 40.388397 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 911, "felt:has_geometry": true, "felt:h3_index": 644719881235613325, "STATEFP": 6, "PLACEFP": 32036, "PLACENS": 2813350, "GEOID": 632036, "NAME": "Happy Valley", "NAMELSAD": "Happy Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43746583, "AWATER": 260613, "INTPTLAT": 40.4661408, "INTPTLON": -122.4179692, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 40.463666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 313, "felt:has_geometry": true, "felt:h3_index": 644719881388344180, "STATEFP": 6, "PLACEFP": 2042, "PLACENS": 2409706, "GEOID": 602042, "NAME": "Anderson", "NAMELSAD": "Anderson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18210820, "AWATER": 466513, "INTPTLAT": 40.4497548, "INTPTLON": -122.2950698, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 40.446947 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1007, "felt:has_geometry": true, "felt:h3_index": 644719883894269667, "STATEFP": 6, "PLACEFP": 39460, "PLACENS": 2628747, "GEOID": 639460, "NAME": "Lake California", "NAMELSAD": "Lake California CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16346691, "AWATER": 862108, "INTPTLAT": 40.3583551, "INTPTLON": -122.2088428, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 40.354917 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 722, "felt:has_geometry": true, "felt:h3_index": 644719884019783468, "STATEFP": 6, "PLACEFP": 17876, "PLACENS": 2804439, "GEOID": 617876, "NAME": "Dales", "NAMELSAD": "Dales CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1671161, "AWATER": 21566, "INTPTLAT": 40.3179889, "INTPTLON": -122.0538444, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 40.313043 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAME": "Weaverville", "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.926025, 40.738933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1599, "felt:has_geometry": true, "felt:h3_index": 644719887281349729, "STATEFP": 6, "PLACEFP": 41278, "PLACENS": 2408603, "GEOID": 641278, "NAME": "Lewiston", "NAMELSAD": "Lewiston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 51843522, "AWATER": 0, "INTPTLAT": 40.6969309, "INTPTLON": -122.8225094, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.816162, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 755, "felt:has_geometry": true, "felt:h3_index": 644719887485913369, "STATEFP": 6, "PLACEFP": 19724, "PLACENS": 2582999, "GEOID": 619724, "NAME": "Douglas City", "NAMELSAD": "Douglas City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799839, "AWATER": 32384, "INTPTLAT": 40.6449532, "INTPTLON": -122.9274263, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.926025, 40.638967 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 861, "felt:has_geometry": true, "felt:h3_index": 644719888692847857, "STATEFP": 6, "PLACEFP": 26056, "PLACENS": 2408262, "GEOID": 626056, "NAME": "French Gulch", "NAMELSAD": "French Gulch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31940354, "AWATER": 94840, "INTPTLAT": 40.7187929, "INTPTLON": -122.6293566, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1229, "felt:has_geometry": true, "felt:h3_index": 644719890515136884, "STATEFP": 6, "PLACEFP": 53882, "PLACENS": 2813354, "GEOID": 653882, "NAME": "Ono", "NAMELSAD": "Ono CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931419, "AWATER": 7877, "INTPTLAT": 40.4781165, "INTPTLON": -122.6254908, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.618408, 40.472024 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1393, "felt:has_geometry": true, "felt:h3_index": 644719892593200352, "STATEFP": 6, "PLACEFP": 71218, "PLACENS": 2583135, "GEOID": 671218, "NAME": "Shasta", "NAMELSAD": "Shasta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28306682, "AWATER": 11513, "INTPTLAT": 40.5920212, "INTPTLON": -122.477899, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 40.588928 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 985, "felt:has_geometry": true, "felt:h3_index": 644719892813896067, "STATEFP": 6, "PLACEFP": 38352, "PLACENS": 2583046, "GEOID": 638352, "NAME": "Keswick", "NAMELSAD": "Keswick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8778129, "AWATER": 325908, "INTPTLAT": 40.6129587, "INTPTLON": -122.4607792, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 947, "felt:has_geometry": true, "felt:h3_index": 644719892923169587, "STATEFP": 6, "PLACEFP": 36252, "PLACENS": 2813333, "GEOID": 636252, "NAME": "Igo", "NAMELSAD": "Igo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2632527, "AWATER": 1954, "INTPTLAT": 40.4977403, "INTPTLON": -122.5496208, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 40.497092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 659, "felt:has_geometry": true, "felt:h3_index": 644719893161305985, "STATEFP": 6, "PLACEFP": 12415, "PLACENS": 2813348, "GEOID": 612415, "NAME": "Centerville", "NAMELSAD": "Centerville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20842577, "AWATER": 105845, "INTPTLAT": 40.5429017, "INTPTLON": -122.4645048, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 40.538852 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6, "PLACEFP": 71568, "PLACENS": 2408728, "GEOID": 671568, "NAME": "Shingletown", "NAMELSAD": "Shingletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619, "AWATER": 177508, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 40.505446 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1107, "felt:has_geometry": true, "felt:h3_index": 644719895002153130, "STATEFP": 6, "PLACEFP": 45512, "PLACENS": 2408168, "GEOID": 645512, "NAME": "Manton", "NAMELSAD": "Manton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45833424, "AWATER": 67403, "INTPTLAT": 40.4266788, "INTPTLON": -121.8504212, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 40.421860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1569, "felt:has_geometry": true, "felt:h3_index": 644719895961197813, "STATEFP": 6, "PLACEFP": 85250, "PLACENS": 2813357, "GEOID": 685250, "NAME": "Whitmore", "NAMELSAD": "Whitmore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16909590, "AWATER": 14380, "INTPTLAT": 40.61251, "INTPTLON": -121.9359064, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1256, "felt:has_geometry": true, "felt:h3_index": 644719900619086381, "STATEFP": 6, "PLACEFP": 56196, "PLACENS": 2628773, "GEOID": 656196, "NAME": "Paynes Creek", "NAMELSAD": "Paynes Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8887673, "AWATER": 3777, "INTPTLAT": 40.3418999, "INTPTLON": -121.9249741, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 40.338170 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1140, "felt:has_geometry": true, "felt:h3_index": 644719901233689386, "STATEFP": 6, "PLACEFP": 47794, "PLACENS": 2408836, "GEOID": 647794, "NAME": "Mineral", "NAMELSAD": "Mineral CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 114744267, "AWATER": 286834, "INTPTLAT": 40.4027126, "INTPTLON": -121.5508439, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAME": "Jones Valley", "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1160, "felt:has_geometry": true, "felt:h3_index": 644719905524223196, "STATEFP": 6, "PLACEFP": 48998, "PLACENS": 2408863, "GEOID": 648998, "NAME": "Montgomery Creek", "NAMELSAD": "Montgomery Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8536890, "AWATER": 11338, "INTPTLAT": 40.8428384, "INTPTLON": -121.9206607, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 40.838749 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1349, "felt:has_geometry": true, "felt:h3_index": 644719906000834627, "STATEFP": 6, "PLACEFP": 63134, "PLACENS": 2409216, "GEOID": 663134, "NAME": "Round Mountain", "NAMELSAD": "Round Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4342857, "AWATER": 17581, "INTPTLAT": 40.7974631, "INTPTLON": -121.9379875, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.797177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1139, "felt:has_geometry": true, "felt:h3_index": 644719907922167830, "STATEFP": 6, "PLACEFP": 47724, "PLACENS": 2408834, "GEOID": 647724, "NAME": "Millville", "NAMELSAD": "Millville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20839153, "AWATER": 433331, "INTPTLAT": 40.5595689, "INTPTLON": -122.1755686, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 40.555548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1242, "felt:has_geometry": true, "felt:h3_index": 644719908070632019, "STATEFP": 6, "PLACEFP": 55296, "PLACENS": 2409021, "GEOID": 655296, "NAME": "Palo Cedro", "NAMELSAD": "Palo Cedro CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21184711, "AWATER": 280522, "INTPTLAT": 40.566236, "INTPTLON": -122.2428371, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.244873, 40.563895 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 274, "felt:has_geometry": true, "felt:h3_index": 644719908610551070, "STATEFP": 6, "PLACEFP": 71225, "PLACENS": 2411877, "GEOID": 671225, "NAME": "Shasta Lake", "NAMELSAD": "Shasta Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28229509, "AWATER": 14724, "INTPTLAT": 40.6765637, "INTPTLON": -122.3809091, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 40.672306 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 547, "felt:has_geometry": true, "felt:h3_index": 644719908744222592, "STATEFP": 6, "PLACEFP": 4926, "PLACENS": 2582942, "GEOID": 604926, "NAME": "Bella Vista", "NAMELSAD": "Bella Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68485004, "AWATER": 508710, "INTPTLAT": 40.6512049, "INTPTLON": -122.2563699, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 40.647304 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1168, "felt:has_geometry": true, "felt:h3_index": 644719908809770788, "STATEFP": 6, "PLACEFP": 49558, "PLACENS": 2628760, "GEOID": 649558, "NAME": "Mountain Gate", "NAMELSAD": "Mountain Gate CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5115620, "AWATER": 0, "INTPTLAT": 40.7184558, "INTPTLON": -122.3262249, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.321777, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 273, "felt:has_geometry": true, "felt:h3_index": 644719909015799626, "STATEFP": 6, "PLACEFP": 59920, "PLACENS": 2411531, "GEOID": 659920, "NAME": "Redding", "NAMELSAD": "Redding city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 154023453, "AWATER": 3904619, "INTPTLAT": 40.5702768, "INTPTLON": -122.3667659, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1213, "felt:has_geometry": true, "felt:h3_index": 644719909505289381, "STATEFP": 6, "PLACEFP": 53140, "PLACENS": 2813353, "GEOID": 653140, "NAME": "Oak Run", "NAMELSAD": "Oak Run CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7803833, "AWATER": 12670, "INTPTLAT": 40.6941964, "INTPTLON": -122.0250083, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 40.688969 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6, "PLACEFP": 57666, "PLACENS": 2813355, "GEOID": 657666, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433, "AWATER": 0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 40.354917 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6, "PLACEFP": 41782, "PLACENS": 2628751, "GEOID": 641782, "NAME": "Litchfield", "NAMELSAD": "Litchfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458, "AWATER": 0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 40.388397 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 251, "felt:has_geometry": true, "felt:h3_index": 644719990755819776, "STATEFP": 6, "PLACEFP": 77364, "PLACENS": 2412017, "GEOID": 677364, "NAME": "Susanville", "NAMELSAD": "Susanville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20507839, "AWATER": 218688, "INTPTLAT": 40.433674, "INTPTLON": -120.6283062, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 40.430224 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 965, "felt:has_geometry": true, "felt:h3_index": 644719994481830603, "STATEFP": 6, "PLACEFP": 37484, "PLACENS": 2583042, "GEOID": 637484, "NAME": "Johnstonville", "NAMELSAD": "Johnstonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22246440, "AWATER": 108930, "INTPTLAT": 40.3801984, "INTPTLON": -120.5861336, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 910, "felt:has_geometry": true, "felt:h3_index": 644720381597798566, "STATEFP": 6, "PLACEFP": 32030, "PLACENS": 2611423, "GEOID": 632030, "NAME": "Happy Camp", "NAMELSAD": "Happy Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31357295, "AWATER": 618829, "INTPTLAT": 41.8158932, "INTPTLON": -123.3927961, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -123.387451, 41.812267 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAME": "Kep'el", "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 41.286062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1544, "felt:has_geometry": true, "felt:h3_index": 644720397144171416, "STATEFP": 6, "PLACEFP": 83730, "PLACENS": 2805900, "GEOID": 683730, "NAME": "Wautec", "NAMELSAD": "Wautec CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5973832, "AWATER": 0, "INTPTLAT": 41.3543145, "INTPTLON": -123.8622878, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -123.859863, 41.352072 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 157, "felt:has_geometry": true, "felt:h3_index": 644720401678927874, "STATEFP": 6, "PLACEFP": 17022, "PLACENS": 2410262, "GEOID": 617022, "NAMELSAD": "Crescent City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084451, "AWATER": 1170287, "INTPTLAT": 41.7645143, "INTPTLON": -124.2007785, "NAME": "Crescent City,Bertsch-Oceanview", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -124.200439, 41.763117 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 874, "felt:has_geometry": true, "felt:h3_index": 644720403911032021, "STATEFP": 6, "PLACEFP": 29154, "PLACENS": 2611434, "GEOID": 629154, "NAME": "Gasquet", "NAMELSAD": "Gasquet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12318649, "AWATER": 171875, "INTPTLAT": 41.8360753, "INTPTLON": -123.9760308, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -123.969727, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 929, "felt:has_geometry": true, "felt:h3_index": 644720404104548882, "STATEFP": 6, "PLACEFP": 33935, "PLACENS": 2611435, "GEOID": 633935, "NAME": "Hiouchi", "NAMELSAD": "Hiouchi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1501797, "AWATER": 0, "INTPTLAT": 41.7936644, "INTPTLON": -124.0661133, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 41.787697 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 851, "felt:has_geometry": true, "felt:h3_index": 644720404510817413, "STATEFP": 6, "PLACEFP": 25086, "PLACENS": 2611432, "GEOID": 625086, "NAME": "Fort Dick", "NAMELSAD": "Fort Dick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8331464, "AWATER": 662, "INTPTLAT": 41.8695264, "INTPTLON": -124.1672064, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -124.167480, 41.869561 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1414, "felt:has_geometry": true, "felt:h3_index": 644720404921656548, "STATEFP": 6, "PLACEFP": 72380, "PLACENS": 2611450, "GEOID": 672380, "NAME": "Smith River", "NAMELSAD": "Smith River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11461740, "AWATER": 38079, "INTPTLAT": 41.923802, "INTPTLON": -124.1478252, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.918629 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 991, "felt:has_geometry": true, "felt:h3_index": 644720408322448306, "STATEFP": 6, "PLACEFP": 38702, "PLACENS": 2408492, "GEOID": 638702, "NAME": "Klamath", "NAMELSAD": "Klamath CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44592620, "AWATER": 0, "INTPTLAT": 41.5728585, "INTPTLON": -124.0556058, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 939, "felt:has_geometry": true, "felt:h3_index": 644720535259223248, "STATEFP": 6, "PLACEFP": 34694, "PLACENS": 2408401, "GEOID": 634694, "NAME": "Hornbrook", "NAMELSAD": "Hornbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3017332, "AWATER": 29395, "INTPTLAT": 41.9045054, "INTPTLON": -122.5583187, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.552490, 41.902277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAME": "Burnt Ranch", "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -123.508301, 40.809652 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1573, "felt:has_geometry": true, "felt:h3_index": 644718575030985218, "STATEFP": 6, "PLACEFP": 85642, "PLACENS": 2409598, "GEOID": 685642, "NAME": "Willow Creek", "NAMELSAD": "Willow Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78501415, "AWATER": 777004, "INTPTLAT": 40.9393305, "INTPTLON": -123.6410997, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -123.640137, 40.938415 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1362, "felt:has_geometry": true, "felt:h3_index": 644718575706457891, "STATEFP": 6, "PLACEFP": 64378, "PLACENS": 2804442, "GEOID": 664378, "NAME": "Salyer", "NAMELSAD": "Salyer CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13662482, "AWATER": 113638, "INTPTLAT": 40.8767681, "INTPTLON": -123.5735007, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 40.876141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1498, "felt:has_geometry": true, "felt:h3_index": 644718575734532462, "STATEFP": 6, "PLACEFP": 80483, "PLACENS": 2611452, "GEOID": 680483, "NAME": "Trinity Village", "NAMELSAD": "Trinity Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10394620, "AWATER": 0, "INTPTLAT": 40.8789159, "INTPTLON": -123.5132075, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -123.513794, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAME": "Big Lagoon", "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -124.129028, 41.157978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 170, "felt:has_geometry": true, "felt:h3_index": 644718581837530794, "STATEFP": 6, "PLACEFP": 80448, "PLACENS": 2412093, "GEOID": 680448, "NAME": "Trinidad", "NAMELSAD": "Trinidad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1263717, "AWATER": 412146, "INTPTLAT": 41.0577077, "INTPTLON": -124.143255, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.058644 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1554, "felt:has_geometry": true, "felt:h3_index": 644718582140418460, "STATEFP": 6, "PLACEFP": 84385, "PLACENS": 2409573, "GEOID": 684385, "NAME": "Westhaven-Moonstone", "NAMELSAD": "Westhaven-Moonstone CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20954630, "AWATER": 70662, "INTPTLAT": 41.0361167, "INTPTLON": -124.0908296, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -124.090576, 41.037931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 167, "felt:has_geometry": true, "felt:h3_index": 644718585258590224, "STATEFP": 6, "PLACEFP": 7162, "PLACENS": 2409868, "GEOID": 607162, "NAME": "Blue Lake", "NAMELSAD": "Blue Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1601834, "AWATER": 79994, "INTPTLAT": 40.8809929, "INTPTLON": -123.994912, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -123.997192, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1095, "felt:has_geometry": true, "felt:h3_index": 644718585915844358, "STATEFP": 6, "PLACEFP": 44910, "PLACENS": 2408201, "GEOID": 644910, "NAME": "McKinleyville", "NAMELSAD": "McKinleyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54083206, "AWATER": 657148, "INTPTLAT": 40.9515707, "INTPTLON": -124.077357, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.950863 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 835, "felt:has_geometry": true, "felt:h3_index": 644718585930130026, "STATEFP": 6, "PLACEFP": 24008, "PLACENS": 2611430, "GEOID": 624008, "NAME": "Fieldbrook", "NAMELSAD": "Fieldbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27111305, "AWATER": 9982, "INTPTLAT": 40.9729581, "INTPTLON": -124.0285865, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -124.030151, 40.971604 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -123.085327, 40.734771 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAME": "Weitchpec", "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -123.689575, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 937, "felt:has_geometry": true, "felt:h3_index": 644718603466353835, "STATEFP": 6, "PLACEFP": 34540, "PLACENS": 2585654, "GEOID": 634540, "NAME": "Hoopa", "NAMELSAD": "Hoopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52865786, "AWATER": 2013972, "INTPTLAT": 41.0796391, "INTPTLON": -123.6976603, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -123.695068, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1319, "felt:has_geometry": true, "felt:h3_index": 644718607586712357, "STATEFP": 6, "PLACEFP": 59906, "PLACENS": 2628781, "GEOID": 659906, "NAME": "Redcrest", "NAMELSAD": "Redcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1549190, "AWATER": 0, "INTPTLAT": 40.3987748, "INTPTLON": -123.9474151, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1102, "felt:has_geometry": true, "felt:h3_index": 644718609011754920, "STATEFP": 6, "PLACEFP": 45092, "PLACENS": 2583071, "GEOID": 645092, "NAME": "Mad River", "NAMELSAD": "Mad River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 91131300, "AWATER": 0, "INTPTLAT": 40.4325319, "INTPTLON": -123.4920607, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -123.491821, 40.434405 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1143, "felt:has_geometry": true, "felt:h3_index": 644718610944688716, "STATEFP": 6, "PLACEFP": 48060, "PLACENS": 2611441, "GEOID": 648060, "NAME": "Miranda", "NAMELSAD": "Miranda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3868285, "AWATER": 20675, "INTPTLAT": 40.2286868, "INTPTLON": -123.8175844, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -123.815918, 40.229218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1266, "felt:has_geometry": true, "felt:h3_index": 644718611024692944, "STATEFP": 6, "PLACEFP": 56854, "PLACENS": 2628776, "GEOID": 656854, "NAME": "Phillipsville", "NAMELSAD": "Phillipsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1850731, "AWATER": 73250, "INTPTLAT": 40.2107035, "INTPTLON": -123.7812117, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -123.782959, 40.212441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1549, "felt:has_geometry": true, "felt:h3_index": 644718611563321866, "STATEFP": 6, "PLACEFP": 84004, "PLACENS": 2611454, "GEOID": 684004, "NAME": "Weott", "NAMELSAD": "Weott CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1946274, "AWATER": 48591, "INTPTLAT": 40.3227715, "INTPTLON": -123.9206222, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -123.920288, 40.321420 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1182, "felt:has_geometry": true, "felt:h3_index": 644718612146034330, "STATEFP": 6, "PLACEFP": 50146, "PLACENS": 2611442, "GEOID": 650146, "NAME": "Myers Flat", "NAMELSAD": "Myers Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1119279, "AWATER": 141837, "INTPTLAT": 40.2654783, "INTPTLON": -123.875548, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -123.876343, 40.266952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 168, "felt:has_geometry": true, "felt:h3_index": 644718615170754393, "STATEFP": 6, "PLACEFP": 25296, "PLACENS": 2410532, "GEOID": 625296, "NAME": "Fortuna", "NAMELSAD": "Fortuna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13602391, "AWATER": 7169, "INTPTLAT": 40.5870844, "INTPTLON": -124.142161, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -124.140015, 40.588928 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 836, "felt:has_geometry": true, "felt:h3_index": 644718615895212352, "STATEFP": 6, "PLACEFP": 24022, "PLACENS": 2628730, "GEOID": 624022, "NAME": "Fields Landing", "NAMELSAD": "Fields Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 716672, "AWATER": 7676, "INTPTLAT": 40.7242363, "INTPTLON": -124.2186025, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -124.216919, 40.722283 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 941, "felt:has_geometry": true, "felt:h3_index": 644718615998629462, "STATEFP": 6, "PLACEFP": 34928, "PLACENS": 2408406, "GEOID": 634928, "NAME": "Humboldt Hill", "NAMELSAD": "Humboldt Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10762229, "AWATER": 37912, "INTPTLAT": 40.722316, "INTPTLON": -124.1973808, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -124.194946, 40.722283 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1183, "felt:has_geometry": true, "felt:h3_index": 644718617862603099, "STATEFP": 6, "PLACEFP": 50188, "PLACENS": 2408896, "GEOID": 650188, "NAME": "Myrtletown", "NAMELSAD": "Myrtletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5432288, "AWATER": 192918, "INTPTLAT": 40.7887307, "INTPTLON": -124.1306576, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -124.129028, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1106, "felt:has_geometry": true, "felt:h3_index": 644718617907779420, "STATEFP": 6, "PLACEFP": 45414, "PLACENS": 2628755, "GEOID": 645414, "NAME": "Manila", "NAMELSAD": "Manila CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805140, "AWATER": 17823, "INTPTLAT": 40.8508972, "INTPTLON": -124.1631934, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -124.161987, 40.851216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 950, "felt:has_geometry": true, "felt:h3_index": 644718618129342877, "STATEFP": 6, "PLACEFP": 36420, "PLACENS": 2628741, "GEOID": 636420, "NAME": "Indianola", "NAMELSAD": "Indianola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3651825, "AWATER": 483, "INTPTLAT": 40.8099643, "INTPTLON": -124.0784473, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.809652 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 172, "felt:has_geometry": true, "felt:h3_index": 644718618271660166, "STATEFP": 6, "PLACEFP": 2476, "PLACENS": 2409723, "GEOID": 602476, "NAME": "Arcata", "NAMELSAD": "Arcata city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24388526, "AWATER": 5063020, "INTPTLAT": 40.8622905, "INTPTLON": -124.0749667, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -124.074097, 40.863680 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 720, "felt:has_geometry": true, "felt:h3_index": 644718618362166534, "STATEFP": 6, "PLACEFP": 17722, "PLACENS": 2408637, "GEOID": 617722, "NAME": "Cutten", "NAMELSAD": "Cutten CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3325001, "AWATER": 0, "INTPTLAT": 40.7656839, "INTPTLON": -124.1444615, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 40.763901 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1274, "felt:has_geometry": true, "felt:h3_index": 644718618387504037, "STATEFP": 6, "PLACEFP": 57204, "PLACENS": 2409067, "GEOID": 657204, "NAME": "Pine Hills", "NAMELSAD": "Pine Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26200654, "AWATER": 107779, "INTPTLAT": 40.732892, "INTPTLON": -124.1610949, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -124.161987, 40.734771 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 824, "felt:has_geometry": true, "felt:h3_index": 644718618447979912, "STATEFP": 6, "PLACEFP": 23196, "PLACENS": 2628729, "GEOID": 623196, "NAME": "Fairhaven", "NAMELSAD": "Fairhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682712, "AWATER": 0, "INTPTLAT": 40.7882931, "INTPTLON": -124.2014211, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -124.200439, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 173, "felt:has_geometry": true, "felt:h3_index": 644718618483436825, "STATEFP": 6, "PLACEFP": 23042, "PLACENS": 2410463, "GEOID": 623042, "NAME": "Eureka", "NAMELSAD": "Eureka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24777988, "AWATER": 16942072, "INTPTLAT": 40.7975938, "INTPTLON": -124.1541913, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -124.156494, 40.797177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1363, "felt:has_geometry": true, "felt:h3_index": 644718618494440300, "STATEFP": 6, "PLACEFP": 64392, "PLACENS": 2628788, "GEOID": 664392, "NAME": "Samoa", "NAMELSAD": "Samoa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2166605, "AWATER": 0, "INTPTLAT": 40.814609, "INTPTLON": -124.1892153, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -124.189453, 40.813809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 539, "felt:has_geometry": true, "felt:h3_index": 644718618509053075, "STATEFP": 6, "PLACEFP": 4478, "PLACENS": 2407810, "GEOID": 604478, "NAME": "Bayview", "NAMELSAD": "Bayview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1908100, "AWATER": 0, "INTPTLAT": 40.7653596, "INTPTLON": -124.1786242, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -124.178467, 40.763901 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1385, "felt:has_geometry": true, "felt:h3_index": 644718618917114405, "STATEFP": 6, "PLACEFP": 70518, "PLACENS": 2611446, "GEOID": 670518, "NAME": "Scotia", "NAMELSAD": "Scotia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1932251, "AWATER": 262552, "INTPTLAT": 40.4788133, "INTPTLON": -124.1046506, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -124.107056, 40.480381 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 169, "felt:has_geometry": true, "felt:h3_index": 644718618930635532, "STATEFP": 6, "PLACEFP": 60900, "PLACENS": 2410951, "GEOID": 660900, "NAME": "Rio Dell", "NAMELSAD": "Rio Dell city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6434171, "AWATER": 337574, "INTPTLAT": 40.4955698, "INTPTLON": -124.1151627, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -124.112549, 40.497092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 943, "felt:has_geometry": true, "felt:h3_index": 644718619252568853, "STATEFP": 6, "PLACEFP": 36126, "PLACENS": 2408413, "GEOID": 636126, "NAME": "Hydesville", "NAMELSAD": "Hydesville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19424163, "AWATER": 0, "INTPTLAT": 40.5578746, "INTPTLON": -124.0822499, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.559721 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 171, "felt:has_geometry": true, "felt:h3_index": 644718619950247158, "STATEFP": 6, "PLACEFP": 23910, "PLACENS": 2410497, "GEOID": 623910, "NAME": "Ferndale", "NAMELSAD": "Ferndale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3124819, "AWATER": 0, "INTPTLAT": 40.5781435, "INTPTLON": -124.261247, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -124.260864, 40.576413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1068, "felt:has_geometry": true, "felt:h3_index": 644718620356135345, "STATEFP": 6, "PLACEFP": 42328, "PLACENS": 2611440, "GEOID": 642328, "NAME": "Loleta", "NAMELSAD": "Loleta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5500846, "AWATER": 0, "INTPTLAT": 40.6408852, "INTPTLON": -124.2225561, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -124.222412, 40.638967 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 942, "felt:has_geometry": true, "felt:h3_index": 644718624365990196, "STATEFP": 6, "PLACEFP": 36098, "PLACENS": 2583038, "GEOID": 636098, "NAME": "Hyampom", "NAMELSAD": "Hyampom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52507399, "AWATER": 0, "INTPTLAT": 40.6261788, "INTPTLON": -123.4688298, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -123.469849, 40.626461 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1598, "felt:has_geometry": true, "felt:h3_index": 644718625962206297, "STATEFP": 6, "PLACEFP": 32562, "PLACENS": 2408361, "GEOID": 632562, "NAME": "Hayfork", "NAMELSAD": "Hayfork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 186854161, "AWATER": 58222, "INTPTLAT": 40.5758706, "INTPTLON": -123.123629, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 40.576413 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1295, "felt:has_geometry": true, "felt:h3_index": 644718627603356904, "STATEFP": 6, "PLACEFP": 58456, "PLACENS": 2804441, "GEOID": 658456, "NAME": "Post Mountain", "NAMELSAD": "Post Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32146965, "AWATER": 0, "INTPTLAT": 40.4159487, "INTPTLON": -123.2316042, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -123.233643, 40.417678 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 41.290190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1040, "felt:has_geometry": true, "felt:h3_index": 644718847372672021, "STATEFP": 6, "PLACEFP": 40928, "PLACENS": 2408589, "GEOID": 640928, "NAME": "Laytonville", "NAMELSAD": "Laytonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13908641, "AWATER": 163478, "INTPTLAT": 39.662256, "INTPTLON": -123.4950147, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -123.497314, 39.660685 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1396, "felt:has_geometry": true, "felt:h3_index": 644718856146322332, "STATEFP": 6, "PLACEFP": 71372, "PLACENS": 2611448, "GEOID": 671372, "NAME": "Shelter Cove", "NAMELSAD": "Shelter Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15098010, "AWATER": 0, "INTPTLAT": 40.0389543, "INTPTLON": -124.0558247, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 40.040232 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 869, "felt:has_geometry": true, "felt:h3_index": 644718857436889222, "STATEFP": 6, "PLACEFP": 28154, "PLACENS": 2611433, "GEOID": 628154, "NAME": "Garberville", "NAMELSAD": "Garberville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6940712, "AWATER": 148102, "INTPTLAT": 40.1003058, "INTPTLON": -123.7943149, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 40.099084 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 549, "felt:has_geometry": true, "felt:h3_index": 644718857983963529, "STATEFP": 6, "PLACEFP": 5262, "PLACENS": 2611375, "GEOID": 605262, "NAME": "Benbow", "NAMELSAD": "Benbow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12641980, "AWATER": 0, "INTPTLAT": 40.0602672, "INTPTLON": -123.7653807, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -123.766479, 40.061257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1320, "felt:has_geometry": true, "felt:h3_index": 644718859124743401, "STATEFP": 6, "PLACEFP": 60088, "PLACENS": 2409154, "GEOID": 660088, "NAME": "Redway", "NAMELSAD": "Redway CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239490, "AWATER": 55629, "INTPTLAT": 40.1202227, "INTPTLON": -123.8217768, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -123.821411, 40.120090 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1043, "felt:has_geometry": true, "felt:h3_index": 644718862050317412, "STATEFP": 6, "PLACEFP": 41026, "PLACENS": 2628750, "GEOID": 641026, "NAME": "Leggett", "NAMELSAD": "Leggett CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7003204, "AWATER": 0, "INTPTLAT": 39.8635391, "INTPTLON": -123.7251757, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -123.722534, 39.863371 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 707, "felt:has_geometry": true, "felt:h3_index": 644718869174552388, "STATEFP": 6, "PLACEFP": 16728, "PLACENS": 2407675, "GEOID": 616728, "NAME": "Covelo", "NAMELSAD": "Covelo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18377116, "AWATER": 111658, "INTPTLAT": 39.8001872, "INTPTLON": -123.2526012, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -123.250122, 39.800096 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 493, "felt:has_geometry": true, "felt:h3_index": 644718873994931008, "STATEFP": 6, "PLACEFP": 786, "PLACENS": 2611374, "GEOID": 600786, "NAME": "Alderpoint", "NAMELSAD": "Alderpoint CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6288254, "AWATER": 0, "INTPTLAT": 40.1613467, "INTPTLON": -123.6157293, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -123.618164, 40.162083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1355, "felt:has_geometry": true, "felt:h3_index": 644718875946399144, "STATEFP": 6, "PLACEFP": 63386, "PLACENS": 2628787, "GEOID": 663386, "NAME": "Ruth", "NAMELSAD": "Ruth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100658842, "AWATER": 4347223, "INTPTLAT": 40.2938485, "INTPTLON": -123.34833450000001, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -123.348999, 40.292097 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 695, "felt:has_geometry": true, "felt:h3_index": 644718881748979876, "STATEFP": 6, "PLACEFP": 15030, "PLACENS": 2628722, "GEOID": 615030, "NAME": "Comptche", "NAMELSAD": "Comptche CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987584, "AWATER": 0, "INTPTLAT": 39.2651343, "INTPTLON": -123.5897145, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -123.590698, 39.266284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 644, "felt:has_geometry": true, "felt:h3_index": 644718882019752066, "STATEFP": 6, "PLACEFP": 11768, "PLACENS": 2628717, "GEOID": 611768, "NAME": "Caspar", "NAMELSAD": "Caspar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7748981, "AWATER": 0, "INTPTLAT": 39.3630629, "INTPTLON": -123.8041936, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -123.804932, 39.364032 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 335, "felt:has_geometry": true, "felt:h3_index": 644718882313740706, "STATEFP": 6, "PLACEFP": 25058, "PLACENS": 2410525, "GEOID": 625058, "NAME": "Fort Bragg", "NAMELSAD": "Fort Bragg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7483743, "AWATER": 71203, "INTPTLAT": 39.4398027, "INTPTLON": -123.8017566, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -123.799438, 39.440435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1125, "felt:has_geometry": true, "felt:h3_index": 644718882790408492, "STATEFP": 6, "PLACEFP": 46814, "PLACENS": 2408815, "GEOID": 646814, "NAME": "Mendocino", "NAMELSAD": "Mendocino CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5846594, "AWATER": 2006861, "INTPTLAT": 39.3124505, "INTPTLON": -123.7924016, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -123.793945, 39.313050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 597, "felt:has_geometry": true, "felt:h3_index": 644718883285586088, "STATEFP": 6, "PLACEFP": 8530, "PLACENS": 2628713, "GEOID": 608530, "NAME": "Brooktrails", "NAMELSAD": "Brooktrails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18790840, "AWATER": 122096, "INTPTLAT": 39.4432827, "INTPTLON": -123.3938002, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -123.392944, 39.444678 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 492, "felt:has_geometry": true, "felt:h3_index": 644718886539187978, "STATEFP": 6, "PLACEFP": 716, "PLACENS": 2628703, "GEOID": 600716, "NAME": "Albion", "NAMELSAD": "Albion CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4701873, "AWATER": 96897, "INTPTLAT": 39.2253267, "INTPTLON": -123.7575859, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -123.755493, 39.223743 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1060, "felt:has_geometry": true, "felt:h3_index": 644718886715590917, "STATEFP": 6, "PLACEFP": 41866, "PLACENS": 2628752, "GEOID": 641866, "NAME": "Little River", "NAMELSAD": "Little River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4331558, "AWATER": 0, "INTPTLAT": 39.2702854, "INTPTLON": -123.7817494, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -123.782959, 39.270537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 680, "felt:has_geometry": true, "felt:h3_index": 644718896773775600, "STATEFP": 6, "PLACEFP": 14008, "PLACENS": 2628718, "GEOID": 614008, "NAME": "Cleone", "NAMELSAD": "Cleone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4126679, "AWATER": 62762, "INTPTLAT": 39.4901542, "INTPTLON": -123.7756919, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -123.777466, 39.491324 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1298, "felt:has_geometry": true, "felt:h3_index": 644718902778063776, "STATEFP": 6, "PLACEFP": 58506, "PLACENS": 2628779, "GEOID": 658506, "NAME": "Potter Valley", "NAMELSAD": "Potter Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10430292, "AWATER": 73557, "INTPTLAT": 39.3171408, "INTPTLON": -123.10986, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -123.107300, 39.317300 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1321, "felt:has_geometry": true, "felt:h3_index": 644718902978996387, "STATEFP": 6, "PLACEFP": 60214, "PLACENS": 2628782, "GEOID": 660214, "NAME": "Redwood Valley", "NAMELSAD": "Redwood Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7112072, "AWATER": 31597, "INTPTLAT": 39.2685476, "INTPTLON": -123.2027581, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -123.200684, 39.270537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 65, "felt:has_geometry": true, "felt:h3_index": 644718903551286291, "STATEFP": 6, "PLACEFP": 85600, "PLACENS": 2412270, "GEOID": 685600, "NAME": "Willits", "NAMELSAD": "Willits city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7321585, "AWATER": 1546, "INTPTLAT": 39.4050065, "INTPTLON": -123.3488889, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -123.348999, 39.406489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAME": "McArthur", "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -121.404419, 41.042074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 558, "felt:has_geometry": true, "felt:h3_index": 644719536896074354, "STATEFP": 6, "PLACEFP": 6336, "PLACENS": 2582944, "GEOID": 606336, "NAME": "Bieber", "NAMELSAD": "Bieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8944480, "AWATER": 148149, "INTPTLAT": 41.1384505, "INTPTLON": -121.1170059, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -121.118774, 41.137296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1208, "felt:has_geometry": true, "felt:h3_index": 644719537632617362, "STATEFP": 6, "PLACEFP": 52610, "PLACENS": 2628767, "GEOID": 652610, "NAME": "Nubieber", "NAMELSAD": "Nubieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1939993, "AWATER": 20921, "INTPTLAT": 41.0966269, "INTPTLON": -121.1821632, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -121.184692, 41.095912 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1062, "felt:has_geometry": true, "felt:h3_index": 644719539417787625, "STATEFP": 6, "PLACEFP": 41908, "PLACENS": 2611439, "GEOID": 641908, "NAME": "Little Valley", "NAMELSAD": "Little Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1076095, "AWATER": 26795, "INTPTLAT": 40.8930488, "INTPTLON": -121.1780413, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 40.892753 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAME": "Likely", "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -120.503540, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1098, "felt:has_geometry": true, "felt:h3_index": 644719557509073669, "STATEFP": 6, "PLACEFP": 45008, "PLACENS": 2804434, "GEOID": 645008, "NAME": "Madeline", "NAMELSAD": "Madeline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 137117, "AWATER": 0, "INTPTLAT": 41.0514103, "INTPTLON": -120.4754336, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 41.050360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 486, "felt:has_geometry": true, "felt:h3_index": 644719563810683392, "STATEFP": 6, "PLACEFP": 310, "PLACENS": 2582927, "GEOID": 600310, "NAME": "Adin", "NAMELSAD": "Adin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7587701, "AWATER": 15858, "INTPTLAT": 41.1993122, "INTPTLON": -120.9567786, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 41.199323 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1075, "felt:has_geometry": true, "felt:h3_index": 644719565413754960, "STATEFP": 6, "PLACEFP": 43126, "PLACENS": 2583062, "GEOID": 643126, "NAME": "Lookout", "NAMELSAD": "Lookout CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14152115, "AWATER": 322967, "INTPTLAT": 41.210401, "INTPTLON": -121.1529597, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -121.151733, 41.211722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAME": "Old Station", "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -121.415405, 40.672306 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1540, "felt:has_geometry": true, "felt:h3_index": 644719573066894226, "STATEFP": 6, "PLACEFP": 83494, "PLACENS": 2583182, "GEOID": 683494, "NAME": "Warner Valley", "NAMELSAD": "Warner Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45059297, "AWATER": 74958, "INTPTLAT": 40.4043546, "INTPTLON": -121.3405621, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -121.338501, 40.405131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAME": "Burney", "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -121.673584, 40.888601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 964, "felt:has_geometry": true, "felt:h3_index": 644719577030895305, "STATEFP": 6, "PLACEFP": 37442, "PLACENS": 2813351, "GEOID": 637442, "NAME": "Johnson Park", "NAMELSAD": "Johnson Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2337519, "AWATER": 0, "INTPTLAT": 40.9211789, "INTPTLON": -121.6295305, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 40.921814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 829, "felt:has_geometry": true, "felt:h3_index": 644719579180700011, "STATEFP": 6, "PLACEFP": 23532, "PLACENS": 2408112, "GEOID": 623532, "NAME": "Fall River Mills", "NAMELSAD": "Fall River Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6859381, "AWATER": 269074, "INTPTLAT": 41.0072414, "INTPTLON": -121.4411337, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 41.008921 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 645, "felt:has_geometry": true, "felt:h3_index": 644719579505466404, "STATEFP": 6, "PLACEFP": 11782, "PLACENS": 2611427, "GEOID": 611782, "NAME": "Cassel", "NAMELSAD": "Cassel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5246417, "AWATER": 193675, "INTPTLAT": 40.9250207, "INTPTLON": -121.5484758, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -121.547241, 40.925965 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 918, "felt:has_geometry": true, "felt:h3_index": 644719583149349674, "STATEFP": 6, "PLACEFP": 32408, "PLACENS": 2583033, "GEOID": 632408, "NAME": "Hat Creek", "NAMELSAD": "Hat Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 129532652, "AWATER": 442608, "INTPTLAT": 40.7898058, "INTPTLON": -121.4745149, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAME": "Stones Landing", "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -120.734253, 40.693134 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1429, "felt:has_geometry": true, "felt:h3_index": 644719585765267051, "STATEFP": 6, "PLACEFP": 73554, "PLACENS": 2583148, "GEOID": 673554, "NAME": "Spaulding", "NAMELSAD": "Spaulding CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8621924, "AWATER": 0, "INTPTLAT": 40.6556642, "INTPTLON": -120.7862597, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -120.783691, 40.655639 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAME": "Coffee Creek", "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1497, "felt:has_geometry": true, "felt:h3_index": 644719642529950797, "STATEFP": 6, "PLACEFP": 80476, "PLACENS": 2583167, "GEOID": 680476, "NAME": "Trinity Center", "NAMELSAD": "Trinity Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13547616, "AWATER": 0, "INTPTLAT": 40.9840636, "INTPTLON": -122.7083246, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 40.984045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1011, "felt:has_geometry": true, "felt:h3_index": 644719643816705163, "STATEFP": 6, "PLACEFP": 39514, "PLACENS": 2408556, "GEOID": 639514, "NAME": "Lakehead", "NAMELSAD": "Lakehead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12160323, "AWATER": 1511480, "INTPTLAT": 40.9034358, "INTPTLON": -122.3996577, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 40.905210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAME": "Dunsmuir", "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.272339, 41.232380 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1092, "felt:has_geometry": true, "felt:h3_index": 644719655508391001, "STATEFP": 6, "PLACEFP": 44784, "PLACENS": 2408196, "GEOID": 644784, "NAME": "McCloud", "NAMELSAD": "McCloud CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6273613, "AWATER": 170633, "INTPTLAT": 41.2547389, "INTPTLON": -122.1362211, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 41.253032 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 647, "felt:has_geometry": true, "felt:h3_index": 644719655759495833, "STATEFP": 6, "PLACEFP": 11824, "PLACENS": 2813347, "GEOID": 611824, "NAME": "Castella", "NAMELSAD": "Castella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2898121, "AWATER": 173038, "INTPTLAT": 41.1772527, "INTPTLON": -122.2872374, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 560, "felt:has_geometry": true, "felt:h3_index": 644719658497383694, "STATEFP": 6, "PLACEFP": 6475, "PLACENS": 2407839, "GEOID": 606475, "NAME": "Big Bend", "NAMELSAD": "Big Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14852515, "AWATER": 230960, "INTPTLAT": 41.0116239, "INTPTLON": -121.9304344, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -121.931763, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1120, "felt:has_geometry": true, "felt:h3_index": 644719808794191718, "STATEFP": 6, "PLACEFP": 46618, "PLACENS": 2408809, "GEOID": 646618, "NAME": "Meadow Valley", "NAMELSAD": "Meadow Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22066143, "AWATER": 0, "INTPTLAT": 39.9323117, "INTPTLON": -121.0830864, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -121.085815, 39.930801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1305, "felt:has_geometry": true, "felt:h3_index": 644719808859914265, "STATEFP": 6, "PLACEFP": 59080, "PLACENS": 2409118, "GEOID": 659080, "NAME": "Quincy", "NAMELSAD": "Quincy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10939488, "AWATER": 0, "INTPTLAT": 39.931017, "INTPTLON": -120.9548861, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -120.953979, 39.930801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 546, "felt:has_geometry": true, "felt:h3_index": 644719810114116161, "STATEFP": 6, "PLACEFP": 4856, "PLACENS": 2407822, "GEOID": 604856, "NAME": "Belden", "NAMELSAD": "Belden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1578657, "AWATER": 299647, "INTPTLAT": 40.0067829, "INTPTLON": -121.2481908, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -121.250610, 40.006580 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1486, "felt:has_geometry": true, "felt:h3_index": 644719810400699058, "STATEFP": 6, "PLACEFP": 78792, "PLACENS": 2409326, "GEOID": 678792, "NAME": "Tobin", "NAMELSAD": "Tobin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13367665, "AWATER": 0, "INTPTLAT": 39.9357979, "INTPTLON": -121.2964913, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -121.294556, 39.935013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1471, "felt:has_geometry": true, "felt:h3_index": 644719811138119438, "STATEFP": 6, "PLACEFP": 78008, "PLACENS": 2410061, "GEOID": 678008, "NAME": "Taylorsville", "NAMELSAD": "Taylorsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8409829, "AWATER": 0, "INTPTLAT": 40.0586616, "INTPTLON": -120.8386751, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 40.057052 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 778, "felt:has_geometry": true, "felt:h3_index": 644719811307321225, "STATEFP": 6, "PLACEFP": 21026, "PLACENS": 2408033, "GEOID": 621026, "NAME": "East Quincy", "NAMELSAD": "East Quincy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31368457, "AWATER": 0, "INTPTLAT": 39.9164303, "INTPTLON": -120.9189403, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -120.921021, 39.918163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 973, "felt:has_geometry": true, "felt:h3_index": 644719811419101937, "STATEFP": 6, "PLACEFP": 37904, "PLACENS": 2408465, "GEOID": 637904, "NAME": "Keddie", "NAMELSAD": "Keddie CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1702275, "AWATER": 0, "INTPTLAT": 40.0059438, "INTPTLON": -120.9524163, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -120.953979, 40.006580 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 949, "felt:has_geometry": true, "felt:h3_index": 644719812106337004, "STATEFP": 6, "PLACEFP": 36364, "PLACENS": 2408419, "GEOID": 636364, "NAME": "Indian Falls", "NAMELSAD": "Indian Falls CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4770041, "AWATER": 0, "INTPTLAT": 40.0587497, "INTPTLON": -120.9803138, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 40.057052 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1505, "felt:has_geometry": true, "felt:h3_index": 644719812596426080, "STATEFP": 6, "PLACEFP": 80952, "PLACENS": 2409369, "GEOID": 680952, "NAME": "Twain", "NAMELSAD": "Twain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18622693, "AWATER": 0, "INTPTLAT": 40.0355031, "INTPTLON": -121.0403629, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -121.041870, 40.036027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1255, "felt:has_geometry": true, "felt:h3_index": 644719812616783554, "STATEFP": 6, "PLACEFP": 56182, "PLACENS": 2409040, "GEOID": 656182, "NAME": "Paxton", "NAMELSAD": "Paxton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 863831, "AWATER": 0, "INTPTLAT": 40.0336064, "INTPTLON": -121.0025693, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 40.031821 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 600, "felt:has_geometry": true, "felt:h3_index": 644719814321859776, "STATEFP": 6, "PLACEFP": 8744, "PLACENS": 2407918, "GEOID": 608744, "NAME": "Bucks Lake", "NAMELSAD": "Bucks Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26784856, "AWATER": 21082, "INTPTLAT": 39.8795599, "INTPTLON": -121.1990806, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 39.880235 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 668, "felt:has_geometry": true, "felt:h3_index": 644719819322821830, "STATEFP": 6, "PLACEFP": 12930, "PLACENS": 2408021, "GEOID": 612930, "NAME": "Chester", "NAMELSAD": "Chester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18874561, "AWATER": 209672, "INTPTLAT": 40.3016748, "INTPTLON": -121.2325025, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -121.234131, 40.300476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1005, "felt:has_geometry": true, "felt:h3_index": 644719820097006417, "STATEFP": 6, "PLACEFP": 39425, "PLACENS": 2408531, "GEOID": 639425, "NAME": "Lake Almanor West", "NAMELSAD": "Lake Almanor West CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5920415, "AWATER": 0, "INTPTLAT": 40.2335734, "INTPTLON": -121.2020754, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 40.233412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 606, "felt:has_geometry": true, "felt:h3_index": 644719823364230032, "STATEFP": 6, "PLACEFP": 9318, "PLACENS": 2612474, "GEOID": 609318, "NAME": "Butte Meadows", "NAMELSAD": "Butte Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5554035, "AWATER": 1292, "INTPTLAT": 40.08531, "INTPTLON": -121.5426826, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 40.086477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 633, "felt:has_geometry": true, "felt:h3_index": 644719824497203826, "STATEFP": 6, "PLACEFP": 11166, "PLACENS": 2407962, "GEOID": 611166, "NAME": "Caribou", "NAMELSAD": "Caribou CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 419798, "AWATER": 0, "INTPTLAT": 40.073244, "INTPTLON": -121.1656703, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 40.073868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1137, "felt:has_geometry": true, "felt:h3_index": 644719828371281477, "STATEFP": 6, "PLACEFP": 47472, "PLACENS": 2628757, "GEOID": 647472, "NAME": "Milford", "NAMELSAD": "Milford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13705685, "AWATER": 14513, "INTPTLAT": 40.1494665, "INTPTLON": -120.3701964, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -120.371704, 40.149488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1009, "felt:has_geometry": true, "felt:h3_index": 644719830364330124, "STATEFP": 6, "PLACEFP": 39483, "PLACENS": 2408536, "GEOID": 639483, "NAME": "Lake Davis", "NAMELSAD": "Lake Davis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14080604, "AWATER": 11652, "INTPTLAT": 39.8524283, "INTPTLON": -120.4584099, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -120.459595, 39.850721 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 90, "felt:has_geometry": true, "felt:h3_index": 644719830826685152, "STATEFP": 6, "PLACEFP": 58352, "PLACENS": 2411473, "GEOID": 658352, "NAME": "Portola", "NAMELSAD": "Portola city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14003433, "AWATER": 0, "INTPTLAT": 39.820799, "INTPTLON": -120.474293, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 39.821194 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 731, "felt:has_geometry": true, "felt:h3_index": 644719830913652626, "STATEFP": 6, "PLACEFP": 18485, "PLACENS": 2408655, "GEOID": 618485, "NAME": "Delleker", "NAMELSAD": "Delleker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7164105, "AWATER": 4955, "INTPTLAT": 39.813251, "INTPTLON": -120.4896708, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -120.487061, 39.812756 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 716, "felt:has_geometry": true, "felt:h3_index": 644719831736263315, "STATEFP": 6, "PLACEFP": 17288, "PLACENS": 2407684, "GEOID": 617288, "NAME": "Cromberg", "NAMELSAD": "Cromberg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23385108, "AWATER": 0, "INTPTLAT": 39.8683829, "INTPTLON": -120.6904463, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -120.690308, 39.867588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1431, "felt:has_geometry": true, "felt:h3_index": 644719831833414045, "STATEFP": 6, "PLACEFP": 73654, "PLACENS": 2408792, "GEOID": 673654, "NAME": "Spring Garden", "NAMELSAD": "Spring Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1692573, "AWATER": 0, "INTPTLAT": 39.891971, "INTPTLON": -120.7866168, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -120.789185, 39.892880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 897, "felt:has_geometry": true, "felt:h3_index": 644719831867155720, "STATEFP": 6, "PLACEFP": 31029, "PLACENS": 2408332, "GEOID": 631029, "NAME": "Greenhorn", "NAMELSAD": "Greenhorn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17381404, "AWATER": 0, "INTPTLAT": 39.9029678, "INTPTLON": -120.7589827, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -120.761719, 39.901309 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1565, "felt:has_geometry": true, "felt:h3_index": 644719835009731402, "STATEFP": 6, "PLACEFP": 84928, "PLACENS": 2409578, "GEOID": 684928, "NAME": "Westwood", "NAMELSAD": "Westwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14392892, "AWATER": 182548, "INTPTLAT": 40.3052197, "INTPTLON": -121.0035026, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 40.304665 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 677, "felt:has_geometry": true, "felt:h3_index": 644719836288113161, "STATEFP": 6, "PLACEFP": 13910, "PLACENS": 2611428, "GEOID": 613910, "NAME": "Clear Creek", "NAMELSAD": "Clear Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2934098, "AWATER": 19595, "INTPTLAT": 40.307086, "INTPTLON": -121.0554, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -121.052856, 40.308854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 709, "felt:has_geometry": true, "felt:h3_index": 644719839149759169, "STATEFP": 6, "PLACEFP": 17050, "PLACENS": 2407679, "GEOID": 617050, "NAME": "Crescent Mills", "NAMELSAD": "Crescent Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10985561, "AWATER": 0, "INTPTLAT": 40.1007411, "INTPTLON": -120.921706, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -120.921021, 40.099084 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 901, "felt:has_geometry": true, "felt:h3_index": 644719839388509106, "STATEFP": 6, "PLACEFP": 31162, "PLACENS": 2408334, "GEOID": 631162, "NAME": "Greenville", "NAMELSAD": "Greenville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20701558, "AWATER": 0, "INTPTLAT": 40.1336027, "INTPTLON": -120.9453326, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -120.942993, 40.132691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 782, "felt:has_geometry": true, "felt:h3_index": 644719839740906217, "STATEFP": 6, "PLACEFP": 21138, "PLACENS": 2408038, "GEOID": 621138, "NAME": "East Shore", "NAMELSAD": "East Shore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3063617, "AWATER": 0, "INTPTLAT": 40.2452687, "INTPTLON": -121.0767779, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -121.074829, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1003, "felt:has_geometry": true, "felt:h3_index": 644719839847540496, "STATEFP": 6, "PLACEFP": 39411, "PLACENS": 2408529, "GEOID": 639411, "NAME": "Lake Almanor Country Club", "NAMELSAD": "Lake Almanor Country Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7104822, "AWATER": 0, "INTPTLAT": 40.2577714, "INTPTLON": -121.1469582, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -121.146240, 40.258569 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 908, "felt:has_geometry": true, "felt:h3_index": 644719839858592777, "STATEFP": 6, "PLACEFP": 31883, "PLACENS": 2408347, "GEOID": 631883, "NAME": "Hamilton Branch", "NAMELSAD": "Hamilton Branch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2811184, "AWATER": 0, "INTPTLAT": 40.27725, "INTPTLON": -121.0960923, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -121.096802, 40.275335 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1004, "felt:has_geometry": true, "felt:h3_index": 644719839872170521, "STATEFP": 6, "PLACEFP": 39420, "PLACENS": 2408530, "GEOID": 639420, "NAME": "Lake Almanor Peninsula", "NAMELSAD": "Lake Almanor Peninsula CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7863269, "AWATER": 0, "INTPTLAT": 40.2812102, "INTPTLON": -121.1344538, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 40.279526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 632, "felt:has_geometry": true, "felt:h3_index": 644719840255551302, "STATEFP": 6, "PLACEFP": 10914, "PLACENS": 2407959, "GEOID": 610914, "NAME": "Canyondam", "NAMELSAD": "Canyondam CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1985597, "AWATER": 0, "INTPTLAT": 40.1698672, "INTPTLON": -121.0769858, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -121.074829, 40.170479 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1299, "felt:has_geometry": true, "felt:h3_index": 644719840357699611, "STATEFP": 6, "PLACEFP": 58618, "PLACENS": 2409103, "GEOID": 658618, "NAME": "Prattville", "NAMELSAD": "Prattville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1561232, "AWATER": 0, "INTPTLAT": 40.2060047, "INTPTLON": -121.1574565, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 40.204050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 498, "felt:has_geometry": true, "felt:h3_index": 644719840379355715, "STATEFP": 6, "PLACEFP": 1094, "PLACENS": 2407722, "GEOID": 601094, "NAME": "Almanor", "NAMELSAD": "Almanor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2287751, "AWATER": 0, "INTPTLAT": 40.2144936, "INTPTLON": -121.1762201, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -121.173706, 40.212441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 843, "felt:has_geometry": true, "felt:h3_index": 644719843107942596, "STATEFP": 6, "PLACEFP": 24750, "PLACENS": 2612480, "GEOID": 624750, "NAME": "Forbestown", "NAMELSAD": "Forbestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16250437, "AWATER": 15370, "INTPTLAT": 39.5275837, "INTPTLON": -121.2662224, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 39.529467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 682, "felt:has_geometry": true, "felt:h3_index": 644719843191971241, "STATEFP": 6, "PLACEFP": 14148, "PLACENS": 2612477, "GEOID": 614148, "NAME": "Clipper Mills", "NAMELSAD": "Clipper Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4503147, "AWATER": 0, "INTPTLAT": 39.5324242, "INTPTLON": -121.1665519, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 39.533703 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 798, "felt:has_geometry": true, "felt:h3_index": 644719843459216096, "STATEFP": 6, "PLACEFP": 12612, "PLACENS": 2408008, "GEOID": 612612, "NAME": "Challenge-Brownsville", "NAMELSAD": "Challenge-Brownsville CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25135642, "AWATER": 0, "INTPTLAT": 39.4646167, "INTPTLON": -121.26325, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -121.261597, 39.465885 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1337, "felt:has_geometry": true, "felt:h3_index": 644719843663741011, "STATEFP": 6, "PLACEFP": 62200, "PLACENS": 2612487, "GEOID": 662200, "NAME": "Robinson Mill", "NAMELSAD": "Robinson Mill CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3411263, "AWATER": 0, "INTPTLAT": 39.4856263, "INTPTLON": -121.3201644, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 39.487085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 555, "felt:has_geometry": true, "felt:h3_index": 644719844406726684, "STATEFP": 6, "PLACEFP": 6070, "PLACENS": 2612472, "GEOID": 606070, "NAME": "Berry Creek", "NAMELSAD": "Berry Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 147940054, "AWATER": 154403, "INTPTLAT": 39.6318124, "INTPTLON": -121.4056211, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -121.404419, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 976, "felt:has_geometry": true, "felt:h3_index": 644719844730946280, "STATEFP": 6, "PLACEFP": 38024, "PLACENS": 2612483, "GEOID": 638024, "NAME": "Kelly Ridge", "NAMELSAD": "Kelly Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5054047, "AWATER": 0, "INTPTLAT": 39.5288032, "INTPTLON": -121.4662586, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -121.464844, 39.529467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1030, "felt:has_geometry": true, "felt:h3_index": 644719845493462406, "STATEFP": 6, "PLACEFP": 40312, "PLACENS": 2408509, "GEOID": 640312, "NAME": "La Porte", "NAMELSAD": "La Porte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11543765, "AWATER": 0, "INTPTLAT": 39.6725081, "INTPTLON": -120.9852443, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -120.986938, 39.673370 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 750, "felt:has_geometry": true, "felt:h3_index": 644719847200111876, "STATEFP": 6, "PLACEFP": 19416, "PLACENS": 2582996, "GEOID": 619416, "NAME": "Dobbins", "NAMELSAD": "Dobbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20051346, "AWATER": 187248, "INTPTLAT": 39.3565902, "INTPTLON": -121.2103783, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -121.212158, 39.355538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1205, "felt:has_geometry": true, "felt:h3_index": 644719847576080734, "STATEFP": 6, "PLACEFP": 52246, "PLACENS": 2628766, "GEOID": 652246, "NAME": "North San Juan", "NAMELSAD": "North San Juan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6275144, "AWATER": 0, "INTPTLAT": 39.37181, "INTPTLON": -121.1060793, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -121.107788, 39.372526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1306, "felt:has_geometry": true, "felt:h3_index": 644719848321460304, "STATEFP": 6, "PLACEFP": 59115, "PLACENS": 2612485, "GEOID": 659115, "NAME": "Rackerby", "NAMELSAD": "Rackerby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7650377, "AWATER": 0, "INTPTLAT": 39.4261136, "INTPTLON": -121.35419, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 39.427707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 535, "felt:has_geometry": true, "felt:h3_index": 644719848870971657, "STATEFP": 6, "PLACEFP": 3792, "PLACENS": 2612459, "GEOID": 603792, "NAME": "Bangor", "NAMELSAD": "Bangor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34765044, "AWATER": 0, "INTPTLAT": 39.3760873, "INTPTLON": -121.4116537, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -121.409912, 39.376772 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 630, "felt:has_geometry": true, "felt:h3_index": 644719849349908232, "STATEFP": 6, "PLACEFP": 10676, "PLACENS": 2628715, "GEOID": 610676, "NAME": "Camptonville", "NAMELSAD": "Camptonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221241, "AWATER": 0, "INTPTLAT": 39.4520717, "INTPTLON": -121.048668, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.453161 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1270, "felt:has_geometry": true, "felt:h3_index": 644719850214437276, "STATEFP": 6, "PLACEFP": 57036, "PLACENS": 2583112, "GEOID": 657036, "NAME": "Pike", "NAMELSAD": "Pike CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11194524, "AWATER": 0, "INTPTLAT": 39.427843, "INTPTLON": -120.9996815, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -120.997925, 39.427707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1103, "felt:has_geometry": true, "felt:h3_index": 644719851742904618, "STATEFP": 6, "PLACEFP": 45120, "PLACENS": 2408161, "GEOID": 645120, "NAME": "Magalia", "NAMELSAD": "Magalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36313238, "AWATER": 10648, "INTPTLAT": 39.8187523, "INTPTLON": -121.6077477, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -121.607666, 39.816975 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 362, "felt:has_geometry": true, "felt:h3_index": 644719852095185584, "STATEFP": 6, "PLACEFP": 55520, "PLACENS": 2413111, "GEOID": 655520, "NAME": "Paradise", "NAMELSAD": "Paradise town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47439306, "AWATER": 34214, "INTPTLAT": 39.7541919, "INTPTLON": -121.6064, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -121.607666, 39.753657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 696, "felt:has_geometry": true, "felt:h3_index": 644719852337669908, "STATEFP": 6, "PLACEFP": 16035, "PLACENS": 2407652, "GEOID": 616035, "NAME": "Concow", "NAMELSAD": "Concow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 70981496, "AWATER": 968640, "INTPTLAT": 39.7703164, "INTPTLON": -121.513493, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -121.514282, 39.770548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 848, "felt:has_geometry": true, "felt:h3_index": 644719852873437462, "STATEFP": 6, "PLACEFP": 24918, "PLACENS": 2612481, "GEOID": 624918, "NAME": "Forest Ranch", "NAMELSAD": "Forest Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36089639, "AWATER": 0, "INTPTLAT": 39.8952041, "INTPTLON": -121.6704507, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -121.668091, 39.897094 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 687, "felt:has_geometry": true, "felt:h3_index": 644719852980995169, "STATEFP": 6, "PLACEFP": 14442, "PLACENS": 2612478, "GEOID": 614442, "NAME": "Cohasset", "NAMELSAD": "Cohasset CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 64868861, "AWATER": 0, "INTPTLAT": 39.9021522, "INTPTLON": -121.7453682, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -121.744995, 39.901309 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1443, "felt:has_geometry": true, "felt:h3_index": 644719855523273364, "STATEFP": 6, "PLACEFP": 74186, "PLACENS": 2612488, "GEOID": 674186, "NAME": "Stirling City", "NAMELSAD": "Stirling City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3048650, "AWATER": 2150, "INTPTLAT": 39.9049706, "INTPTLON": -121.5372635, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -121.536255, 39.905523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 607, "felt:has_geometry": true, "felt:h3_index": 644719856012416565, "STATEFP": 6, "PLACEFP": 9324, "PLACENS": 2612475, "GEOID": 609324, "NAME": "Butte Valley", "NAMELSAD": "Butte Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47368451, "AWATER": 29332, "INTPTLAT": 39.6688146, "INTPTLON": -121.6458877, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -121.646118, 39.669142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 664, "felt:has_geometry": true, "felt:h3_index": 644719856145358945, "STATEFP": 6, "PLACEFP": 12818, "PLACENS": 2612476, "GEOID": 612818, "NAME": "Cherokee", "NAMELSAD": "Cherokee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4533846, "AWATER": 442052, "INTPTLAT": 39.6508775, "INTPTLON": -121.5336463, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -121.536255, 39.652227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 154, "felt:has_geometry": true, "felt:h3_index": 644719857056874881, "STATEFP": 6, "PLACEFP": 13014, "PLACENS": 2409447, "GEOID": 613014, "NAME": "Chico", "NAMELSAD": "Chico city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89228953, "AWATER": 445035, "INTPTLAT": 39.7589514, "INTPTLON": -121.8177197, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 39.757880 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 605, "felt:has_geometry": true, "felt:h3_index": 644719857380923420, "STATEFP": 6, "PLACEFP": 9310, "PLACENS": 2612473, "GEOID": 609310, "NAME": "Butte Creek Canyon", "NAMELSAD": "Butte Creek Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 53133631, "AWATER": 68391, "INTPTLAT": 39.744502, "INTPTLON": -121.7071314, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 39.745210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 761, "felt:has_geometry": true, "felt:h3_index": 644719857471115969, "STATEFP": 6, "PLACEFP": 20270, "PLACENS": 2408696, "GEOID": 620270, "NAME": "Durham", "NAMELSAD": "Durham CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 211567384, "AWATER": 393109, "INTPTLAT": 39.6293576, "INTPTLON": -121.7907705, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -121.788940, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1586, "felt:has_geometry": true, "felt:h3_index": 644719858703730989, "STATEFP": 6, "PLACEFP": 86678, "PLACENS": 2612489, "GEOID": 686678, "NAME": "Yankee Hill", "NAMELSAD": "Yankee Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15609188, "AWATER": 0, "INTPTLAT": 39.7007088, "INTPTLON": -121.5146882, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -121.514282, 39.698734 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1402, "felt:has_geometry": true, "felt:h3_index": 644719861002316968, "STATEFP": 6, "PLACEFP": 71778, "PLACENS": 2583139, "GEOID": 671778, "NAME": "Sierra City", "NAMELSAD": "Sierra City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569937, "AWATER": 728, "INTPTLAT": 39.5726584, "INTPTLON": -120.6276165, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 39.571822 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1059, "felt:has_geometry": true, "felt:h3_index": 644719861379633585, "STATEFP": 6, "PLACEFP": 41789, "PLACENS": 2408619, "GEOID": 641789, "NAME": "Little Grass Valley", "NAMELSAD": "Little Grass Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25897822, "AWATER": 0, "INTPTLAT": 39.7252456, "INTPTLON": -120.9590728, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 39.724089 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1566, "felt:has_geometry": true, "felt:h3_index": 644719862260292932, "STATEFP": 6, "PLACEFP": 85086, "PLACENS": 2409587, "GEOID": 685086, "NAME": "Whitehawk", "NAMELSAD": "Whitehawk CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693778, "AWATER": 0, "INTPTLAT": 39.7206086, "INTPTLON": -120.5535831, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -120.552979, 39.719863 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 681, "felt:has_geometry": true, "felt:h3_index": 644719862371191632, "STATEFP": 6, "PLACEFP": 14106, "PLACENS": 2407637, "GEOID": 614106, "NAME": "Clio", "NAMELSAD": "Clio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1514932, "AWATER": 0, "INTPTLAT": 39.754217, "INTPTLON": -120.566728, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -120.569458, 39.753657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1088, "felt:has_geometry": true, "felt:h3_index": 644719862407333721, "STATEFP": 6, "PLACEFP": 44672, "PLACENS": 2612134, "GEOID": 644672, "NAME": "Mabie", "NAMELSAD": "Mabie CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9430660, "AWATER": 0, "INTPTLAT": 39.7770598, "INTPTLON": -120.5446993, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -120.541992, 39.778991 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 714, "felt:has_geometry": true, "felt:h3_index": 644719862426371148, "STATEFP": 6, "PLACEFP": 17267, "PLACENS": 2407682, "GEOID": 617267, "NAME": "C-Road", "NAMELSAD": "C-Road CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6891297, "AWATER": 0, "INTPTLAT": 39.7627283, "INTPTLON": -120.5770513, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -120.574951, 39.762103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1518, "felt:has_geometry": true, "felt:h3_index": 644719862440640880, "STATEFP": 6, "PLACEFP": 81869, "PLACENS": 2409397, "GEOID": 681869, "NAME": "Valley Ranch", "NAMELSAD": "Valley Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2945415, "AWATER": 0, "INTPTLAT": 39.7403417, "INTPTLON": -120.5648953, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -120.563965, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 955, "felt:has_geometry": true, "felt:h3_index": 644719862680070312, "STATEFP": 6, "PLACEFP": 36735, "PLACENS": 2408431, "GEOID": 636735, "NAME": "Iron Horse", "NAMELSAD": "Iron Horse CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20055716, "AWATER": 0, "INTPTLAT": 39.7804812, "INTPTLON": -120.4822908, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -120.481567, 39.778991 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 881, "felt:has_geometry": true, "felt:h3_index": 644719862726368477, "STATEFP": 6, "PLACEFP": 30339, "PLACENS": 2583025, "GEOID": 630339, "NAME": "Gold Mountain", "NAMELSAD": "Gold Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15767571, "AWATER": 0, "INTPTLAT": 39.7613149, "INTPTLON": -120.5190536, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -120.520020, 39.762103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 617, "felt:has_geometry": true, "felt:h3_index": 644719863138919603, "STATEFP": 6, "PLACEFP": 10004, "PLACENS": 2582957, "GEOID": 610004, "NAME": "Calpine", "NAMELSAD": "Calpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1838557, "AWATER": 5712, "INTPTLAT": 39.663381, "INTPTLON": -120.4392769, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -120.437622, 39.664914 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 966, "felt:has_geometry": true, "felt:h3_index": 644719863315242262, "STATEFP": 6, "PLACEFP": 37512, "PLACENS": 2408450, "GEOID": 637512, "NAME": "Johnsville", "NAMELSAD": "Johnsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35638914, "AWATER": 134828, "INTPTLAT": 39.7697097, "INTPTLON": -120.6997827, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -120.701294, 39.770548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1286, "felt:has_geometry": true, "felt:h3_index": 644719863603222288, "STATEFP": 6, "PLACEFP": 57828, "PLACENS": 2409082, "GEOID": 657828, "NAME": "Plumas Eureka", "NAMELSAD": "Plumas Eureka CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10294401, "AWATER": 0, "INTPTLAT": 39.7982418, "INTPTLON": -120.664441, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 39.800096 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1148, "felt:has_geometry": true, "felt:h3_index": 644719863613423620, "STATEFP": 6, "PLACEFP": 48448, "PLACENS": 2408852, "GEOID": 648448, "NAME": "Mohawk Vista", "NAMELSAD": "Mohawk Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30997962, "AWATER": 0, "INTPTLAT": 39.8048221, "INTPTLON": -120.5883119, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 39.804316 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 569, "felt:has_geometry": true, "felt:h3_index": 644719863646448041, "STATEFP": 6, "PLACEFP": 6994, "PLACENS": 2407861, "GEOID": 606994, "NAME": "Blairsden", "NAMELSAD": "Blairsden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1402709, "AWATER": 0, "INTPTLAT": 39.775205, "INTPTLON": -120.6108447, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -120.613403, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 887, "felt:has_geometry": true, "felt:h3_index": 644719864174749876, "STATEFP": 6, "PLACEFP": 30560, "PLACENS": 2408311, "GEOID": 630560, "NAME": "Graeagle", "NAMELSAD": "Graeagle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28666635, "AWATER": 147558, "INTPTLAT": 39.7524774, "INTPTLON": -120.6454492, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -120.646362, 39.753657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 891, "felt:has_geometry": true, "felt:h3_index": 644719865152622803, "STATEFP": 6, "PLACEFP": 30714, "PLACENS": 2628735, "GEOID": 630714, "NAME": "Graniteville", "NAMELSAD": "Graniteville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3853000, "AWATER": 0, "INTPTLAT": 39.4443656, "INTPTLON": -120.7360303, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -120.734253, 39.444678 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 885, "felt:has_geometry": true, "felt:h3_index": 644719865476942560, "STATEFP": 6, "PLACEFP": 30420, "PLACENS": 2583027, "GEOID": 630420, "NAME": "Goodyears Bar", "NAMELSAD": "Goodyears Bar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5309072, "AWATER": 43381, "INTPTLAT": 39.552354, "INTPTLON": -120.8931017, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 39.550648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 756, "felt:has_geometry": true, "felt:h3_index": 644719865958048474, "STATEFP": 6, "PLACEFP": 19794, "PLACENS": 2583000, "GEOID": 619794, "NAME": "Downieville", "NAMELSAD": "Downieville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8237935, "AWATER": 14330, "INTPTLAT": 39.5786434, "INTPTLON": -120.8164052, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -120.816650, 39.580290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 703, "felt:has_geometry": true, "felt:h3_index": 644719877765476874, "STATEFP": 6, "PLACEFP": 16630, "PLACENS": 2407668, "GEOID": 616630, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34251530, "AWATER": 0, "INTPTLAT": 40.390291, "INTPTLON": -122.3156307, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.316284, 40.388397 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 911, "felt:has_geometry": true, "felt:h3_index": 644719881235613325, "STATEFP": 6, "PLACEFP": 32036, "PLACENS": 2813350, "GEOID": 632036, "NAME": "Happy Valley", "NAMELSAD": "Happy Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43746583, "AWATER": 260613, "INTPTLAT": 40.4661408, "INTPTLON": -122.4179692, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 40.467845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 313, "felt:has_geometry": true, "felt:h3_index": 644719881388344180, "STATEFP": 6, "PLACEFP": 2042, "PLACENS": 2409706, "GEOID": 602042, "NAME": "Anderson", "NAMELSAD": "Anderson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18210820, "AWATER": 466513, "INTPTLAT": 40.4497548, "INTPTLON": -122.2950698, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.294312, 40.451127 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 294, "felt:has_geometry": true, "felt:h3_index": 644719882398990498, "STATEFP": 6, "PLACEFP": 59892, "PLACENS": 2411527, "GEOID": 659892, "NAME": "Red Bluff", "NAMELSAD": "Red Bluff city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19582197, "AWATER": 295207, "INTPTLAT": 40.1735147, "INTPTLON": -122.2415247, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.239380, 40.174676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1007, "felt:has_geometry": true, "felt:h3_index": 644719883894269667, "STATEFP": 6, "PLACEFP": 39460, "PLACENS": 2628747, "GEOID": 639460, "NAME": "Lake California", "NAMELSAD": "Lake California CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16346691, "AWATER": 862108, "INTPTLAT": 40.3583551, "INTPTLON": -122.2088428, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.206421, 40.359103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 722, "felt:has_geometry": true, "felt:h3_index": 644719884019783468, "STATEFP": 6, "PLACEFP": 17876, "PLACENS": 2804439, "GEOID": 617876, "NAME": "Dales", "NAMELSAD": "Dales CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1671161, "AWATER": 21566, "INTPTLAT": 40.3179889, "INTPTLON": -122.0538444, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.052612, 40.317232 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 550, "felt:has_geometry": true, "felt:h3_index": 644719884450064174, "STATEFP": 6, "PLACEFP": 5276, "PLACENS": 2628710, "GEOID": 605276, "NAME": "Bend", "NAMELSAD": "Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7548202, "AWATER": 663196, "INTPTLAT": 40.2550916, "INTPTLON": -122.2109161, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 40.254377 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAME": "Weaverville", "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.931519, 40.738933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1599, "felt:has_geometry": true, "felt:h3_index": 644719887281349729, "STATEFP": 6, "PLACEFP": 41278, "PLACENS": 2408603, "GEOID": 641278, "NAME": "Lewiston", "NAMELSAD": "Lewiston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 51843522, "AWATER": 0, "INTPTLAT": 40.6969309, "INTPTLON": -122.8225094, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.821655, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 755, "felt:has_geometry": true, "felt:h3_index": 644719887485913369, "STATEFP": 6, "PLACEFP": 19724, "PLACENS": 2582999, "GEOID": 619724, "NAME": "Douglas City", "NAMELSAD": "Douglas City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799839, "AWATER": 32384, "INTPTLAT": 40.6449532, "INTPTLON": -122.9274263, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.926025, 40.643136 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 861, "felt:has_geometry": true, "felt:h3_index": 644719888692847857, "STATEFP": 6, "PLACEFP": 26056, "PLACENS": 2408262, "GEOID": 626056, "NAME": "French Gulch", "NAMELSAD": "French Gulch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31940354, "AWATER": 94840, "INTPTLAT": 40.7187929, "INTPTLON": -122.6293566, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 40.718119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1229, "felt:has_geometry": true, "felt:h3_index": 644719890515136884, "STATEFP": 6, "PLACEFP": 53882, "PLACENS": 2813354, "GEOID": 653882, "NAME": "Ono", "NAMELSAD": "Ono CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931419, "AWATER": 7877, "INTPTLAT": 40.4781165, "INTPTLON": -122.6254908, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.623901, 40.476203 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1393, "felt:has_geometry": true, "felt:h3_index": 644719892593200352, "STATEFP": 6, "PLACEFP": 71218, "PLACENS": 2583135, "GEOID": 671218, "NAME": "Shasta", "NAMELSAD": "Shasta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28306682, "AWATER": 11513, "INTPTLAT": 40.5920212, "INTPTLON": -122.477899, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 40.593100 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 985, "felt:has_geometry": true, "felt:h3_index": 644719892813896067, "STATEFP": 6, "PLACEFP": 38352, "PLACENS": 2583046, "GEOID": 638352, "NAME": "Keswick", "NAMELSAD": "Keswick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8778129, "AWATER": 325908, "INTPTLAT": 40.6129587, "INTPTLON": -122.4607792, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 947, "felt:has_geometry": true, "felt:h3_index": 644719892923169587, "STATEFP": 6, "PLACEFP": 36252, "PLACENS": 2813333, "GEOID": 636252, "NAME": "Igo", "NAMELSAD": "Igo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2632527, "AWATER": 1954, "INTPTLAT": 40.4977403, "INTPTLON": -122.5496208, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.546997, 40.497092 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 659, "felt:has_geometry": true, "felt:h3_index": 644719893161305985, "STATEFP": 6, "PLACEFP": 12415, "PLACENS": 2813348, "GEOID": 612415, "NAME": "Centerville", "NAMELSAD": "Centerville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20842577, "AWATER": 105845, "INTPTLAT": 40.5429017, "INTPTLON": -122.4645048, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 40.543026 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1399, "felt:has_geometry": true, "felt:h3_index": 644719894588148397, "STATEFP": 6, "PLACEFP": 71568, "PLACENS": 2408728, "GEOID": 671568, "NAME": "Shingletown", "NAMELSAD": "Shingletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63570619, "AWATER": 177508, "INTPTLAT": 40.5060943, "INTPTLON": -121.8556646, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -121.854858, 40.505446 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1107, "felt:has_geometry": true, "felt:h3_index": 644719895002153130, "STATEFP": 6, "PLACEFP": 45512, "PLACENS": 2408168, "GEOID": 645512, "NAME": "Manton", "NAMELSAD": "Manton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45833424, "AWATER": 67403, "INTPTLAT": 40.4266788, "INTPTLON": -121.8504212, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 40.426042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1569, "felt:has_geometry": true, "felt:h3_index": 644719895961197813, "STATEFP": 6, "PLACEFP": 85250, "PLACENS": 2813357, "GEOID": 685250, "NAME": "Whitmore", "NAMELSAD": "Whitmore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16909590, "AWATER": 14380, "INTPTLAT": 40.61251, "INTPTLON": -121.9359064, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.613952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1256, "felt:has_geometry": true, "felt:h3_index": 644719900619086381, "STATEFP": 6, "PLACEFP": 56196, "PLACENS": 2628773, "GEOID": 656196, "NAME": "Paynes Creek", "NAMELSAD": "Paynes Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8887673, "AWATER": 3777, "INTPTLAT": 40.3418999, "INTPTLON": -121.9249741, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 40.342357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1140, "felt:has_geometry": true, "felt:h3_index": 644719901233689386, "STATEFP": 6, "PLACEFP": 47794, "PLACENS": 2408836, "GEOID": 647794, "NAME": "Mineral", "NAMELSAD": "Mineral CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 114744267, "AWATER": 286834, "INTPTLAT": 40.4027126, "INTPTLON": -121.5508439, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -121.552734, 40.400948 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAME": "Jones Valley", "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.239380, 40.701464 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1160, "felt:has_geometry": true, "felt:h3_index": 644719905524223196, "STATEFP": 6, "PLACEFP": 48998, "PLACENS": 2408863, "GEOID": 648998, "NAME": "Montgomery Creek", "NAMELSAD": "Montgomery Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8536890, "AWATER": 11338, "INTPTLAT": 40.8428384, "INTPTLON": -121.9206607, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -121.920776, 40.842905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1349, "felt:has_geometry": true, "felt:h3_index": 644719906000834627, "STATEFP": 6, "PLACEFP": 63134, "PLACENS": 2409216, "GEOID": 663134, "NAME": "Round Mountain", "NAMELSAD": "Round Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4342857, "AWATER": 17581, "INTPTLAT": 40.7974631, "INTPTLON": -121.9379875, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.797177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1139, "felt:has_geometry": true, "felt:h3_index": 644719907922167830, "STATEFP": 6, "PLACEFP": 47724, "PLACENS": 2408834, "GEOID": 647724, "NAME": "Millville", "NAMELSAD": "Millville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20839153, "AWATER": 433331, "INTPTLAT": 40.5595689, "INTPTLON": -122.1755686, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.173462, 40.559721 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1242, "felt:has_geometry": true, "felt:h3_index": 644719908070632019, "STATEFP": 6, "PLACEFP": 55296, "PLACENS": 2409021, "GEOID": 655296, "NAME": "Palo Cedro", "NAMELSAD": "Palo Cedro CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21184711, "AWATER": 280522, "INTPTLAT": 40.566236, "INTPTLON": -122.2428371, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.244873, 40.568067 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 274, "felt:has_geometry": true, "felt:h3_index": 644719908610551070, "STATEFP": 6, "PLACEFP": 71225, "PLACENS": 2411877, "GEOID": 671225, "NAME": "Shasta Lake", "NAMELSAD": "Shasta Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28229509, "AWATER": 14724, "INTPTLAT": 40.6765637, "INTPTLON": -122.3809091, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 40.676472 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 547, "felt:has_geometry": true, "felt:h3_index": 644719908744222592, "STATEFP": 6, "PLACEFP": 4926, "PLACENS": 2582942, "GEOID": 604926, "NAME": "Bella Vista", "NAMELSAD": "Bella Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68485004, "AWATER": 508710, "INTPTLAT": 40.6512049, "INTPTLON": -122.2563699, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 40.651471 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1168, "felt:has_geometry": true, "felt:h3_index": 644719908809770788, "STATEFP": 6, "PLACEFP": 49558, "PLACENS": 2628760, "GEOID": 649558, "NAME": "Mountain Gate", "NAMELSAD": "Mountain Gate CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5115620, "AWATER": 0, "INTPTLAT": 40.7184558, "INTPTLON": -122.3262249, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.327271, 40.718119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 273, "felt:has_geometry": true, "felt:h3_index": 644719909015799626, "STATEFP": 6, "PLACEFP": 59920, "PLACENS": 2411531, "GEOID": 659920, "NAME": "Redding", "NAMELSAD": "Redding city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 154023453, "AWATER": 3904619, "INTPTLAT": 40.5702768, "INTPTLON": -122.3667659, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 40.572240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1213, "felt:has_geometry": true, "felt:h3_index": 644719909505289381, "STATEFP": 6, "PLACEFP": 53140, "PLACENS": 2813353, "GEOID": 653140, "NAME": "Oak Run", "NAMELSAD": "Oak Run CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7803833, "AWATER": 12670, "INTPTLAT": 40.6941964, "INTPTLON": -122.0250083, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 40.693134 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1316, "felt:has_geometry": true, "felt:h3_index": 644719912127851366, "STATEFP": 6, "PLACEFP": 59604, "PLACENS": 2409139, "GEOID": 659604, "NAME": "Rancho Tehama Reserve", "NAMELSAD": "Rancho Tehama Reserve CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30267928, "AWATER": 200213, "INTPTLAT": 40.0040029, "INTPTLON": -122.4283397, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 40.002372 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 841, "felt:has_geometry": true, "felt:h3_index": 644719912447174310, "STATEFP": 6, "PLACEFP": 24568, "PLACENS": 2628732, "GEOID": 624568, "NAME": "Flournoy", "NAMELSAD": "Flournoy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15165230, "AWATER": 0, "INTPTLAT": 39.928339, "INTPTLON": -122.445793, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1252, "felt:has_geometry": true, "felt:h3_index": 644719917368957665, "STATEFP": 6, "PLACEFP": 56042, "PLACENS": 2628772, "GEOID": 656042, "NAME": "Paskenta", "NAMELSAD": "Paskenta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2799215, "AWATER": 0, "INTPTLAT": 39.8832746, "INTPTLON": -122.5458335, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.546997, 39.884450 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 96, "felt:has_geometry": true, "felt:h3_index": 644719918373734998, "STATEFP": 6, "PLACEFP": 16322, "PLACENS": 2410231, "GEOID": 616322, "NAME": "Corning", "NAMELSAD": "Corning city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9186897, "AWATER": 0, "INTPTLAT": 39.9282003, "INTPTLON": -122.1820088, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.184448, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1284, "felt:has_geometry": true, "felt:h3_index": 644719924207559514, "STATEFP": 6, "PLACEFP": 57666, "PLACENS": 2813355, "GEOID": 657666, "NAME": "Platina", "NAMELSAD": "Platina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5357433, "AWATER": 0, "INTPTLAT": 40.3590525, "INTPTLON": -122.904244, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 40.359103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1036, "felt:has_geometry": true, "felt:h3_index": 644719930425005838, "STATEFP": 6, "PLACEFP": 40536, "PLACENS": 2628748, "GEOID": 640536, "NAME": "Las Flores", "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 926091, "AWATER": 0, "INTPTLAT": 40.072141, "INTPTLON": -122.1573122, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 40.073868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 877, "felt:has_geometry": true, "felt:h3_index": 644719930486710829, "STATEFP": 6, "PLACEFP": 29392, "PLACENS": 2628801, "GEOID": 629392, "NAME": "Gerber", "NAMELSAD": "Gerber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2401403, "AWATER": 0, "INTPTLAT": 40.0614174, "INTPTLON": -122.1482008, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.145996, 40.061257 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1301, "felt:has_geometry": true, "felt:h3_index": 644719930505168641, "STATEFP": 6, "PLACEFP": 58814, "PLACENS": 2628780, "GEOID": 658814, "NAME": "Proberta", "NAMELSAD": "Proberta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3707383, "AWATER": 0, "INTPTLAT": 40.0761573, "INTPTLON": -122.1776086, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.178955, 40.078071 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1078, "felt:has_geometry": true, "felt:h3_index": 644719934649223755, "STATEFP": 6, "PLACEFP": 44140, "PLACENS": 2408138, "GEOID": 644140, "NAME": "Los Molinos", "NAMELSAD": "Los Molinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5637051, "AWATER": 80526, "INTPTLAT": 40.0270736, "INTPTLON": -122.0979711, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.096558, 40.027614 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 97, "felt:has_geometry": true, "felt:h3_index": 644719934668626734, "STATEFP": 6, "PLACEFP": 78106, "PLACENS": 2412042, "GEOID": 678106, "NAME": "Tehama", "NAMELSAD": "Tehama city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2057210, "AWATER": 0, "INTPTLAT": 40.0217761, "INTPTLON": -122.1269008, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.129517, 40.023408 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1324, "felt:has_geometry": true, "felt:h3_index": 644719934891659594, "STATEFP": 6, "PLACEFP": 60592, "PLACENS": 2628783, "GEOID": 660592, "NAME": "Richfield", "NAMELSAD": "Richfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1417240, "AWATER": 0, "INTPTLAT": 39.9738012, "INTPTLON": -122.1732337, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.173462, 39.972911 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1527, "felt:has_geometry": true, "felt:h3_index": 644719935080401107, "STATEFP": 6, "PLACEFP": 82786, "PLACENS": 2628796, "GEOID": 682786, "NAME": "Vina", "NAMELSAD": "Vina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3501362, "AWATER": 0, "INTPTLAT": 39.93418, "INTPTLON": -122.0517059, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.052612, 39.935013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1254, "felt:has_geometry": true, "felt:h3_index": 644719982062547848, "STATEFP": 6, "PLACEFP": 56140, "PLACENS": 2583109, "GEOID": 656140, "NAME": "Patton Village", "NAMELSAD": "Patton Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9040567, "AWATER": 0, "INTPTLAT": 40.1407242, "INTPTLON": -120.178123, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -120.179443, 40.141090 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 921, "felt:has_geometry": true, "felt:h3_index": 644719982293045926, "STATEFP": 6, "PLACEFP": 33336, "PLACENS": 2583035, "GEOID": 633336, "NAME": "Herlong", "NAMELSAD": "Herlong CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4320220, "AWATER": 0, "INTPTLAT": 40.1417221, "INTPTLON": -120.1396567, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -120.140991, 40.141090 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 757, "felt:has_geometry": true, "felt:h3_index": 644719986573508608, "STATEFP": 6, "PLACEFP": 19878, "PLACENS": 2583001, "GEOID": 619878, "NAME": "Doyle", "NAMELSAD": "Doyle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15817150, "AWATER": 1998, "INTPTLAT": 40.027223, "INTPTLON": -120.1153701, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 40.027614 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1058, "felt:has_geometry": true, "felt:h3_index": 644719989012767651, "STATEFP": 6, "PLACEFP": 41782, "PLACENS": 2628751, "GEOID": 641782, "NAME": "Litchfield", "NAMELSAD": "Litchfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10312458, "AWATER": 0, "INTPTLAT": 40.3877018, "INTPTLON": -120.3807054, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -120.382690, 40.388397 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 251, "felt:has_geometry": true, "felt:h3_index": 644719990755819776, "STATEFP": 6, "PLACEFP": 77364, "PLACENS": 2412017, "GEOID": 677364, "NAME": "Susanville", "NAMELSAD": "Susanville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20507839, "AWATER": 218688, "INTPTLAT": 40.433674, "INTPTLON": -120.6283062, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 40.434405 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 965, "felt:has_geometry": true, "felt:h3_index": 644719994481830603, "STATEFP": 6, "PLACEFP": 37484, "PLACENS": 2583042, "GEOID": 637484, "NAME": "Johnstonville", "NAMELSAD": "Johnstonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22246440, "AWATER": 108930, "INTPTLAT": 40.3801984, "INTPTLON": -120.5861336, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 961, "felt:has_geometry": true, "felt:h3_index": 644719995172245941, "STATEFP": 6, "PLACEFP": 37134, "PLACENS": 2611437, "GEOID": 637134, "NAME": "Janesville", "NAMELSAD": "Janesville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87578550, "AWATER": 50416, "INTPTLAT": 40.3011047, "INTPTLON": -120.4903177, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -120.492554, 40.300476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAME": "Kep'el", "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -123.821411, 41.286062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 899, "felt:has_geometry": true, "felt:h3_index": 644721733138311369, "STATEFP": 6, "PLACEFP": 31099, "PLACENS": 2408330, "GEOID": 631099, "NAME": "Green Valley", "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21678078, "AWATER": 3847, "INTPTLAT": 38.2638424, "INTPTLON": -122.162496, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.162476, 38.264063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 390, "felt:has_geometry": true, "felt:h3_index": 644721733365930889, "STATEFP": 6, "PLACEFP": 1640, "PLACENS": 2409695, "GEOID": 601640, "NAME": "American Canyon", "NAMELSAD": "American Canyon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15780247, "AWATER": 102525, "INTPTLAT": 38.1790331, "INTPTLON": -122.2596023, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.261353, 38.177751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 29, "felt:has_geometry": true, "felt:h3_index": 644721733986016010, "STATEFP": 6, "PLACEFP": 72646, "PLACENS": 2411929, "GEOID": 672646, "NAME": "Sonoma", "NAMELSAD": "Sonoma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7105863, "AWATER": 0, "INTPTLAT": 38.2903313, "INTPTLON": -122.459831, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 38.289937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 354, "felt:has_geometry": true, "felt:h3_index": 644721734083250478, "STATEFP": 6, "PLACEFP": 50258, "PLACENS": 2411209, "GEOID": 650258, "NAME": "Napa", "NAMELSAD": "Napa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46714150, "AWATER": 810079, "INTPTLAT": 38.2978718, "INTPTLON": -122.3007407, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 476, "felt:has_geometry": true, "felt:h3_index": 644721734916323120, "STATEFP": 6, "PLACEFP": 23182, "PLACENS": 2410474, "GEOID": 623182, "NAME": "Fairfield", "NAMELSAD": "Fairfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107707592, "AWATER": 738306, "INTPTLAT": 38.2620602, "INTPTLON": -122.032386, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.030640, 38.264063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 477, "felt:has_geometry": true, "felt:h3_index": 644721735279050956, "STATEFP": 6, "PLACEFP": 81554, "PLACENS": 2412139, "GEOID": 681554, "NAME": "Vacaville", "NAMELSAD": "Vacaville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77363273, "AWATER": 600053, "INTPTLAT": 38.3586211, "INTPTLON": -121.9686015, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.358888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 25, "felt:has_geometry": true, "felt:h3_index": 644721735672430926, "STATEFP": 6, "PLACEFP": 75630, "PLACENS": 2411995, "GEOID": 675630, "NAME": "Suisun City", "NAMELSAD": "Suisun City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10373861, "AWATER": 156438, "INTPTLAT": 38.2483339, "INTPTLON": -122.0100659, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.008667, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1406, "felt:has_geometry": true, "felt:h3_index": 644721736123308808, "STATEFP": 6, "PLACEFP": 71927, "PLACENS": 2583142, "GEOID": 671927, "NAME": "Silverado Resort", "NAMELSAD": "Silverado Resort CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4896980, "AWATER": 24818, "INTPTLAT": 38.3563023, "INTPTLON": -122.2563343, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.354580 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1292, "felt:has_geometry": true, "felt:h3_index": 644721736992036100, "STATEFP": 6, "PLACEFP": 58226, "PLACENS": 2409091, "GEOID": 658226, "NAME": "Port Costa", "NAMELSAD": "Port Costa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 409759, "AWATER": 0, "INTPTLAT": 38.044543, "INTPTLON": -122.1849415, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.184448, 38.043765 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 715, "felt:has_geometry": true, "felt:h3_index": 644721737004501828, "STATEFP": 6, "PLACEFP": 17274, "PLACENS": 2407683, "GEOID": 617274, "NAME": "Crockett", "NAMELSAD": "Crockett CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2751227, "AWATER": 0, "INTPTLAT": 38.0519195, "INTPTLON": -122.2201268, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.217407, 38.052417 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 21, "felt:has_geometry": true, "felt:h3_index": 644721737460646404, "STATEFP": 6, "PLACEFP": 5290, "PLACENS": 2409833, "GEOID": 605290, "NAME": "Benicia", "NAMELSAD": "Benicia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33185399, "AWATER": 3386032, "INTPTLAT": 38.0727334, "INTPTLON": -122.1551689, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 38.074041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 243, "felt:has_geometry": true, "felt:h3_index": 644721737681884518, "STATEFP": 6, "PLACEFP": 33308, "PLACENS": 2410746, "GEOID": 633308, "NAME": "Hercules", "NAMELSAD": "Hercules city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16608748, "AWATER": 35156475, "INTPTLAT": 38.0214271, "INTPTLON": -122.288929, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 38.022131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1338, "felt:has_geometry": true, "felt:h3_index": 644721737719812685, "STATEFP": 6, "PLACEFP": 62490, "PLACENS": 2409201, "GEOID": 662490, "NAME": "Rodeo", "NAMELSAD": "Rodeo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9703809, "AWATER": 2324189, "INTPTLAT": 38.036605, "INTPTLON": -122.2539556, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 38.035112 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 397, "felt:has_geometry": true, "felt:h3_index": 644721737833908141, "STATEFP": 6, "PLACEFP": 46114, "PLACENS": 2411045, "GEOID": 646114, "NAMELSAD": "Martinez city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32744877, "AWATER": 2607776, "INTPTLAT": 37.9981157, "INTPTLON": -122.1144193, "NAME": "Martinez,Mountain View", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.113037, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 494, "felt:has_geometry": true, "felt:h3_index": 644721737866489930, "STATEFP": 6, "PLACEFP": 898, "PLACENS": 2582930, "GEOID": 600898, "NAME": "Alhambra Valley", "NAMELSAD": "Alhambra Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4181518, "AWATER": 0, "INTPTLAT": 37.9667437, "INTPTLON": -122.1359983, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.965854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 98, "felt:has_geometry": true, "felt:h3_index": 644721738430170984, "STATEFP": 6, "PLACEFP": 81666, "PLACENS": 2412142, "GEOID": 681666, "NAME": "Vallejo", "NAMELSAD": "Vallejo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78784262, "AWATER": 46317409, "INTPTLAT": 38.1069086, "INTPTLON": -122.2623386, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.261353, 38.108628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 355, "felt:has_geometry": true, "felt:h3_index": 644721741584868253, "STATEFP": 6, "PLACEFP": 64140, "PLACENS": 2411758, "GEOID": 664140, "NAME": "St. Helena", "NAMELSAD": "St. Helena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12838322, "AWATER": 327737, "INTPTLAT": 38.5128518, "INTPTLON": -122.4680218, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 982, "felt:has_geometry": true, "felt:h3_index": 644721742179512531, "STATEFP": 6, "PLACEFP": 38156, "PLACENS": 2583045, "GEOID": 638156, "NAME": "Kenwood", "NAMELSAD": "Kenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13381900, "AWATER": 0, "INTPTLAT": 38.4154075, "INTPTLON": -122.5387535, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 38.414862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 867, "felt:has_geometry": true, "felt:h3_index": 644721742913564084, "STATEFP": 6, "PLACEFP": 28014, "PLACENS": 2583021, "GEOID": 628014, "NAME": "Fulton", "NAMELSAD": "Fulton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5047023, "AWATER": 0, "INTPTLAT": 38.4937089, "INTPTLON": -122.773417, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.772217, 38.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1033, "felt:has_geometry": true, "felt:h3_index": 644721742949549809, "STATEFP": 6, "PLACEFP": 40426, "PLACENS": 2408575, "GEOID": 640426, "NAME": "Larkfield-Wikiup", "NAMELSAD": "Larkfield-Wikiup CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13747228, "AWATER": 0, "INTPTLAT": 38.5129719, "INTPTLON": -122.7536006, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.755737, 38.513788 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 334, "felt:has_geometry": true, "felt:h3_index": 644721743088761758, "STATEFP": 6, "PLACEFP": 85922, "PLACENS": 2413495, "GEOID": 685922, "NAME": "Windsor", "NAMELSAD": "Windsor town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19260063, "AWATER": 60261, "INTPTLAT": 38.5420993, "INTPTLON": -122.8086133, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.810669, 38.543869 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 512, "felt:has_geometry": true, "felt:h3_index": 644721744154407233, "STATEFP": 6, "PLACEFP": 2168, "PLACENS": 2407744, "GEOID": 602168, "NAME": "Angwin", "NAMELSAD": "Angwin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12507052, "AWATER": 108688, "INTPTLAT": 38.5778747, "INTPTLON": -122.4512239, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 38.578232 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 727, "felt:has_geometry": true, "felt:h3_index": 644721744168381442, "STATEFP": 6, "PLACEFP": 18324, "PLACENS": 2408647, "GEOID": 618324, "NAME": "Deer Park", "NAMELSAD": "Deer Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14547393, "AWATER": 9415, "INTPTLAT": 38.5351762, "INTPTLON": -122.470152, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 38.535276 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 391, "felt:has_geometry": true, "felt:h3_index": 644721745046755010, "STATEFP": 6, "PLACEFP": 9892, "PLACENS": 2409963, "GEOID": 609892, "NAME": "Calistoga", "NAMELSAD": "Calistoga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6673453, "AWATER": 46827, "INTPTLAT": 38.5814083, "INTPTLON": -122.5826961, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.579956, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1595, "felt:has_geometry": true, "felt:h3_index": 644721745632768365, "STATEFP": 6, "PLACEFP": 30028, "PLACENS": 2408299, "GEOID": 630028, "NAME": "Glen Ellen", "NAMELSAD": "Glen Ellen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5438518, "AWATER": 2744, "INTPTLAT": 38.3553229, "INTPTLON": -122.5433057, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 38.354580 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 590, "felt:has_geometry": true, "felt:h3_index": 644721745922909084, "STATEFP": 6, "PLACEFP": 7848, "PLACENS": 2407898, "GEOID": 607848, "NAME": "Boyes Hot Springs", "NAMELSAD": "Boyes Hot Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2746385, "AWATER": 0, "INTPTLAT": 38.3126328, "INTPTLON": -122.4887382, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 38.311491 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 795, "felt:has_geometry": true, "felt:h3_index": 644721745930655430, "STATEFP": 6, "PLACEFP": 21894, "PLACENS": 2408072, "GEOID": 621894, "NAMELSAD": "Eldridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1688641, "AWATER": 0, "INTPTLAT": 38.3338866, "INTPTLON": -122.5065184, "NAME": "Eldridge,Fetters Hot Springs-Agua Caliente", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 38.333039 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 816, "felt:has_geometry": true, "felt:h3_index": 644721746443967017, "STATEFP": 6, "PLACEFP": 22510, "PLACENS": 2408064, "GEOID": 622510, "NAME": "El Verano", "NAMELSAD": "El Verano CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2964283, "AWATER": 0, "INTPTLAT": 38.2974647, "INTPTLON": -122.4915444, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1473, "felt:has_geometry": true, "felt:h3_index": 644721746449361440, "STATEFP": 6, "PLACEFP": 78126, "PLACENS": 2410064, "GEOID": 678126, "NAME": "Temelec", "NAMELSAD": "Temelec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4112404, "AWATER": 0, "INTPTLAT": 38.257755, "INTPTLON": -122.498198, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 38.259750 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 217, "felt:has_geometry": true, "felt:h3_index": 644721747052855968, "STATEFP": 6, "PLACEFP": 70098, "PLACENS": 2411827, "GEOID": 670098, "NAME": "Santa Rosa", "NAMELSAD": "Santa Rosa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110141809, "AWATER": 451569, "INTPTLAT": 38.4458238, "INTPTLON": -122.7061814, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1419, "felt:has_geometry": true, "felt:h3_index": 644721747467622673, "STATEFP": 6, "PLACEFP": 72654, "PLACENS": 2805261, "GEOID": 672654, "NAME": "Sonoma State University", "NAMELSAD": "Sonoma State University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1081020, "AWATER": 0, "INTPTLAT": 38.3405648, "INTPTLON": -122.6728841, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.673340, 38.341656 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 27, "felt:has_geometry": true, "felt:h3_index": 644721747479832294, "STATEFP": 6, "PLACEFP": 62546, "PLACENS": 2410985, "GEOID": 662546, "NAME": "Rohnert Park", "NAMELSAD": "Rohnert Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18870233, "AWATER": 12617, "INTPTLAT": 38.3476171, "INTPTLON": -122.7008956, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.700806, 38.345964 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 3, "felt:has_geometry": true, "felt:h3_index": 644721747550059252, "STATEFP": 6, "PLACEFP": 16560, "PLACENS": 2410240, "GEOID": 616560, "NAME": "Cotati", "NAMELSAD": "Cotati city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4854614, "AWATER": 8380, "INTPTLAT": 38.328492, "INTPTLON": -122.7100491, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.711792, 38.328730 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 392, "felt:has_geometry": true, "felt:h3_index": 644721747833575956, "STATEFP": 6, "PLACEFP": 86930, "PLACENS": 2412323, "GEOID": 686930, "NAME": "Yountville", "NAMELSAD": "Yountville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3851793, "AWATER": 6876, "INTPTLAT": 38.3935118, "INTPTLON": -122.3655355, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 38.393339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1356, "felt:has_geometry": true, "felt:h3_index": 644721747861739331, "STATEFP": 6, "PLACEFP": 63400, "PLACENS": 2583124, "GEOID": 663400, "NAME": "Rutherford", "NAMELSAD": "Rutherford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350420, "AWATER": 10389, "INTPTLAT": 38.458864, "INTPTLON": -122.4288313, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 38.457890 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1216, "felt:has_geometry": true, "felt:h3_index": 644721747966903658, "STATEFP": 6, "PLACEFP": 53196, "PLACENS": 2583102, "GEOID": 653196, "NAME": "Oakville", "NAMELSAD": "Oakville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3522356, "AWATER": 0, "INTPTLAT": 38.4383727, "INTPTLON": -122.4067728, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 38.436380 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 916, "felt:has_geometry": true, "felt:h3_index": 644721751107046290, "STATEFP": 6, "PLACEFP": 32340, "PLACENS": 2583031, "GEOID": 632340, "NAME": "Hartley", "NAMELSAD": "Hartley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16763354, "AWATER": 65391, "INTPTLAT": 38.4203928, "INTPTLON": -121.9508422, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 38.419166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 22, "felt:has_geometry": true, "felt:h3_index": 644721751384086856, "STATEFP": 6, "PLACEFP": 19402, "PLACENS": 2410343, "GEOID": 619402, "NAME": "Dixon", "NAMELSAD": "Dixon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18389794, "AWATER": 249127, "INTPTLAT": 38.447512, "INTPTLON": -121.8242225, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -121.821899, 38.449287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 808, "felt:has_geometry": true, "felt:h3_index": 644721751716803995, "STATEFP": 6, "PLACEFP": 22146, "PLACENS": 2408078, "GEOID": 622146, "NAME": "Elmira", "NAMELSAD": "Elmira CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1374924, "AWATER": 0, "INTPTLAT": 38.3523287, "INTPTLON": -121.9077188, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -121.909790, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 936, "felt:has_geometry": true, "felt:h3_index": 644721752093549827, "STATEFP": 6, "PLACEFP": 34484, "PLACENS": 2583037, "GEOID": 634484, "NAME": "Hood", "NAMELSAD": "Hood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 816263, "AWATER": 0, "INTPTLAT": 38.3692915, "INTPTLON": -121.515488, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -121.514282, 38.367502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 675, "felt:has_geometry": true, "felt:h3_index": 644721752262400160, "STATEFP": 6, "PLACEFP": 13784, "PLACENS": 2582974, "GEOID": 613784, "NAME": "Clarksburg", "NAMELSAD": "Clarksburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5256094, "AWATER": 0, "INTPTLAT": 38.4193354, "INTPTLON": -121.5416175, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 38.419166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 859, "felt:has_geometry": true, "felt:h3_index": 644721752423147283, "STATEFP": 6, "PLACEFP": 25590, "PLACENS": 2583018, "GEOID": 625590, "NAME": "Freeport", "NAMELSAD": "Freeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 131496, "AWATER": 0, "INTPTLAT": 38.4629355, "INTPTLON": -121.5021071, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -121.503296, 38.462192 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 706, "felt:has_geometry": true, "felt:h3_index": 644721752646225988, "STATEFP": 6, "PLACEFP": 16714, "PLACENS": 2582985, "GEOID": 616714, "NAME": "Courtland", "NAMELSAD": "Courtland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4662083, "AWATER": 0, "INTPTLAT": 38.3329109, "INTPTLON": -121.5570263, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -121.558228, 38.333039 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 856, "felt:has_geometry": true, "felt:h3_index": 644721752829855008, "STATEFP": 6, "PLACEFP": 25506, "PLACENS": 2583017, "GEOID": 625506, "NAME": "Franklin", "NAMELSAD": "Franklin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5454315, "AWATER": 0, "INTPTLAT": 38.3675214, "INTPTLON": -121.461629, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -121.459351, 38.367502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 807, "felt:has_geometry": true, "felt:h3_index": 644721753555503523, "STATEFP": 6, "PLACEFP": 22104, "PLACENS": 2804443, "GEOID": 622104, "NAME": "El Macero", "NAMELSAD": "El Macero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1520806, "AWATER": 0, "INTPTLAT": 38.544019, "INTPTLON": -121.6851681, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -121.684570, 38.543869 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 23, "felt:has_geometry": true, "felt:h3_index": 644721754408758146, "STATEFP": 6, "PLACEFP": 60984, "PLACENS": 2410955, "GEOID": 660984, "NAME": "Rio Vista", "NAMELSAD": "Rio Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17094324, "AWATER": 1283585, "INTPTLAT": 38.1766715, "INTPTLON": -121.7034059, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -121.701050, 38.177751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 387, "felt:has_geometry": true, "felt:h3_index": 644721754442474178, "STATEFP": 6, "PLACEFP": 36882, "PLACENS": 2410122, "GEOID": 636882, "NAME": "Isleton", "NAMELSAD": "Isleton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1138589, "AWATER": 133509, "INTPTLAT": 38.161252, "INTPTLON": -121.6049577, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -121.607666, 38.160476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1537, "felt:has_geometry": true, "felt:h3_index": 644721756331221299, "STATEFP": 6, "PLACEFP": 83374, "PLACENS": 2409526, "GEOID": 683374, "NAME": "Walnut Grove", "NAMELSAD": "Walnut Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26419421, "AWATER": 1883606, "INTPTLAT": 38.2505944, "INTPTLON": -121.5349734, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -121.536255, 38.251123 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1610, "felt:has_geometry": true, "felt:h3_index": 644721756662407266, "STATEFP": 6, "PLACEFP": 78568, "PLACENS": 2628795, "GEOID": 678568, "NAME": "Thornton", "NAMELSAD": "Thornton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5524658, "AWATER": 130915, "INTPTLAT": 38.2296592, "INTPTLON": -121.4260627, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -121.426392, 38.229550 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 297, "felt:has_geometry": true, "felt:h3_index": 644721759376263982, "STATEFP": 6, "PLACEFP": 86034, "PLACENS": 2412288, "GEOID": 686034, "NAME": "Winters", "NAMELSAD": "Winters city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7601165, "AWATER": 64542, "INTPTLAT": 38.5332708, "INTPTLON": -121.975473, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -121.975708, 38.535276 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1161, "felt:has_geometry": true, "felt:h3_index": 644721760675158164, "STATEFP": 6, "PLACEFP": 49045, "PLACENS": 2583086, "GEOID": 649045, "NAME": "Monument Hills", "NAMELSAD": "Monument Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10328922, "AWATER": 0, "INTPTLAT": 38.6641053, "INTPTLON": -121.8753893, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -121.876831, 38.664067 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1101, "felt:has_geometry": true, "felt:h3_index": 644721761309348901, "STATEFP": 6, "PLACEFP": 45064, "PLACENS": 2583070, "GEOID": 645064, "NAME": "Madison", "NAMELSAD": "Madison CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4004365, "AWATER": 0, "INTPTLAT": 38.6749883, "INTPTLON": -121.9702536, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 38.676933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 596, "felt:has_geometry": true, "felt:h3_index": 644721762382294226, "STATEFP": 6, "PLACEFP": 8506, "PLACENS": 2805237, "GEOID": 608506, "NAME": "Brooks", "NAMELSAD": "Brooks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11146719, "AWATER": 0, "INTPTLAT": 38.7368801, "INTPTLON": -122.1468072, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.145996, 38.736946 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 820, "felt:has_geometry": true, "felt:h3_index": 644721762583755584, "STATEFP": 6, "PLACEFP": 22846, "PLACENS": 2408089, "GEOID": 622846, "NAME": "Esparto", "NAMELSAD": "Esparto CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11916729, "AWATER": 0, "INTPTLAT": 38.6934104, "INTPTLON": -122.0240465, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 38.694085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 496, "felt:has_geometry": true, "felt:h3_index": 644721763109407845, "STATEFP": 6, "PLACEFP": 996, "PLACENS": 2582932, "GEOID": 600996, "NAME": "Allendale", "NAMELSAD": "Allendale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15892908, "AWATER": 164542, "INTPTLAT": 38.4429856, "INTPTLON": -121.9833299, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1164, "felt:has_geometry": true, "felt:h3_index": 644721764727083330, "STATEFP": 6, "PLACEFP": 49432, "PLACENS": 2583087, "GEOID": 649432, "NAME": "Moskowite Corner", "NAMELSAD": "Moskowite Corner CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7338786, "AWATER": 11878, "INTPTLAT": 38.4438743, "INTPTLON": -122.1919904, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 38.444985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1509, "felt:has_geometry": true, "felt:h3_index": 644721765277335765, "STATEFP": 6, "PLACEFP": 81302, "PLACENS": 2628819, "GEOID": 681302, "NAME": "University of California-Davis", "NAMELSAD": "University of California-Davis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4473488, "AWATER": 0, "INTPTLAT": 38.5377038, "INTPTLON": -121.7578995, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -121.755981, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 346, "felt:has_geometry": true, "felt:h3_index": 644721767494091681, "STATEFP": 6, "PLACEFP": 6000, "PLACENS": 2409837, "GEOID": 606000, "NAME": "Berkeley", "NAMELSAD": "Berkeley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27018309, "AWATER": 18712737, "INTPTLAT": 37.8656733, "INTPTLON": -122.2987247, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.866181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 348, "felt:has_geometry": true, "felt:h3_index": 644721767554172941, "STATEFP": 6, "PLACEFP": 22594, "PLACENS": 2410436, "GEOID": 622594, "NAME": "Emeryville", "NAMELSAD": "Emeryville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3297586, "AWATER": 2499006, "INTPTLAT": 37.8384729, "INTPTLON": -122.301682, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 344, "felt:has_geometry": true, "felt:h3_index": 644721767960709350, "STATEFP": 6, "PLACEFP": 562, "PLACENS": 2409669, "GEOID": 600562, "NAME": "Alameda", "NAMELSAD": "Alameda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26934009, "AWATER": 32581545, "INTPTLAT": 37.7419107, "INTPTLON": -122.2599139, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.261353, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 323, "felt:has_geometry": true, "felt:h3_index": 644721768171489905, "STATEFP": 6, "PLACEFP": 70364, "PLACENS": 2411834, "GEOID": 670364, "NAME": "Sausalito", "NAMELSAD": "Sausalito city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4568773, "AWATER": 1276883, "INTPTLAT": 37.8583694, "INTPTLON": -122.4918436, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1110, "felt:has_geometry": true, "felt:h3_index": 644721768187241552, "STATEFP": 6, "PLACEFP": 45820, "PLACENS": 2628816, "GEOID": 645820, "NAME": "Marin City", "NAMELSAD": "Marin City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1390167, "AWATER": 0, "INTPTLAT": 37.8711561, "INTPTLON": -122.5137358, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.870517 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 69, "felt:has_geometry": true, "felt:h3_index": 644721768297554245, "STATEFP": 6, "PLACEFP": 47710, "PLACENS": 2411109, "GEOID": 647710, "NAME": "Mill Valley", "NAMELSAD": "Mill Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12385974, "AWATER": 218653, "INTPTLAT": 37.9081217, "INTPTLON": -122.5423253, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1466, "felt:has_geometry": true, "felt:h3_index": 644721768373348147, "STATEFP": 6, "PLACEFP": 77805, "PLACENS": 2410054, "GEOID": 677805, "NAME": "Tamalpais-Homestead Valley", "NAMELSAD": "Tamalpais-Homestead Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12135246, "AWATER": 159394, "INTPTLAT": 37.8791291, "INTPTLON": -122.5378885, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.879189 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 70, "felt:has_geometry": true, "felt:h3_index": 644721768414402736, "STATEFP": 6, "PLACEFP": 78666, "PLACENS": 2413389, "GEOID": 678666, "NAMELSAD": "Tiburon town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11603822, "AWATER": 22626730, "INTPTLAT": 37.8867683, "INTPTLON": -122.4626194, "NAME": "Tiburon,Belvedere", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.887860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 66, "felt:has_geometry": true, "felt:h3_index": 644721768589236761, "STATEFP": 6, "PLACEFP": 16462, "PLACENS": 2413247, "GEOID": 616462, "NAME": "Corte Madera", "NAMELSAD": "Corte Madera town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8184887, "AWATER": 3216812, "INTPTLAT": 37.9318458, "INTPTLON": -122.5077378, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.931200 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1448, "felt:has_geometry": true, "felt:h3_index": 644721768605180544, "STATEFP": 6, "PLACEFP": 75315, "PLACENS": 2410013, "GEOID": 675315, "NAME": "Strawberry", "NAMELSAD": "Strawberry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3445619, "AWATER": 1506465, "INTPTLAT": 37.8912497, "INTPTLON": -122.5091657, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.892196 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 507, "felt:has_geometry": true, "felt:h3_index": 644721768618662666, "STATEFP": 6, "PLACEFP": 1416, "PLACENS": 2582933, "GEOID": 601416, "NAME": "Alto", "NAMELSAD": "Alto CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 325686, "AWATER": 0, "INTPTLAT": 37.9055811, "INTPTLON": -122.5187182, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.905199 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1179, "felt:has_geometry": true, "felt:h3_index": 644721768851393033, "STATEFP": 6, "PLACEFP": 49950, "PLACENS": 2408888, "GEOID": 649950, "NAME": "Muir Beach", "NAMELSAD": "Muir Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1276408, "AWATER": 0, "INTPTLAT": 37.8615645, "INTPTLON": -122.5803215, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.579956, 37.861844 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 324, "felt:has_geometry": true, "felt:h3_index": 644721769203154334, "STATEFP": 6, "PLACEFP": 54232, "PLACENS": 2411334, "GEOID": 654232, "NAME": "Orinda", "NAMELSAD": "Orinda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33285592, "AWATER": 40530, "INTPTLAT": 37.8816103, "INTPTLON": -122.1685955, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.883525 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 483, "felt:has_geometry": true, "felt:h3_index": 644721769512851616, "STATEFP": 6, "PLACEFP": 135, "PLACENS": 2582926, "GEOID": 600135, "NAME": "Acalanes Ridge", "NAMELSAD": "Acalanes Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1193569, "AWATER": 0, "INTPTLAT": 37.904725, "INTPTLON": -122.0785674, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.905199 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 328, "felt:has_geometry": true, "felt:h3_index": 644721769555225709, "STATEFP": 6, "PLACEFP": 39122, "PLACENS": 2411591, "GEOID": 639122, "NAME": "Lafayette", "NAMELSAD": "Lafayette city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38912815, "AWATER": 431202, "INTPTLAT": 37.891004, "INTPTLON": -122.1195292, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.118530, 37.892196 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1382, "felt:has_geometry": true, "felt:h3_index": 644721769568651472, "STATEFP": 6, "PLACEFP": 70266, "PLACENS": 2583130, "GEOID": 670266, "NAME": "Saranap", "NAMELSAD": "Saranap CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2939536, "AWATER": 0, "INTPTLAT": 37.8878178, "INTPTLON": -122.0761419, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.074585, 37.887860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 197, "felt:has_geometry": true, "felt:h3_index": 644721769761420697, "STATEFP": 6, "PLACEFP": 56938, "PLACENS": 2411418, "GEOID": 656938, "NAME": "Piedmont", "NAMELSAD": "Piedmont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4402396, "AWATER": 0, "INTPTLAT": 37.8225447, "INTPTLON": -122.2300241, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.228394, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 244, "felt:has_geometry": true, "felt:h3_index": 644721770010518059, "STATEFP": 6, "PLACEFP": 49187, "PLACENS": 2413013, "GEOID": 649187, "NAME": "Moraga", "NAMELSAD": "Moraga town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24504014, "AWATER": 22901, "INTPTLAT": 37.8456927, "INTPTLON": -122.123217, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.124023, 37.844495 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 326, "felt:has_geometry": true, "felt:h3_index": 644721770273784531, "STATEFP": 6, "PLACEFP": 60620, "PLACENS": 2410939, "GEOID": 660620, "NAME": "Richmond", "NAMELSAD": "Richmond city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77809538, "AWATER": 58194574, "INTPTLAT": 37.9522779, "INTPTLON": -122.360609, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.360229, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 327, "felt:has_geometry": true, "felt:h3_index": 644721770308755549, "STATEFP": 6, "PLACEFP": 68294, "PLACENS": 2411801, "GEOID": 668294, "NAMELSAD": "San Pablo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6797163, "AWATER": 0, "INTPTLAT": 37.9628612, "INTPTLON": -122.3425814, "NAME": "San Pablo,Rollingwood", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1204, "felt:has_geometry": true, "felt:h3_index": 644721770333767003, "STATEFP": 6, "PLACEFP": 52162, "PLACENS": 2583096, "GEOID": 652162, "NAME": "North Richmond", "NAMELSAD": "North Richmond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3598945, "AWATER": 412907, "INTPTLAT": 37.965269, "INTPTLON": -122.3706492, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.965854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 814, "felt:has_geometry": true, "felt:h3_index": 644721770557545161, "STATEFP": 6, "PLACEFP": 22454, "PLACENS": 2408062, "GEOID": 622454, "NAME": "El Sobrante", "NAMELSAD": "El Sobrante CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8019027, "AWATER": 0, "INTPTLAT": 37.9736239, "INTPTLON": -122.303141, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.305298, 37.974515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 780, "felt:has_geometry": true, "felt:h3_index": 644721770635534699, "STATEFP": 6, "PLACEFP": 21061, "PLACENS": 2408035, "GEOID": 621061, "NAME": "East Richmond Heights", "NAMELSAD": "East Richmond Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1501846, "AWATER": 0, "INTPTLAT": 37.9450844, "INTPTLON": -122.3139102, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.316284, 37.944198 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 538, "felt:has_geometry": true, "felt:h3_index": 644721770680073371, "STATEFP": 6, "PLACEFP": 4470, "PLACENS": 2582940, "GEOID": 604470, "NAMELSAD": "Bayview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 789227, "AWATER": 209670, "INTPTLAT": 38.0062344, "INTPTLON": -122.3201647, "NAME": "Bayview,Montalvin Manor", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.321777, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 325, "felt:has_geometry": true, "felt:h3_index": 644721770777306177, "STATEFP": 6, "PLACEFP": 57288, "PLACENS": 2411428, "GEOID": 657288, "NAMELSAD": "Pinole city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13218372, "AWATER": 17242736, "INTPTLAT": 38.0017019, "INTPTLON": -122.318488, "NAME": "Pinole,Tara Hills", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.316284, 38.000491 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 242, "felt:has_geometry": true, "felt:h3_index": 644721771141321579, "STATEFP": 6, "PLACEFP": 21796, "PLACENS": 2410410, "GEOID": 621796, "NAME": "El Cerrito", "NAMELSAD": "El Cerrito city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9509903, "AWATER": 0, "INTPTLAT": 37.9195744, "INTPTLON": -122.302519, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.918201 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 345, "felt:has_geometry": true, "felt:h3_index": 644721771174244512, "STATEFP": 6, "PLACEFP": 674, "PLACENS": 2409674, "GEOID": 600674, "NAME": "Albany", "NAMELSAD": "Albany city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4636035, "AWATER": 9521771, "INTPTLAT": 37.8906499, "INTPTLON": -122.3181164, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.316284, 37.892196 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 980, "felt:has_geometry": true, "felt:h3_index": 644721771180547337, "STATEFP": 6, "PLACEFP": 38086, "PLACENS": 2408472, "GEOID": 638086, "NAME": "Kensington", "NAMELSAD": "Kensington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2495981, "AWATER": 23043, "INTPTLAT": 37.9051443, "INTPTLON": -122.2842262, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.283325, 37.905199 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 72, "felt:has_geometry": true, "felt:h3_index": 644721771480288549, "STATEFP": 6, "PLACEFP": 8310, "PLACENS": 2409912, "GEOID": 608310, "NAME": "Brisbane", "NAMELSAD": "Brisbane city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7731744, "AWATER": 43981510, "INTPTLAT": 37.6757495, "INTPTLON": -122.383302, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.675125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 182, "felt:has_geometry": true, "felt:h3_index": 644721771550869356, "STATEFP": 6, "PLACEFP": 73262, "PLACENS": 2411942, "GEOID": 673262, "NAME": "South San Francisco", "NAMELSAD": "South San Francisco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23838590, "AWATER": 54312354, "INTPTLAT": 37.6551037, "INTPTLON": -122.3762341, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.653383 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 179, "felt:has_geometry": true, "felt:h3_index": 644721771941101840, "STATEFP": 6, "PLACEFP": 9066, "PLACENS": 2409945, "GEOID": 609066, "NAME": "Burlingame", "NAMELSAD": "Burlingame city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11378235, "AWATER": 4261690, "INTPTLAT": 37.5899515, "INTPTLON": -122.3633425, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.588119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 77, "felt:has_geometry": true, "felt:h3_index": 644721771953219616, "STATEFP": 6, "PLACEFP": 33798, "PLACENS": 2412752, "GEOID": 633798, "NAME": "Hillsborough", "NAMELSAD": "Hillsborough town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15970658, "AWATER": 0, "INTPTLAT": 37.5572062, "INTPTLON": -122.3585413, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.360229, 37.557642 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 63, "felt:has_geometry": true, "felt:h3_index": 644721772034835745, "STATEFP": 6, "PLACEFP": 65028, "PLACENS": 2411778, "GEOID": 665028, "NAME": "San Bruno", "NAMELSAD": "San Bruno city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14215240, "AWATER": 0, "INTPTLAT": 37.6255598, "INTPTLON": -122.4313965, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.627284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 78, "felt:has_geometry": true, "felt:h3_index": 644721772088049701, "STATEFP": 6, "PLACEFP": 47486, "PLACENS": 2411110, "GEOID": 647486, "NAME": "Millbrae", "NAMELSAD": "Millbrae city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8465890, "AWATER": 61644, "INTPTLAT": 37.5989695, "INTPTLON": -122.4019908, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.596824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 594, "felt:has_geometry": true, "felt:h3_index": 644721772525304616, "STATEFP": 6, "PLACEFP": 8338, "PLACENS": 2407907, "GEOID": 608338, "NAME": "Broadmoor", "NAMELSAD": "Broadmoor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1118795, "AWATER": 0, "INTPTLAT": 37.6914953, "INTPTLON": -122.4813393, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.692514 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 180, "felt:has_geometry": true, "felt:h3_index": 644721773276848277, "STATEFP": 6, "PLACEFP": 17918, "PLACENS": 2410291, "GEOID": 617918, "NAMELSAD": "Daly City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19783516, "AWATER": 0, "INTPTLAT": 37.686193, "INTPTLON": -122.4686688, "NAME": "Daly City,Colma", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.688167 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 351, "felt:has_geometry": true, "felt:h3_index": 644721773560687748, "STATEFP": 6, "PLACEFP": 68084, "PLACENS": 2411794, "GEOID": 668084, "NAME": "San Leandro", "NAMELSAD": "San Leandro city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34507478, "AWATER": 5587445, "INTPTLAT": 37.7033683, "INTPTLON": -122.163036, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.162476, 37.701207 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 316, "felt:has_geometry": true, "felt:h3_index": 644721773630909779, "STATEFP": 6, "PLACEFP": 53000, "PLACENS": 2411292, "GEOID": 653000, "NAME": "Oakland", "NAMELSAD": "Oakland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 144944705, "AWATER": 57160794, "INTPTLAT": 37.7698464, "INTPTLON": -122.22569, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.228394, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 523, "felt:has_geometry": true, "felt:h3_index": 644721774305353045, "STATEFP": 6, "PLACEFP": 2980, "PLACENS": 2407773, "GEOID": 602980, "NAME": "Ashland", "NAMELSAD": "Ashland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4772238, "AWATER": 0, "INTPTLAT": 37.6941967, "INTPTLON": -122.1159367, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.118530, 37.692514 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1369, "felt:has_geometry": true, "felt:h3_index": 644721774386524566, "STATEFP": 6, "PLACEFP": 68112, "PLACENS": 2409260, "GEOID": 668112, "NAME": "San Lorenzo", "NAMELSAD": "San Lorenzo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7888218, "AWATER": 53278, "INTPTLAT": 37.6759003, "INTPTLON": -122.1359734, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.675125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 666, "felt:has_geometry": true, "felt:h3_index": 644721774402220761, "STATEFP": 6, "PLACEFP": 12902, "PLACENS": 2408020, "GEOID": 612902, "NAME": "Cherryland", "NAMELSAD": "Cherryland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3090815, "AWATER": 0, "INTPTLAT": 37.6792159, "INTPTLON": -122.1037766, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.102051, 37.679473 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1188, "felt:has_geometry": true, "felt:h3_index": 644721775715343254, "STATEFP": 6, "PLACEFP": 51280, "PLACENS": 2628764, "GEOID": 651280, "NAME": "Nicasio", "NAMELSAD": "Nicasio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3379839, "AWATER": 0, "INTPTLAT": 38.0606215, "INTPTLON": -122.7008217, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.700806, 38.061067 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1368, "felt:has_geometry": true, "felt:h3_index": 644721776524472555, "STATEFP": 6, "PLACEFP": 67070, "PLACENS": 2409255, "GEOID": 667070, "NAME": "San Geronimo", "NAMELSAD": "San Geronimo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3906938, "AWATER": 0, "INTPTLAT": 38.0067128, "INTPTLON": -122.6632659, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.662354, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1001, "felt:has_geometry": true, "felt:h3_index": 644721776541379446, "STATEFP": 6, "PLACEFP": 39283, "PLACENS": 2408528, "GEOID": 639283, "NAME": "Lagunitas-Forest Knolls", "NAMELSAD": "Lagunitas-Forest Knolls CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10998147, "AWATER": 0, "INTPTLAT": 38.0180262, "INTPTLON": -122.6913028, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.689819, 38.017804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 953, "felt:has_geometry": true, "felt:h3_index": 644721777604297910, "STATEFP": 6, "PLACEFP": 36616, "PLACENS": 2408428, "GEOID": 636616, "NAME": "Inverness", "NAMELSAD": "Inverness CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16575794, "AWATER": 1130139, "INTPTLAT": 38.0827964, "INTPTLON": -122.8549425, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.854614, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1288, "felt:has_geometry": true, "felt:h3_index": 644721777629225044, "STATEFP": 6, "PLACEFP": 57960, "PLACENS": 2409084, "GEOID": 657960, "NAME": "Point Reyes Station", "NAMELSAD": "Point Reyes Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9364185, "AWATER": 0, "INTPTLAT": 38.0846469, "INTPTLON": -122.8092262, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.810669, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 133, "felt:has_geometry": true, "felt:h3_index": 644721778397234201, "STATEFP": 6, "PLACEFP": 52582, "PLACENS": 2411283, "GEOID": 652582, "NAME": "Novato", "NAMELSAD": "Novato city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 71159604, "AWATER": 1320903, "INTPTLAT": 38.0850865, "INTPTLON": -122.5482145, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.546997, 38.087013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 568, "felt:has_geometry": true, "felt:h3_index": 644721778689154443, "STATEFP": 6, "PLACEFP": 6982, "PLACENS": 2407857, "GEOID": 606982, "NAME": "Black Point-Green Point", "NAMELSAD": "Black Point-Green Point CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7322458, "AWATER": 181453, "INTPTLAT": 38.1106512, "INTPTLON": -122.5190972, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 38.108628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1263, "felt:has_geometry": true, "felt:h3_index": 644721779093558966, "STATEFP": 6, "PLACEFP": 56786, "PLACENS": 2805236, "GEOID": 656786, "NAME": "Petaluma Center", "NAMELSAD": "Petaluma Center CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3038425, "AWATER": 0, "INTPTLAT": 38.2506525, "INTPTLON": -122.788841, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.788696, 38.251123 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 216, "felt:has_geometry": true, "felt:h3_index": 644721779234257729, "STATEFP": 6, "PLACEFP": 56784, "PLACENS": 2411407, "GEOID": 656784, "NAME": "Petaluma", "NAMELSAD": "Petaluma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37333943, "AWATER": 277684, "INTPTLAT": 38.2422507, "INTPTLON": -122.6287687, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 38.242495 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1258, "felt:has_geometry": true, "felt:h3_index": 644721779297944868, "STATEFP": 6, "PLACEFP": 56476, "PLACENS": 2583110, "GEOID": 656476, "NAME": "Penngrove", "NAMELSAD": "Penngrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10446983, "AWATER": 0, "INTPTLAT": 38.3006185, "INTPTLON": -122.670641, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.673340, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 576, "felt:has_geometry": true, "felt:h3_index": 644721779945822237, "STATEFP": 6, "PLACEFP": 7316, "PLACENS": 2407875, "GEOID": 607316, "NAME": "Bolinas", "NAMELSAD": "Bolinas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15090532, "AWATER": 0, "INTPTLAT": 37.9177251, "INTPTLON": -122.7095023, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.711792, 37.918201 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1442, "felt:has_geometry": true, "felt:h3_index": 644721780791206956, "STATEFP": 6, "PLACEFP": 74172, "PLACENS": 2410001, "GEOID": 674172, "NAME": "Stinson Beach", "NAMELSAD": "Stinson Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2311064, "AWATER": 0, "INTPTLAT": 37.902485, "INTPTLON": -122.6501156, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.651367, 37.900865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1380, "felt:has_geometry": true, "felt:h3_index": 644721782190917342, "STATEFP": 6, "PLACEFP": 70154, "PLACENS": 2409283, "GEOID": 670154, "NAME": "Santa Venetia", "NAMELSAD": "Santa Venetia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9489702, "AWATER": 74911, "INTPTLAT": 38.0055375, "INTPTLON": -122.5028107, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1084, "felt:has_geometry": true, "felt:h3_index": 644721782290946286, "STATEFP": 6, "PLACEFP": 44399, "PLACENS": 2408149, "GEOID": 644399, "NAME": "Lucas Valley-Marinwood", "NAMELSAD": "Lucas Valley-Marinwood CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14843405, "AWATER": 0, "INTPTLAT": 38.0405086, "INTPTLON": -122.5764817, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.574463, 38.039439 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 67, "felt:has_geometry": true, "felt:h3_index": 644721782642263842, "STATEFP": 6, "PLACEFP": 62980, "PLACENS": 2412578, "GEOID": 662980, "NAME": "Ross", "NAMELSAD": "Ross town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4036002, "AWATER": 0, "INTPTLAT": 37.9638206, "INTPTLON": -122.5616141, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.563477, 37.965854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 981, "felt:has_geometry": true, "felt:h3_index": 644721782688979360, "STATEFP": 6, "PLACEFP": 38114, "PLACENS": 2408473, "GEOID": 638114, "NAME": "Kentfield", "NAMELSAD": "Kentfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7839024, "AWATER": 49346, "INTPTLAT": 37.9358726, "INTPTLON": -122.5589993, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.557983, 37.935533 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 132, "felt:has_geometry": true, "felt:h3_index": 644721782729578699, "STATEFP": 6, "PLACEFP": 40438, "PLACENS": 2411627, "GEOID": 640438, "NAME": "Larkspur", "NAMELSAD": "Larkspur city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7767799, "AWATER": 566327, "INTPTLAT": 37.9405439, "INTPTLON": -122.5302295, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.939865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 131, "felt:has_geometry": true, "felt:h3_index": 644721782766523493, "STATEFP": 6, "PLACEFP": 23168, "PLACENS": 2412609, "GEOID": 623168, "NAME": "Fairfax", "NAMELSAD": "Fairfax town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5770768, "AWATER": 0, "INTPTLAT": 37.9885321, "INTPTLON": -122.5952079, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.596436, 37.987504 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1579, "felt:has_geometry": true, "felt:h3_index": 644721782782027036, "STATEFP": 6, "PLACEFP": 86216, "PLACENS": 2409620, "GEOID": 686216, "NAME": "Woodacre", "NAMELSAD": "Woodacre CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4653150, "AWATER": 0, "INTPTLAT": 38.0051738, "INTPTLON": -122.6383098, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.640381, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1411, "felt:has_geometry": true, "felt:h3_index": 644721782789637968, "STATEFP": 6, "PLACEFP": 72184, "PLACENS": 2628818, "GEOID": 672184, "NAME": "Sleepy Hollow", "NAMELSAD": "Sleepy Hollow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7680833, "AWATER": 0, "INTPTLAT": 38.0120393, "INTPTLON": -122.5876857, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.585449, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 68, "felt:has_geometry": true, "felt:h3_index": 644721782867970056, "STATEFP": 6, "PLACEFP": 64434, "PLACENS": 2413251, "GEOID": 664434, "NAME": "San Anselmo", "NAMELSAD": "San Anselmo town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6928816, "AWATER": 0, "INTPTLAT": 37.9821174, "INTPTLON": -122.5699207, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.568970, 37.983175 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 288, "felt:has_geometry": true, "felt:h3_index": 644721782905196560, "STATEFP": 6, "PLACEFP": 68364, "PLACENS": 2411804, "GEOID": 668364, "NAME": "San Rafael", "NAMELSAD": "San Rafael city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42960193, "AWATER": 15426850, "INTPTLAT": 37.9810032, "INTPTLON": -122.5069297, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 394, "felt:has_geometry": true, "felt:h3_index": 644721784669758060, "STATEFP": 6, "PLACEFP": 2252, "PLACENS": 2409715, "GEOID": 602252, "NAME": "Antioch", "NAMELSAD": "Antioch city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75552859, "AWATER": 1995937, "INTPTLAT": 37.978336, "INTPTLON": -121.7960638, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -121.794434, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 395, "felt:has_geometry": true, "felt:h3_index": 644721785309273326, "STATEFP": 6, "PLACEFP": 16000, "PLACENS": 2410214, "GEOID": 616000, "NAME": "Concord", "NAMELSAD": "Concord city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79148766, "AWATER": 0, "INTPTLAT": 37.972186, "INTPTLON": -122.0015986, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 683, "felt:has_geometry": true, "felt:h3_index": 644721785477020004, "STATEFP": 6, "PLACEFP": 14232, "PLACENS": 2407641, "GEOID": 614232, "NAME": "Clyde", "NAMELSAD": "Clyde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 364483, "AWATER": 0, "INTPTLAT": 38.0253897, "INTPTLON": -122.0280157, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.030640, 38.026459 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1237, "felt:has_geometry": true, "felt:h3_index": 644721785516008614, "STATEFP": 6, "PLACEFP": 54764, "PLACENS": 2409012, "GEOID": 654764, "NAME": "Pacheco", "NAMELSAD": "Pacheco CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1945578, "AWATER": 0, "INTPTLAT": 37.9878524, "INTPTLON": -122.0698276, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.069092, 37.987504 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1529, "felt:has_geometry": true, "felt:h3_index": 644721785529753626, "STATEFP": 6, "PLACEFP": 82842, "PLACENS": 2409517, "GEOID": 682842, "NAME": "Vine Hill", "NAMELSAD": "Vine Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3890261, "AWATER": 0, "INTPTLAT": 38.0071169, "INTPTLON": -122.0872968, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.085571, 38.009148 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 537, "felt:has_geometry": true, "felt:h3_index": 644721785814419763, "STATEFP": 6, "PLACEFP": 4415, "PLACENS": 2407808, "GEOID": 604415, "NAME": "Bay Point", "NAMELSAD": "Bay Point CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16643644, "AWATER": 2637541, "INTPTLAT": 38.032254, "INTPTLON": -121.9622357, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -121.964722, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1395, "felt:has_geometry": true, "felt:h3_index": 644721785849459616, "STATEFP": 6, "PLACEFP": 71362, "PLACENS": 2583136, "GEOID": 671362, "NAME": "Shell Ridge", "NAMELSAD": "Shell Ridge CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1114550, "AWATER": 0, "INTPTLAT": 37.9059194, "INTPTLON": -122.0343985, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.905199 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 697, "felt:has_geometry": true, "felt:h3_index": 644721785858178389, "STATEFP": 6, "PLACEFP": 16090, "PLACENS": 2409521, "GEOID": 616090, "NAME": "Contra Costa Centre", "NAMELSAD": "Contra Costa Centre CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1649047, "AWATER": 0, "INTPTLAT": 37.9259633, "INTPTLON": -122.0539766, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.052612, 37.926868 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1372, "felt:has_geometry": true, "felt:h3_index": 644721785916727409, "STATEFP": 6, "PLACEFP": 68263, "PLACENS": 2583126, "GEOID": 668263, "NAME": "San Miguel", "NAMELSAD": "San Miguel CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2720210, "AWATER": 0, "INTPTLAT": 37.8866992, "INTPTLON": -122.0368328, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.887860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 401, "felt:has_geometry": true, "felt:h3_index": 644721785930607182, "STATEFP": 6, "PLACEFP": 83346, "PLACENS": 2412174, "GEOID": 683346, "NAME": "Walnut Creek", "NAMELSAD": "Walnut Creek city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51179061, "AWATER": 31195, "INTPTLAT": 37.902666, "INTPTLON": -122.040479, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.041626, 37.900865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1201, "felt:has_geometry": true, "felt:h3_index": 644721785946805890, "STATEFP": 6, "PLACEFP": 51890, "PLACENS": 2583095, "GEOID": 651890, "NAME": "North Gate", "NAMELSAD": "North Gate CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1904534, "AWATER": 0, "INTPTLAT": 37.9055129, "INTPTLON": -121.9978789, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -121.997681, 37.905199 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 399, "felt:has_geometry": true, "felt:h3_index": 644721785988555057, "STATEFP": 6, "PLACEFP": 57764, "PLACENS": 2411439, "GEOID": 657764, "NAME": "Pleasant Hill", "NAMELSAD": "Pleasant Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18324535, "AWATER": 3158, "INTPTLAT": 37.9541635, "INTPTLON": -122.0757723, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.074585, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1322, "felt:has_geometry": true, "felt:h3_index": 644721786072503884, "STATEFP": 6, "PLACEFP": 60279, "PLACENS": 2583120, "GEOID": 660279, "NAME": "Reliez Valley", "NAMELSAD": "Reliez Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6112920, "AWATER": 0, "INTPTLAT": 37.9398879, "INTPTLON": -122.1026949, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.102051, 37.939865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 241, "felt:has_geometry": true, "felt:h3_index": 644721786155774469, "STATEFP": 6, "PLACEFP": 13882, "PLACENS": 2409474, "GEOID": 613882, "NAME": "Clayton", "NAMELSAD": "Clayton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9945279, "AWATER": 0, "INTPTLAT": 37.9403215, "INTPTLON": -121.9300745, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -121.931763, 37.939865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 456, "felt:has_geometry": true, "felt:h3_index": 644721786404046512, "STATEFP": 6, "PLACEFP": 53070, "PLACENS": 2411294, "GEOID": 653070, "NAME": "Oakley", "NAMELSAD": "Oakley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 41091677, "AWATER": 789638, "INTPTLAT": 37.9961485, "INTPTLON": -121.6936235, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -121.695557, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 557, "felt:has_geometry": true, "felt:h3_index": 644721786665457922, "STATEFP": 6, "PLACEFP": 6210, "PLACENS": 2407834, "GEOID": 606210, "NAME": "Bethel Island", "NAMELSAD": "Bethel Island CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13599384, "AWATER": 1468307, "INTPTLAT": 38.0281297, "INTPTLON": -121.6298509, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 38.026459 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 286, "felt:has_geometry": true, "felt:h3_index": 644721787001381217, "STATEFP": 6, "PLACEFP": 8142, "PLACENS": 2409902, "GEOID": 608142, "NAME": "Brentwood", "NAMELSAD": "Brentwood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38501266, "AWATER": 0, "INTPTLAT": 37.9355778, "INTPTLON": -121.7189698, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 37.935533 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 992, "felt:has_geometry": true, "felt:h3_index": 644721787210385566, "STATEFP": 6, "PLACEFP": 38772, "PLACENS": 2408496, "GEOID": 638772, "NAME": "Knightsen", "NAMELSAD": "Knightsen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21645449, "AWATER": 232033, "INTPTLAT": 37.9624258, "INTPTLON": -121.6485795, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -121.646118, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 398, "felt:has_geometry": true, "felt:h3_index": 644721788008285010, "STATEFP": 6, "PLACEFP": 57456, "PLACENS": 2411430, "GEOID": 657456, "NAME": "Pittsburg", "NAMELSAD": "Pittsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45780277, "AWATER": 5359381, "INTPTLAT": 38.0167706, "INTPTLON": -121.8969477, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -121.898804, 38.017804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 625, "felt:has_geometry": true, "felt:h3_index": 644721788670447854, "STATEFP": 6, "PLACEFP": 10301, "PLACENS": 2583160, "GEOID": 610301, "NAME": "Camino Tassajara", "NAMELSAD": "Camino Tassajara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3305050, "AWATER": 0, "INTPTLAT": 37.7908857, "INTPTLON": -121.8850524, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 347, "felt:has_geometry": true, "felt:h3_index": 644721789270931524, "STATEFP": 6, "PLACEFP": 20018, "PLACENS": 2410362, "GEOID": 620018, "NAME": "Dublin", "NAMELSAD": "Dublin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39442778, "AWATER": 0, "INTPTLAT": 37.7161372, "INTPTLON": -121.8962293, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -121.898804, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 164, "felt:has_geometry": true, "felt:h3_index": 644721789403418977, "STATEFP": 6, "PLACEFP": 41992, "PLACENS": 2410848, "GEOID": 641992, "NAME": "Livermore", "NAMELSAD": "Livermore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68816613, "AWATER": 9862, "INTPTLAT": 37.6869767, "INTPTLON": -121.7597808, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -121.761475, 37.688167 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 396, "felt:has_geometry": true, "felt:h3_index": 644721789707702597, "STATEFP": 6, "PLACEFP": 17988, "PLACENS": 2412403, "GEOID": 617988, "NAME": "Danville", "NAMELSAD": "Danville town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46821256, "AWATER": 0, "INTPTLAT": 37.8121416, "INTPTLON": -121.9698235, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 37.814124 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 648, "felt:has_geometry": true, "felt:h3_index": 644721789792742642, "STATEFP": 6, "PLACEFP": 11915, "PLACENS": 2582967, "GEOID": 611915, "NAME": "Castle Hill", "NAMELSAD": "Castle Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1513889, "AWATER": 0, "INTPTLAT": 37.8747175, "INTPTLON": -122.0585817, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.058105, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 743, "felt:has_geometry": true, "felt:h3_index": 644721789885605172, "STATEFP": 6, "PLACEFP": 19150, "PLACENS": 2408668, "GEOID": 619150, "NAME": "Diablo", "NAMELSAD": "Diablo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3531932, "AWATER": 0, "INTPTLAT": 37.8407738, "INTPTLON": -121.956477, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -121.953735, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 566, "felt:has_geometry": true, "felt:h3_index": 644721789940488612, "STATEFP": 6, "PLACEFP": 6928, "PLACENS": 2407859, "GEOID": 606928, "NAME": "Blackhawk", "NAMELSAD": "Blackhawk CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14958249, "AWATER": 31771, "INTPTLAT": 37.8096292, "INTPTLON": -121.9132414, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 37.809784 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 491, "felt:has_geometry": true, "felt:h3_index": 644721790097115892, "STATEFP": 6, "PLACEFP": 618, "PLACENS": 2407707, "GEOID": 600618, "NAME": "Alamo", "NAMELSAD": "Alamo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25422415, "AWATER": 0, "INTPTLAT": 37.8547678, "INTPTLON": -122.0135573, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.853170 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1195, "felt:has_geometry": true, "felt:h3_index": 644721790249643235, "STATEFP": 6, "PLACEFP": 51622, "PLACENS": 2583094, "GEOID": 651622, "NAME": "Norris Canyon", "NAMELSAD": "Norris Canyon CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9350215, "AWATER": 0, "INTPTLAT": 37.7457574, "INTPTLON": -121.9880908, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -121.986694, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 400, "felt:has_geometry": true, "felt:h3_index": 644721790516054444, "STATEFP": 6, "PLACEFP": 68378, "PLACENS": 2411805, "GEOID": 668378, "NAME": "San Ramon", "NAMELSAD": "San Ramon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51953230, "AWATER": 88389, "INTPTLAT": 37.7652582, "INTPTLON": -121.9319874, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -121.931763, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 609, "felt:has_geometry": true, "felt:h3_index": 644721791153484726, "STATEFP": 6, "PLACEFP": 9346, "PLACENS": 2407934, "GEOID": 609346, "NAME": "Byron", "NAMELSAD": "Byron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16889207, "AWATER": 0, "INTPTLAT": 37.8756441, "INTPTLON": -121.6421196, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.874853 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1387, "felt:has_geometry": true, "felt:h3_index": 644721805181993804, "STATEFP": 6, "PLACEFP": 70712, "PLACENS": 2583133, "GEOID": 670712, "NAME": "Sea Ranch", "NAMELSAD": "Sea Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41742090, "AWATER": 277559, "INTPTLAT": 38.7252743, "INTPTLON": -123.458314, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -123.458862, 38.724090 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1484, "felt:has_geometry": true, "felt:h3_index": 644721807929263001, "STATEFP": 6, "PLACEFP": 78715, "PLACENS": 2583163, "GEOID": 678715, "NAME": "Timber Cove", "NAMELSAD": "Timber Cove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14637533, "AWATER": 0, "INTPTLAT": 38.5410889, "INTPTLON": -123.258786, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -123.261108, 38.539573 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1105, "felt:has_geometry": true, "felt:h3_index": 644721812890509963, "STATEFP": 6, "PLACEFP": 45386, "PLACENS": 2628754, "GEOID": 645386, "NAME": "Manchester", "NAMELSAD": "Manchester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6780881, "AWATER": 0, "INTPTLAT": 38.9743844, "INTPTLON": -123.6909611, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -123.689575, 38.976492 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 64, "felt:has_geometry": true, "felt:h3_index": 644721816599915433, "STATEFP": 6, "PLACEFP": 57876, "PLACENS": 2411449, "GEOID": 657876, "NAME": "Point Arena", "NAMELSAD": "Point Arena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3537807, "AWATER": 0, "INTPTLAT": 38.912306, "INTPTLON": -123.6956087, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -123.695068, 38.912407 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 511, "felt:has_geometry": true, "felt:h3_index": 644721817248894376, "STATEFP": 6, "PLACEFP": 2028, "PLACENS": 2628706, "GEOID": 602028, "NAME": "Anchor Bay", "NAMELSAD": "Anchor Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9097805, "AWATER": 0, "INTPTLAT": 38.8126532, "INTPTLON": -123.5702668, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -123.568726, 38.814031 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 878, "felt:has_geometry": true, "felt:h3_index": 644721819421902640, "STATEFP": 6, "PLACEFP": 29420, "PLACENS": 2583024, "GEOID": 629420, "NAME": "Geyserville", "NAMELSAD": "Geyserville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11690104, "AWATER": 0, "INTPTLAT": 38.7173139, "INTPTLON": -122.9034234, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 38.715519 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 2, "felt:has_geometry": true, "felt:h3_index": 644721820507878737, "STATEFP": 6, "PLACEFP": 14190, "PLACENS": 2409487, "GEOID": 614190, "NAME": "Cloverdale", "NAMELSAD": "Cloverdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8120471, "AWATER": 0, "INTPTLAT": 38.7961178, "INTPTLON": -123.0150504, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -123.013916, 38.796908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 685, "felt:has_geometry": true, "felt:h3_index": 644721820850935306, "STATEFP": 6, "PLACEFP": 14302, "PLACENS": 2407643, "GEOID": 614302, "NAME": "Cobb", "NAMELSAD": "Cobb CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12897761, "AWATER": 22376, "INTPTLAT": 38.8353286, "INTPTLON": -122.7224347, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.722778, 38.835429 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 333, "felt:has_geometry": true, "felt:h3_index": 644721823180247955, "STATEFP": 6, "PLACEFP": 33056, "PLACENS": 2410726, "GEOID": 633056, "NAME": "Healdsburg", "NAMELSAD": "Healdsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11448706, "AWATER": 0, "INTPTLAT": 38.6225262, "INTPTLON": -122.8651327, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.865601, 38.621162 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 582, "felt:has_geometry": true, "felt:h3_index": 644721827939161384, "STATEFP": 6, "PLACEFP": 7512, "PLACENS": 2628712, "GEOID": 607512, "NAME": "Boonville", "NAMELSAD": "Boonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14355353, "AWATER": 0, "INTPTLAT": 39.0114745, "INTPTLON": -123.3740428, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -123.376465, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1267, "felt:has_geometry": true, "felt:h3_index": 644721829088003747, "STATEFP": 6, "PLACEFP": 56868, "PLACENS": 2628777, "GEOID": 656868, "NAME": "Philo", "NAMELSAD": "Philo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5353556, "AWATER": 0, "INTPTLAT": 39.065757, "INTPTLON": -123.4450628, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -123.442383, 39.066114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1465, "felt:has_geometry": true, "felt:h3_index": 644721830036626646, "STATEFP": 6, "PLACEFP": 77784, "PLACENS": 2410053, "GEOID": 677784, "NAME": "Talmage", "NAMELSAD": "Talmage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4117638, "AWATER": 4089, "INTPTLAT": 39.131198, "INTPTLON": -123.1638376, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -123.162231, 39.130060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 616, "felt:has_geometry": true, "felt:h3_index": 644721830710044534, "STATEFP": 6, "PLACEFP": 9990, "PLACENS": 2628714, "GEOID": 609990, "NAME": "Calpella", "NAMELSAD": "Calpella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6598677, "AWATER": 64954, "INTPTLAT": 39.2337206, "INTPTLON": -123.1937598, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -123.195190, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 478, "felt:has_geometry": true, "felt:h3_index": 644721831311520371, "STATEFP": 6, "PLACEFP": 81134, "PLACENS": 2412125, "GEOID": 681134, "NAME": "Ukiah", "NAMELSAD": "Ukiah city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12346151, "AWATER": 116762, "INTPTLAT": 39.146614, "INTPTLON": -123.2103259, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -123.211670, 39.147103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 938, "felt:has_geometry": true, "felt:h3_index": 644721833631241384, "STATEFP": 6, "PLACEFP": 34652, "PLACENS": 2628739, "GEOID": 634652, "NAME": "Hopland", "NAMELSAD": "Hopland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9128964, "AWATER": 124597, "INTPTLAT": 38.9688302, "INTPTLON": -123.1168992, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -123.118286, 38.967951 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1390, "felt:has_geometry": true, "felt:h3_index": 644721853001019636, "STATEFP": 6, "PLACEFP": 71000, "PLACENS": 2583134, "GEOID": 671000, "NAMELSAD": "Sereno del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1909750, "AWATER": 0, "INTPTLAT": 38.3836712, "INTPTLON": -123.0731482, "NAME": "Sereno del Mar,Carmet", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -123.074341, 38.384728 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1359, "felt:has_geometry": true, "felt:h3_index": 644721853062231219, "STATEFP": 6, "PLACEFP": 64252, "PLACENS": 2583125, "GEOID": 664252, "NAME": "Salmon Creek", "NAMELSAD": "Salmon Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2885757, "AWATER": 0, "INTPTLAT": 38.3462121, "INTPTLON": -123.059329, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -123.057861, 38.345964 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 574, "felt:has_geometry": true, "felt:h3_index": 644721853777715462, "STATEFP": 6, "PLACEFP": 7260, "PLACENS": 2407872, "GEOID": 607260, "NAME": "Bodega Bay", "NAMELSAD": "Bodega Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21676778, "AWATER": 10759202, "INTPTLAT": 38.3272149, "INTPTLON": -123.0292296, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -123.030396, 38.328730 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1596, "felt:has_geometry": true, "felt:h3_index": 644721855211045576, "STATEFP": 6, "PLACEFP": 30812, "PLACENS": 2408322, "GEOID": 630812, "NAME": "Graton", "NAMELSAD": "Graton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4090304, "AWATER": 0, "INTPTLAT": 38.4375168, "INTPTLON": -122.8659876, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.865601, 38.436380 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 849, "felt:has_geometry": true, "felt:h3_index": 644721855577540746, "STATEFP": 6, "PLACEFP": 24960, "PLACENS": 2408230, "GEOID": 624960, "NAME": "Forestville", "NAMELSAD": "Forestville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13615411, "AWATER": 0, "INTPTLAT": 38.4824914, "INTPTLON": -122.8898837, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.887573, 38.483695 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1218, "felt:has_geometry": true, "felt:h3_index": 644721855636553932, "STATEFP": 6, "PLACEFP": 53266, "PLACENS": 2408971, "GEOID": 653266, "NAME": "Occidental", "NAMELSAD": "Occidental CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12864926, "AWATER": 0, "INTPTLAT": 38.4003723, "INTPTLON": -122.9349457, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.937012, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 28, "felt:has_geometry": true, "felt:h3_index": 644721856003360475, "STATEFP": 6, "PLACEFP": 70770, "PLACENS": 2411857, "GEOID": 670770, "NAME": "Sebastopol", "NAMELSAD": "Sebastopol city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4874900, "AWATER": 0, "INTPTLAT": 38.400003, "INTPTLON": -122.8275864, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.827148, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 653, "felt:has_geometry": true, "felt:h3_index": 644721856191440666, "STATEFP": 6, "PLACEFP": 12146, "PLACENS": 2582969, "GEOID": 612146, "NAME": "Cazadero", "NAMELSAD": "Cazadero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18431243, "AWATER": 3546, "INTPTLAT": 38.5278309, "INTPTLON": -123.1097995, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -123.107300, 38.526682 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1597, "felt:has_geometry": true, "felt:h3_index": 644721856552297374, "STATEFP": 6, "PLACEFP": 31470, "PLACENS": 2408341, "GEOID": 631470, "NAME": "Guerneville", "NAMELSAD": "Guerneville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25147194, "AWATER": 440242, "INTPTLAT": 38.5171652, "INTPTLON": -122.989897, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.991943, 38.518086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 962, "felt:has_geometry": true, "felt:h3_index": 644721856733564974, "STATEFP": 6, "PLACEFP": 37274, "PLACENS": 2583041, "GEOID": 637274, "NAME": "Jenner", "NAMELSAD": "Jenner CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5463963, "AWATER": 745264, "INTPTLAT": 38.459034, "INTPTLON": -123.1274672, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -123.129272, 38.457890 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1159, "felt:has_geometry": true, "felt:h3_index": 644721856976331166, "STATEFP": 6, "PLACEFP": 48928, "PLACENS": 2408860, "GEOID": 648928, "NAME": "Monte Rio", "NAMELSAD": "Monte Rio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4934760, "AWATER": 208218, "INTPTLAT": 38.4736108, "INTPTLON": -123.0261783, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -123.024902, 38.475094 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 747, "felt:has_geometry": true, "felt:h3_index": 644721857553584128, "STATEFP": 6, "PLACEFP": 19262, "PLACENS": 2408671, "GEOID": 619262, "NAME": "Dillon Beach", "NAMELSAD": "Dillon Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7727875, "AWATER": 0, "INTPTLAT": 38.2434883, "INTPTLON": -122.955955, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.953491, 38.242495 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 573, "felt:has_geometry": true, "felt:h3_index": 644721859550923989, "STATEFP": 6, "PLACEFP": 7246, "PLACENS": 2582947, "GEOID": 607246, "NAME": "Bodega", "NAMELSAD": "Bodega CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7515783, "AWATER": 0, "INTPTLAT": 38.3488408, "INTPTLON": -122.9711641, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.969971, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1516, "felt:has_geometry": true, "felt:h3_index": 644721859628715141, "STATEFP": 6, "PLACEFP": 81778, "PLACENS": 2583173, "GEOID": 681778, "NAME": "Valley Ford", "NAMELSAD": "Valley Ford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6842484, "AWATER": 0, "INTPTLAT": 38.3245599, "INTPTLON": -122.914733, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.915039, 38.324420 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 570, "felt:has_geometry": true, "felt:h3_index": 644721859681798678, "STATEFP": 6, "PLACEFP": 7036, "PLACENS": 2582946, "GEOID": 607036, "NAME": "Bloomfield", "NAMELSAD": "Bloomfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21076160, "AWATER": 17431, "INTPTLAT": 38.3220688, "INTPTLON": -122.834464, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.832642, 38.320111 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1487, "felt:has_geometry": true, "felt:h3_index": 644721859974432546, "STATEFP": 6, "PLACEFP": 78890, "PLACENS": 2409330, "GEOID": 678890, "NAME": "Tomales", "NAMELSAD": "Tomales CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 859286, "AWATER": 0, "INTPTLAT": 38.2470303, "INTPTLON": -122.9053554, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 526, "felt:has_geometry": true, "felt:h3_index": 644721870536811062, "STATEFP": 6, "PLACEFP": 3205, "PLACENS": 2582982, "GEOID": 603205, "NAME": "Auburn Lake Trails", "NAMELSAD": "Auburn Lake Trails CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32963739, "AWATER": 56719, "INTPTLAT": 38.8862376, "INTPTLON": -120.9796991, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 38.886757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 194, "felt:has_geometry": true, "felt:h3_index": 644721871577874962, "STATEFP": 6, "PLACEFP": 3204, "PLACENS": 2409754, "GEOID": 603204, "NAME": "Auburn", "NAMELSAD": "Auburn city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18588528, "AWATER": 71271, "INTPTLAT": 38.8950746, "INTPTLON": -121.0767393, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -121.074829, 38.895308 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 61, "felt:has_geometry": true, "felt:h3_index": 644721871899756892, "STATEFP": 6, "PLACEFP": 41474, "PLACENS": 2410835, "GEOID": 641474, "NAME": "Lincoln", "NAMELSAD": "Lincoln city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62599874, "AWATER": 110309, "INTPTLAT": 38.8744639, "INTPTLON": -121.2928862, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -121.294556, 38.873929 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1260, "felt:has_geometry": true, "felt:h3_index": 644721872035284622, "STATEFP": 6, "PLACEFP": 56546, "PLACENS": 2628774, "GEOID": 656546, "NAME": "Penryn", "NAMELSAD": "Penryn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4928719, "AWATER": 0, "INTPTLAT": 38.8482176, "INTPTLON": -121.1698087, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 38.848264 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1184, "felt:has_geometry": true, "felt:h3_index": 644721872071887248, "STATEFP": 6, "PLACEFP": 51000, "PLACENS": 2583089, "GEOID": 651000, "NAME": "Newcastle", "NAMELSAD": "Newcastle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6194986, "AWATER": 11387, "INTPTLAT": 38.8667313, "INTPTLON": -121.1319837, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -121.129761, 38.865375 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 876, "felt:has_geometry": true, "felt:h3_index": 644721872278668419, "STATEFP": 6, "PLACEFP": 29350, "PLACENS": 2408289, "GEOID": 629350, "NAME": "Georgetown", "NAMELSAD": "Georgetown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39182259, "AWATER": 10741, "INTPTLAT": 38.9113533, "INTPTLON": -120.834624, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -120.833130, 38.912407 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1018, "felt:has_geometry": true, "felt:h3_index": 644721873548962928, "STATEFP": 6, "PLACEFP": 39690, "PLACENS": 2408547, "GEOID": 639690, "NAME": "Lake of the Pines", "NAMELSAD": "Lake of the Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6544587, "AWATER": 908432, "INTPTLAT": 39.0387456, "INTPTLON": -121.061341, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -121.063843, 39.040520 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1121, "felt:has_geometry": true, "felt:h3_index": 644721873599498001, "STATEFP": 6, "PLACEFP": 46632, "PLACENS": 2408810, "GEOID": 646632, "NAME": "Meadow Vista", "NAMELSAD": "Meadow Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13678314, "AWATER": 402245, "INTPTLAT": 39.0017176, "INTPTLON": -121.0375816, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -121.036377, 39.002110 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1196, "felt:has_geometry": true, "felt:h3_index": 644721873915394837, "STATEFP": 6, "PLACEFP": 51637, "PLACENS": 2408934, "GEOID": 651637, "NAME": "North Auburn", "NAMELSAD": "North Auburn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20171681, "AWATER": 7171, "INTPTLAT": 38.930693, "INTPTLON": -121.0810812, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 38.929502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 623, "felt:has_geometry": true, "felt:h3_index": 644721874429391405, "STATEFP": 6, "PLACEFP": 10256, "PLACENS": 2407944, "GEOID": 610256, "NAME": "Cameron Park", "NAMELSAD": "Cameron Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29078546, "AWATER": 186312, "INTPTLAT": 38.6740287, "INTPTLON": -120.9883375, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -120.986938, 38.672645 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1398, "felt:has_geometry": true, "felt:h3_index": 644721874763290228, "STATEFP": 6, "PLACEFP": 71554, "PLACENS": 2408727, "GEOID": 671554, "NAME": "Shingle Springs", "NAMELSAD": "Shingle Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21235230, "AWATER": 99633, "INTPTLAT": 38.6658555, "INTPTLON": -120.9362083, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -120.937500, 38.664067 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 794, "felt:has_geometry": true, "felt:h3_index": 644721875136367770, "STATEFP": 6, "PLACEFP": 21880, "PLACENS": 2408055, "GEOID": 621880, "NAME": "El Dorado Hills", "NAMELSAD": "El Dorado Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 125511003, "AWATER": 6228621, "INTPTLAT": 38.6760816, "INTPTLON": -121.0476996, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 38.676933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 889, "felt:has_geometry": true, "felt:h3_index": 644721875553377348, "STATEFP": 6, "PLACEFP": 30693, "PLACENS": 2408318, "GEOID": 630693, "NAME": "Granite Bay", "NAMELSAD": "Granite Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55810220, "AWATER": 111696, "INTPTLAT": 38.7604413, "INTPTLON": -121.1681961, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -121.168213, 38.758367 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 62, "felt:has_geometry": true, "felt:h3_index": 644721875920137428, "STATEFP": 6, "PLACEFP": 43140, "PLACENS": 2412914, "GEOID": 643140, "NAME": "Loomis", "NAMELSAD": "Loomis town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18820030, "AWATER": 0, "INTPTLAT": 38.809368, "INTPTLON": -121.1954675, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -121.195679, 38.809751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1232, "felt:has_geometry": true, "felt:h3_index": 644721876056590418, "STATEFP": 6, "PLACEFP": 54092, "PLACENS": 2408995, "GEOID": 654092, "NAME": "Orangevale", "NAMELSAD": "Orangevale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29657948, "AWATER": 397602, "INTPTLAT": 38.6893591, "INTPTLON": -121.223077, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -121.223145, 38.689798 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 441, "felt:has_geometry": true, "felt:h3_index": 644721876263162129, "STATEFP": 6, "PLACEFP": 13588, "PLACENS": 2409464, "GEOID": 613588, "NAME": "Citrus Heights", "NAMELSAD": "Citrus Heights city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36820409, "AWATER": 0, "INTPTLAT": 38.6948103, "INTPTLON": -121.2879525, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 38.694085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 386, "felt:has_geometry": true, "felt:h3_index": 644721876382532801, "STATEFP": 6, "PLACEFP": 24638, "PLACENS": 2410516, "GEOID": 624638, "NAME": "Folsom", "NAMELSAD": "Folsom city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 72210787, "AWATER": 5879392, "INTPTLAT": 38.6665966, "INTPTLON": -121.1416355, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -121.140747, 38.668356 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 693, "felt:has_geometry": true, "felt:h3_index": 644721876709673065, "STATEFP": 6, "PLACEFP": 14764, "PLACENS": 2582981, "GEOID": 614764, "NAME": "Coloma", "NAMELSAD": "Coloma CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8689800, "AWATER": 0, "INTPTLAT": 38.802616, "INTPTLON": -120.8946346, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -120.893555, 38.801189 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 745, "felt:has_geometry": true, "felt:h3_index": 644721877220861584, "STATEFP": 6, "PLACEFP": 19220, "PLACENS": 2408669, "GEOID": 619220, "NAME": "Diamond Springs", "NAMELSAD": "Diamond Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43097229, "AWATER": 187916, "INTPTLAT": 38.6920143, "INTPTLON": -120.8386844, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 38.694085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 688, "felt:has_geometry": true, "felt:h3_index": 644721877290423584, "STATEFP": 6, "PLACEFP": 14450, "PLACENS": 2628720, "GEOID": 614450, "NAME": "Cold Springs", "NAMELSAD": "Cold Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2526035, "AWATER": 0, "INTPTLAT": 38.7464398, "INTPTLON": -120.8738066, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -120.871582, 38.745515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 215, "felt:has_geometry": true, "felt:h3_index": 644721877398697560, "STATEFP": 6, "PLACEFP": 57540, "PLACENS": 2411433, "GEOID": 657540, "NAME": "Placerville", "NAMELSAD": "Placerville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15126090, "AWATER": 2192, "INTPTLAT": 38.7311162, "INTPTLON": -120.7976774, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -120.800171, 38.732661 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 797, "felt:has_geometry": true, "felt:h3_index": 644721878823036244, "STATEFP": 6, "PLACEFP": 4576, "PLACENS": 2407813, "GEOID": 604576, "NAME": "Beale AFB", "NAMELSAD": "Beale AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26139571, "AWATER": 25614, "INTPTLAT": 39.1080613, "INTPTLON": -121.3512148, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -121.349487, 39.108751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 166, "felt:has_geometry": true, "felt:h3_index": 644721879329194324, "STATEFP": 6, "PLACEFP": 85012, "PLACENS": 2412249, "GEOID": 685012, "NAME": "Wheatland", "NAMELSAD": "Wheatland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21035376, "AWATER": 17378, "INTPTLAT": 39.0311632, "INTPTLON": -121.3899957, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -121.387939, 39.031986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1054, "felt:has_geometry": true, "felt:h3_index": 644721880377435185, "STATEFP": 6, "PLACEFP": 41572, "PLACENS": 2408613, "GEOID": 641572, "NAME": "Linda", "NAMELSAD": "Linda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22236546, "AWATER": 0, "INTPTLAT": 39.1241415, "INTPTLON": -121.5421728, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 39.125799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 56, "felt:has_geometry": true, "felt:h3_index": 644721880383468948, "STATEFP": 6, "PLACEFP": 46170, "PLACENS": 2411046, "GEOID": 646170, "NAME": "Marysville", "NAMELSAD": "Marysville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8971193, "AWATER": 312457, "INTPTLAT": 39.1515353, "INTPTLON": -121.5833738, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -121.585693, 39.151363 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 385, "felt:has_geometry": true, "felt:h3_index": 644721880543344883, "STATEFP": 6, "PLACEFP": 86972, "PLACENS": 2412325, "GEOID": 686972, "NAME": "Yuba City", "NAMELSAD": "Yuba City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39703338, "AWATER": 201005, "INTPTLAT": 39.1338507, "INTPTLON": -121.6390282, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 39.134321 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1259, "felt:has_geometry": true, "felt:h3_index": 644721880879674762, "STATEFP": 6, "PLACEFP": 56518, "PLACENS": 2409052, "GEOID": 656518, "NAME": "Penn Valley", "NAMELSAD": "Penn Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494646, "AWATER": 0, "INTPTLAT": 39.1952969, "INTPTLON": -121.1941531, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -121.195679, 39.193948 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1027, "felt:has_geometry": true, "felt:h3_index": 644721880924281937, "STATEFP": 6, "PLACEFP": 39885, "PLACENS": 2408555, "GEOID": 639885, "NAME": "Lake Wildwood", "NAMELSAD": "Lake Wildwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7920376, "AWATER": 1172452, "INTPTLAT": 39.2332397, "INTPTLON": -121.1977302, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -121.195679, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1348, "felt:has_geometry": true, "felt:h3_index": 644721881197976219, "STATEFP": 6, "PLACEFP": 63106, "PLACENS": 2628785, "GEOID": 663106, "NAME": "Rough and Ready", "NAMELSAD": "Rough and Ready CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8217852, "AWATER": 0, "INTPTLAT": 39.2340228, "INTPTLON": -121.1380222, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -121.140747, 39.232253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1412, "felt:has_geometry": true, "felt:h3_index": 644721881599191398, "STATEFP": 6, "PLACEFP": 72282, "PLACENS": 2628789, "GEOID": 672282, "NAME": "Smartsville", "NAMELSAD": "Smartsville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1856958, "AWATER": 0, "INTPTLAT": 39.2052729, "INTPTLON": -121.2929161, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -121.294556, 39.206719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1070, "felt:has_geometry": true, "felt:h3_index": 644721882114091755, "STATEFP": 6, "PLACEFP": 42412, "PLACENS": 2408121, "GEOID": 642412, "NAME": "Loma Rica", "NAMELSAD": "Loma Rica CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47881271, "AWATER": 0, "INTPTLAT": 39.3203182, "INTPTLON": -121.4038312, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -121.404419, 39.321550 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1397, "felt:has_geometry": true, "felt:h3_index": 644721883050285421, "STATEFP": 6, "PLACEFP": 71414, "PLACENS": 2583137, "GEOID": 671414, "NAME": "Sheridan", "NAMELSAD": "Sheridan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 66129143, "AWATER": 15380, "INTPTLAT": 38.9731114, "INTPTLON": -121.350946, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -121.349487, 38.972222 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1228, "felt:has_geometry": true, "felt:h3_index": 644721884516457251, "STATEFP": 6, "PLACEFP": 53714, "PLACENS": 2408986, "GEOID": 653714, "NAME": "Olivehurst", "NAMELSAD": "Olivehurst CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21791564, "AWATER": 0, "INTPTLAT": 39.0794611, "INTPTLON": -121.5566594, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -121.558228, 39.078908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1287, "felt:has_geometry": true, "felt:h3_index": 644721884689601126, "STATEFP": 6, "PLACEFP": 57829, "PLACENS": 2583117, "GEOID": 657829, "NAME": "Plumas Lake", "NAMELSAD": "Plumas Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30658926, "AWATER": 891526, "INTPTLAT": 38.9791308, "INTPTLON": -121.5580559, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -121.558228, 38.980763 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1330, "felt:has_geometry": true, "felt:h3_index": 644721884738982212, "STATEFP": 6, "PLACEFP": 60970, "PLACENS": 2583121, "GEOID": 660970, "NAME": "Rio Oso", "NAMELSAD": "Rio Oso CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16834414, "AWATER": 0, "INTPTLAT": 38.9518229, "INTPTLON": -121.5309739, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -121.530762, 38.950865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1289, "felt:has_geometry": true, "felt:h3_index": 644721892361966609, "STATEFP": 6, "PLACEFP": 58030, "PLACENS": 2409086, "GEOID": 658030, "NAME": "Pollock Pines", "NAMELSAD": "Pollock Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22335059, "AWATER": 83617, "INTPTLAT": 38.7576414, "INTPTLON": -120.5909566, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -120.591431, 38.758367 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 763, "felt:has_geometry": true, "felt:h3_index": 644721896008771724, "STATEFP": 6, "PLACEFP": 20298, "PLACENS": 2628726, "GEOID": 620298, "NAME": "Dutch Flat", "NAMELSAD": "Dutch Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1534848, "AWATER": 0, "INTPTLAT": 39.2080078, "INTPTLON": -120.834476, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -120.833130, 39.206719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 503, "felt:has_geometry": true, "felt:h3_index": 644721896762133132, "STATEFP": 6, "PLACEFP": 1276, "PLACENS": 2628704, "GEOID": 601276, "NAME": "Alta", "NAMELSAD": "Alta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6173301, "AWATER": 17423, "INTPTLAT": 39.2156848, "INTPTLON": -120.7985091, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -120.800171, 39.215231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 205, "felt:has_geometry": true, "felt:h3_index": 644721897048647020, "STATEFP": 6, "PLACEFP": 50874, "PLACENS": 2411225, "GEOID": 650874, "NAME": "Nevada City", "NAMELSAD": "Nevada City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5661517, "AWATER": 9642, "INTPTLAT": 39.2596075, "INTPTLON": -121.0333263, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -121.030884, 39.257778 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 433, "felt:has_geometry": true, "felt:h3_index": 644721897520043152, "STATEFP": 6, "PLACEFP": 30798, "PLACENS": 2410651, "GEOID": 630798, "NAME": "Grass Valley", "NAMELSAD": "Grass Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13765037, "AWATER": 0, "INTPTLAT": 39.2237374, "INTPTLON": -121.052455, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -121.052856, 39.223743 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 495, "felt:has_geometry": true, "felt:h3_index": 644721899576338716, "STATEFP": 6, "PLACEFP": 982, "PLACENS": 2582931, "GEOID": 600982, "NAME": "Alleghany", "NAMELSAD": "Alleghany CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 904298, "AWATER": 0, "INTPTLAT": 39.4666605, "INTPTLON": -120.8411258, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 39.465885 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1541, "felt:has_geometry": true, "felt:h3_index": 644721899962385070, "STATEFP": 6, "PLACEFP": 83570, "PLACENS": 2628797, "GEOID": 683570, "NAME": "Washington", "NAMELSAD": "Washington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4922969, "AWATER": 0, "INTPTLAT": 39.3591578, "INTPTLON": -120.7904968, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -120.789185, 39.359785 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 846, "felt:has_geometry": true, "felt:h3_index": 644721900836195411, "STATEFP": 6, "PLACEFP": 24834, "PLACENS": 2408229, "GEOID": 624834, "NAME": "Foresthill", "NAMELSAD": "Foresthill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28969105, "AWATER": 0, "INTPTLAT": 39.0052862, "INTPTLON": -120.8313547, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -120.833130, 39.006379 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 506, "felt:has_geometry": true, "felt:h3_index": 644721901352885549, "STATEFP": 6, "PLACEFP": 1360, "PLACENS": 2407731, "GEOID": 601360, "NAME": "Alta Sierra", "NAMELSAD": "Alta Sierra CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21551268, "AWATER": 53117, "INTPTLAT": 39.1261741, "INTPTLON": -121.0490846, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -121.047363, 39.125799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 312, "felt:has_geometry": true, "felt:h3_index": 644721902177031257, "STATEFP": 6, "PLACEFP": 14498, "PLACENS": 2410190, "GEOID": 614498, "NAME": "Colfax", "NAMELSAD": "Colfax city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3641506, "AWATER": 0, "INTPTLAT": 39.0937989, "INTPTLON": -120.9532218, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -120.953979, 39.091700 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1575, "felt:has_geometry": true, "felt:h3_index": 644721905207916763, "STATEFP": 6, "PLACEFP": 85880, "PLACENS": 2409604, "GEOID": 685880, "NAME": "Wilton", "NAMELSAD": "Wilton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75115869, "AWATER": 0, "INTPTLAT": 38.4129769, "INTPTLON": -121.2127181, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -121.212158, 38.414862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1530, "felt:has_geometry": true, "felt:h3_index": 644721905672497181, "STATEFP": 6, "PLACEFP": 82852, "PLACENS": 2409518, "GEOID": 682852, "NAME": "Vineyard", "NAMELSAD": "Vineyard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48558204, "AWATER": 0, "INTPTLAT": 38.4740353, "INTPTLON": -121.3239951, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 38.475094 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1346, "felt:has_geometry": true, "felt:h3_index": 644721905735646515, "STATEFP": 6, "PLACEFP": 62910, "PLACENS": 2409213, "GEOID": 662910, "NAME": "Rosemont", "NAMELSAD": "Rosemont CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11361196, "AWATER": 0, "INTPTLAT": 38.5477287, "INTPTLON": -121.3553712, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 442, "felt:has_geometry": true, "felt:h3_index": 644721906196764361, "STATEFP": 6, "PLACEFP": 22020, "PLACENS": 2410425, "GEOID": 622020, "NAME": "Elk Grove", "NAMELSAD": "Elk Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 110336008, "AWATER": 533192, "INTPTLAT": 38.4146207, "INTPTLON": -121.3849614, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -121.382446, 38.414862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 839, "felt:has_geometry": true, "felt:h3_index": 644721906278224418, "STATEFP": 6, "PLACEFP": 24498, "PLACENS": 2408219, "GEOID": 624498, "NAME": "Florin", "NAMELSAD": "Florin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22500504, "AWATER": 0, "INTPTLAT": 38.4831505, "INTPTLON": -121.4043263, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -121.404419, 38.483695 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1313, "felt:has_geometry": true, "felt:h3_index": 644721907311596229, "STATEFP": 6, "PLACEFP": 59506, "PLACENS": 2409136, "GEOID": 659506, "NAME": "Rancho Murieta", "NAMELSAD": "Rancho Murieta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30776825, "AWATER": 467881, "INTPTLAT": 38.5007005, "INTPTLON": -121.0740205, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -121.074829, 38.500893 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 882, "felt:has_geometry": true, "felt:h3_index": 644721907862682536, "STATEFP": 6, "PLACEFP": 30345, "PLACENS": 2408305, "GEOID": 630345, "NAME": "Gold River", "NAMELSAD": "Gold River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6884489, "AWATER": 213093, "INTPTLAT": 38.6268536, "INTPTLON": -121.2491637, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -121.250610, 38.625454 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 388, "felt:has_geometry": true, "felt:h3_index": 644721908446346637, "STATEFP": 6, "PLACEFP": 59444, "PLACENS": 2411513, "GEOID": 659444, "NAME": "Rancho Cordova", "NAMELSAD": "Rancho Cordova city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 89533865, "AWATER": 795317, "INTPTLAT": 38.5770789, "INTPTLON": -121.2361872, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -121.234131, 38.578232 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1115, "felt:has_geometry": true, "felt:h3_index": 644721908476057731, "STATEFP": 6, "PLACEFP": 46226, "PLACENS": 2583073, "GEOID": 646226, "NAME": "Mather", "NAMELSAD": "Mather CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25964878, "AWATER": 64570, "INTPTLAT": 38.5483621, "INTPTLON": -121.2838405, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -121.283569, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 920, "felt:has_geometry": true, "felt:h3_index": 644721909016340648, "STATEFP": 6, "PLACEFP": 33294, "PLACENS": 2583034, "GEOID": 633294, "NAME": "Herald", "NAMELSAD": "Herald CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20406216, "AWATER": 57778, "INTPTLAT": 38.2884031, "INTPTLON": -121.2310658, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -121.228638, 38.289937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 676, "felt:has_geometry": true, "felt:h3_index": 644721909271835041, "STATEFP": 6, "PLACEFP": 13854, "PLACENS": 2582975, "GEOID": 613854, "NAME": "Clay", "NAMELSAD": "Clay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17496807, "AWATER": 0, "INTPTLAT": 38.3140376, "INTPTLON": -121.159591, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 38.315801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 751, "felt:has_geometry": true, "felt:h3_index": 644721909428589746, "STATEFP": 6, "PLACEFP": 19440, "PLACENS": 2582997, "GEOID": 619440, "NAME": "Dogtown", "NAMELSAD": "Dogtown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33584172, "AWATER": 57248, "INTPTLAT": 38.2086668, "INTPTLON": -121.1548094, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -121.157227, 38.207972 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 443, "felt:has_geometry": true, "felt:h3_index": 644721910760879467, "STATEFP": 6, "PLACEFP": 28112, "PLACENS": 2410563, "GEOID": 628112, "NAME": "Galt", "NAMELSAD": "Galt city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18508749, "AWATER": 34676, "INTPTLAT": 38.2703894, "INTPTLON": -121.3005957, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -121.300049, 38.268376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 462, "felt:has_geometry": true, "felt:h3_index": 644721911287721171, "STATEFP": 6, "PLACEFP": 36672, "PLACENS": 2410110, "GEOID": 636672, "NAME": "Ione", "NAMELSAD": "Ione city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11861672, "AWATER": 118011, "INTPTLAT": 38.3628615, "INTPTLON": -120.9476845, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -120.948486, 38.363195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 601, "felt:has_geometry": true, "felt:h3_index": 644721911846607281, "STATEFP": 6, "PLACEFP": 8828, "PLACENS": 2582953, "GEOID": 608828, "NAME": "Buena Vista", "NAMELSAD": "Buena Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4370822, "AWATER": 0, "INTPTLAT": 38.2974871, "INTPTLON": -120.9174023, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 38.298559 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 817, "felt:has_geometry": true, "felt:h3_index": 644721913361409796, "STATEFP": 6, "PLACEFP": 22524, "PLACENS": 2583010, "GEOID": 622524, "NAME": "Elverta", "NAMELSAD": "Elverta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22900221, "AWATER": 0, "INTPTLAT": 38.7184638, "INTPTLON": -121.4454754, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1329, "felt:has_geometry": true, "felt:h3_index": 644721913923320552, "STATEFP": 6, "PLACEFP": 60942, "PLACENS": 2409175, "GEOID": 660942, "NAME": "Rio Linda", "NAMELSAD": "Rio Linda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25710392, "AWATER": 0, "INTPTLAT": 38.687502, "INTPTLON": -121.4416818, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 994, "felt:has_geometry": true, "felt:h3_index": 644721914214835804, "STATEFP": 6, "PLACEFP": 38800, "PLACENS": 2583047, "GEOID": 638800, "NAME": "Knights Landing", "NAMELSAD": "Knights Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399445, "AWATER": 0, "INTPTLAT": 38.7979719, "INTPTLON": -121.7174475, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 38.796908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1589, "felt:has_geometry": true, "felt:h3_index": 644721914917295448, "STATEFP": 6, "PLACEFP": 86804, "PLACENS": 2583187, "GEOID": 686804, "NAME": "Yolo", "NAMELSAD": "Yolo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3556737, "AWATER": 0, "INTPTLAT": 38.7404633, "INTPTLON": -121.8093244, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -121.810913, 38.741231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 193, "felt:has_geometry": true, "felt:h3_index": 644721915601127716, "STATEFP": 6, "PLACEFP": 62364, "PLACENS": 2410980, "GEOID": 662364, "NAME": "Rocklin", "NAMELSAD": "Rocklin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51307151, "AWATER": 57380, "INTPTLAT": 38.8068681, "INTPTLON": -121.249696, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -121.250610, 38.805470 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 195, "felt:has_geometry": true, "felt:h3_index": 644721916054655152, "STATEFP": 6, "PLACEFP": 62938, "PLACENS": 2411000, "GEOID": 662938, "NAME": "Roseville", "NAMELSAD": "Roseville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 114184957, "AWATER": 0, "INTPTLAT": 38.7702963, "INTPTLON": -121.3196342, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -121.322021, 38.771216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1190, "felt:has_geometry": true, "felt:h3_index": 644721916546729873, "STATEFP": 6, "PLACEFP": 51336, "PLACENS": 2583093, "GEOID": 651336, "NAME": "Nicolaus", "NAMELSAD": "Nicolaus CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8074147, "AWATER": 0, "INTPTLAT": 38.8981899, "INTPTLON": -121.5728371, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -121.574707, 38.899583 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1500, "felt:has_geometry": true, "felt:h3_index": 644721916703940980, "STATEFP": 6, "PLACEFP": 80560, "PLACENS": 2583169, "GEOID": 680560, "NAME": "Trowbridge", "NAMELSAD": "Trowbridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17560536, "AWATER": 0, "INTPTLAT": 38.926385, "INTPTLON": -121.5148455, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -121.514282, 38.925229 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 771, "felt:has_geometry": true, "felt:h3_index": 644721916787448432, "STATEFP": 6, "PLACEFP": 20900, "PLACENS": 2583004, "GEOID": 620900, "NAME": "East Nicolaus", "NAMELSAD": "East Nicolaus CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11867921, "AWATER": 0, "INTPTLAT": 38.9100443, "INTPTLON": -121.5443193, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 296, "felt:has_geometry": true, "felt:h3_index": 644721917400555624, "STATEFP": 6, "PLACEFP": 84816, "PLACENS": 2412228, "GEOID": 684816, "NAME": "West Sacramento", "NAMELSAD": "West Sacramento city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55606617, "AWATER": 3446736, "INTPTLAT": 38.5543684, "INTPTLON": -121.5486634, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -121.547241, 38.552461 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 444, "felt:has_geometry": true, "felt:h3_index": 644721917732948493, "STATEFP": 6, "PLACEFP": 64000, "PLACENS": 2411751, "GEOID": 664000, "NAME": "Sacramento", "NAMELSAD": "Sacramento city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 255491817, "AWATER": 5413141, "INTPTLAT": 38.5676936, "INTPTLON": -121.4681605, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -121.470337, 38.569643 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1046, "felt:has_geometry": true, "felt:h3_index": 644721918184446238, "STATEFP": 6, "PLACEFP": 41142, "PLACENS": 2583055, "GEOID": 641142, "NAME": "Lemon Hill", "NAMELSAD": "Lemon Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4247517, "AWATER": 0, "INTPTLAT": 38.5172317, "INTPTLON": -121.4572792, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -121.459351, 38.518086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 865, "felt:has_geometry": true, "felt:h3_index": 644721918215611739, "STATEFP": 6, "PLACEFP": 27130, "PLACENS": 2583020, "GEOID": 627130, "NAME": "Fruitridge Pocket", "NAMELSAD": "Fruitridge Pocket CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1532205, "AWATER": 0, "INTPTLAT": 38.5326129, "INTPTLON": -121.4558068, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -121.453857, 38.530979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1249, "felt:has_geometry": true, "felt:h3_index": 644721918292417361, "STATEFP": 6, "PLACEFP": 55800, "PLACENS": 2583107, "GEOID": 655800, "NAME": "Parkway", "NAMELSAD": "Parkway CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6240066, "AWATER": 0, "INTPTLAT": 38.4992929, "INTPTLON": -121.4520114, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -121.453857, 38.500893 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 298, "felt:has_geometry": true, "felt:h3_index": 644721918588814197, "STATEFP": 6, "PLACEFP": 86328, "PLACENS": 2412300, "GEOID": 686328, "NAME": "Woodland", "NAMELSAD": "Woodland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39665023, "AWATER": 0, "INTPTLAT": 38.6711605, "INTPTLON": -121.7500432, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 38.672645 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 295, "felt:has_geometry": true, "felt:h3_index": 644721919076738481, "STATEFP": 6, "PLACEFP": 18100, "PLACENS": 2410296, "GEOID": 618100, "NAME": "Davis", "NAMELSAD": "Davis city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25826324, "AWATER": 90331, "INTPTLAT": 38.556147, "INTPTLON": -121.7377925, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -121.739502, 38.556757 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 636, "felt:has_geometry": true, "felt:h3_index": 644721919623586141, "STATEFP": 6, "PLACEFP": 11390, "PLACENS": 2407967, "GEOID": 611390, "NAME": "Carmichael", "NAMELSAD": "Carmichael CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39714478, "AWATER": 602793, "INTPTLAT": 38.6308121, "INTPTLON": -121.3256364, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -121.327515, 38.629745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1090, "felt:has_geometry": true, "felt:h3_index": 644721919723248522, "STATEFP": 6, "PLACEFP": 44760, "PLACENS": 2583067, "GEOID": 644760, "NAME": "McClellan Park", "NAMELSAD": "McClellan Park CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10536176, "AWATER": 0, "INTPTLAT": 38.6628961, "INTPTLON": -121.4016562, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 38.664067 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1202, "felt:has_geometry": true, "felt:h3_index": 644721919769650451, "STATEFP": 6, "PLACEFP": 51924, "PLACENS": 2408941, "GEOID": 651924, "NAME": "North Highlands", "NAMELSAD": "North Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22812286, "AWATER": 0, "INTPTLAT": 38.6713309, "INTPTLON": -121.3721344, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -121.371460, 38.672645 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 826, "felt:has_geometry": true, "felt:h3_index": 644721919891978133, "STATEFP": 6, "PLACEFP": 23294, "PLACENS": 2408100, "GEOID": 623294, "NAME": "Fair Oaks", "NAMELSAD": "Fair Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28169829, "AWATER": 930992, "INTPTLAT": 38.6501544, "INTPTLON": -121.2509702, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -121.250610, 38.651198 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 513, "felt:has_geometry": true, "felt:h3_index": 644721919944418001, "STATEFP": 6, "PLACEFP": 2210, "PLACENS": 2582934, "GEOID": 602210, "NAME": "Antelope", "NAMELSAD": "Antelope CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17705728, "AWATER": 0, "INTPTLAT": 38.7153301, "INTPTLON": -121.3609616, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -121.360474, 38.715519 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 842, "felt:has_geometry": true, "felt:h3_index": 644721920021804033, "STATEFP": 6, "PLACEFP": 24722, "PLACENS": 2408224, "GEOID": 624722, "NAME": "Foothill Farms", "NAMELSAD": "Foothill Farms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10879066, "AWATER": 0, "INTPTLAT": 38.6867316, "INTPTLON": -121.3474778, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -121.349487, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 518, "felt:has_geometry": true, "felt:h3_index": 644721920080101603, "STATEFP": 6, "PLACEFP": 2553, "PLACENS": 2407756, "GEOID": 602553, "NAME": "Arden-Arcade", "NAMELSAD": "Arden-Arcade CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41169054, "AWATER": 588891, "INTPTLAT": 38.6006475, "INTPTLON": -121.3846427, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -121.382446, 38.599700 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1032, "felt:has_geometry": true, "felt:h3_index": 644721920169012546, "STATEFP": 6, "PLACEFP": 40410, "PLACENS": 2408515, "GEOID": 640410, "NAME": "La Riviera", "NAMELSAD": "La Riviera CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4920394, "AWATER": 368987, "INTPTLAT": 38.5685383, "INTPTLON": -121.3549624, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -121.354980, 38.569643 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1065, "felt:has_geometry": true, "felt:h3_index": 644721922483215114, "STATEFP": 6, "PLACEFP": 42142, "PLACENS": 2812656, "GEOID": 642142, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082298, "AWATER": 0, "INTPTLAT": 38.4866914, "INTPTLON": -120.6034249, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -120.602417, 38.487995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1335, "felt:has_geometry": true, "felt:h3_index": 644721923661961014, "STATEFP": 6, "PLACEFP": 61124, "PLACENS": 2586445, "GEOID": 661124, "NAME": "River Pines", "NAMELSAD": "River Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 524419, "AWATER": 0, "INTPTLAT": 38.545458000000007, "INTPTLON": -120.7429092, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -120.745239, 38.543869 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 904, "felt:has_geometry": true, "felt:h3_index": 644721924029761590, "STATEFP": 6, "PLACEFP": 31302, "PLACENS": 2628736, "GEOID": 631302, "NAME": "Grizzly Flats", "NAMELSAD": "Grizzly Flats CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17168505, "AWATER": 0, "INTPTLAT": 38.6356964, "INTPTLON": -120.535435, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -120.536499, 38.634036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 624, "felt:has_geometry": true, "felt:h3_index": 644721925059306634, "STATEFP": 6, "PLACEFP": 10270, "PLACENS": 2582961, "GEOID": 610270, "NAME": "Camino", "NAMELSAD": "Camino CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6659897, "AWATER": 0, "INTPTLAT": 38.7422654, "INTPTLON": -120.6808108, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -120.679321, 38.741231 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1273, "felt:has_geometry": true, "felt:h3_index": 644721926213384809, "STATEFP": 6, "PLACEFP": 57148, "PLACENS": 2583114, "GEOID": 657148, "NAME": "Pine Grove", "NAMELSAD": "Pine Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19383669, "AWATER": 0, "INTPTLAT": 38.4030395, "INTPTLON": -120.6570875, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -120.657349, 38.401949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1560, "felt:has_geometry": true, "felt:h3_index": 644721926267803176, "STATEFP": 6, "PLACEFP": 84732, "PLACENS": 2409563, "GEOID": 684732, "NAME": "West Point", "NAMELSAD": "West Point CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7677757, "AWATER": 0, "INTPTLAT": 38.4060578, "INTPTLON": -120.5364802, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -120.536499, 38.406254 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1533, "felt:has_geometry": true, "felt:h3_index": 644721926425664280, "STATEFP": 6, "PLACEFP": 83094, "PLACENS": 2583178, "GEOID": 683094, "NAME": "Volcano", "NAMELSAD": "Volcano CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3626954, "AWATER": 0, "INTPTLAT": 38.4506137, "INTPTLON": -120.6217679, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -120.624390, 38.449287 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1318, "felt:has_geometry": true, "felt:h3_index": 644721926439338141, "STATEFP": 6, "PLACEFP": 59896, "PLACENS": 2583119, "GEOID": 659896, "NAME": "Red Corral", "NAMELSAD": "Red Corral CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16324174, "AWATER": 0, "INTPTLAT": 38.4121324, "INTPTLON": -120.6071021, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 38.410558 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1279, "felt:has_geometry": true, "felt:h3_index": 644721926475382941, "STATEFP": 6, "PLACEFP": 57330, "PLACENS": 2583116, "GEOID": 657330, "NAME": "Pioneer", "NAMELSAD": "Pioneer CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10199669, "AWATER": 0, "INTPTLAT": 38.4337589, "INTPTLON": -120.5860771, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 38.432077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 461, "felt:has_geometry": true, "felt:h3_index": 644721927117279756, "STATEFP": 6, "PLACEFP": 1514, "PLACENS": 2409693, "GEOID": 601514, "NAME": "Amador City", "NAMELSAD": "Amador City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 801747, "AWATER": 0, "INTPTLAT": 38.4189949, "INTPTLON": -120.8232598, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -120.822144, 38.419166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 464, "felt:has_geometry": true, "felt:h3_index": 644721927284803904, "STATEFP": 6, "PLACEFP": 57834, "PLACENS": 2411446, "GEOID": 657834, "NAME": "Plymouth", "NAMELSAD": "Plymouth city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6860201, "AWATER": 32811, "INTPTLAT": 38.4717408, "INTPTLON": -120.857194, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -120.855103, 38.470794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 834, "felt:has_geometry": true, "felt:h3_index": 644721927488423662, "STATEFP": 6, "PLACEFP": 23980, "PLACENS": 2583012, "GEOID": 623980, "NAME": "Fiddletown", "NAMELSAD": "Fiddletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11797057, "AWATER": 0, "INTPTLAT": 38.506864, "INTPTLON": -120.760149, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -120.761719, 38.505191 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 758, "felt:has_geometry": true, "felt:h3_index": 644721927748215626, "STATEFP": 6, "PLACEFP": 19976, "PLACENS": 2583002, "GEOID": 619976, "NAME": "Drytown", "NAMELSAD": "Drytown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8432611, "AWATER": 7631, "INTPTLAT": 38.4414885, "INTPTLON": -120.8605043, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -120.860596, 38.440682 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 374, "felt:has_geometry": true, "felt:h3_index": 644721927938467665, "STATEFP": 6, "PLACEFP": 77392, "PLACENS": 2412019, "GEOID": 677392, "NAME": "Sutter Creek", "NAMELSAD": "Sutter Creek city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6988164, "AWATER": 0, "INTPTLAT": 38.3924453, "INTPTLON": -120.798969, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -120.800171, 38.393339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 509, "felt:has_geometry": true, "felt:h3_index": 644721928344028706, "STATEFP": 6, "PLACEFP": 1518, "PLACENS": 2812655, "GEOID": 601518, "NAME": "Amador Pines", "NAMELSAD": "Amador Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12561595, "AWATER": 0, "INTPTLAT": 38.4896313, "INTPTLON": -120.5333049, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.487995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 598, "felt:has_geometry": true, "felt:h3_index": 644721928787056372, "STATEFP": 6, "PLACEFP": 8680, "PLACENS": 2586444, "GEOID": 608680, "NAME": "Buckhorn", "NAMELSAD": "Buckhorn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12772523, "AWATER": 0, "INTPTLAT": 38.4547969, "INTPTLON": -120.5323337, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.453589 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1116, "felt:has_geometry": true, "felt:h3_index": 644721939188048516, "STATEFP": 6, "PLACEFP": 46338, "PLACENS": 2583074, "GEOID": 646338, "NAME": "Maxwell", "NAMELSAD": "Maxwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5569332, "AWATER": 0, "INTPTLAT": 39.2770782, "INTPTLON": -122.1946759, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.195435, 39.279042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1067, "felt:has_geometry": true, "felt:h3_index": 644721940661747024, "STATEFP": 6, "PLACEFP": 42230, "PLACENS": 2583059, "GEOID": 642230, "NAME": "Lodoga", "NAMELSAD": "Lodoga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8772455, "AWATER": 0, "INTPTLAT": 39.3042725, "INTPTLON": -122.5059438, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 39.304550 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1300, "felt:has_geometry": true, "felt:h3_index": 644721941324717229, "STATEFP": 6, "PLACEFP": 58758, "PLACENS": 2583118, "GEOID": 658758, "NAME": "Princeton", "NAMELSAD": "Princeton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3781914, "AWATER": 0, "INTPTLAT": 39.4015985, "INTPTLON": -122.0193595, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.019653, 39.402244 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 265, "felt:has_geometry": true, "felt:h3_index": 644721945635593221, "STATEFP": 6, "PLACEFP": 14946, "PLACENS": 2410204, "GEOID": 614946, "NAME": "Colusa", "NAMELSAD": "Colusa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11295870, "AWATER": 0, "INTPTLAT": 39.2000228, "INTPTLON": -122.0094812, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.008667, 39.198205 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 264, "felt:has_geometry": true, "felt:h3_index": 644721945915734576, "STATEFP": 6, "PLACEFP": 85586, "PLACENS": 2412268, "GEOID": 685586, "NAME": "Williams", "NAMELSAD": "Williams city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12810560, "AWATER": 0, "INTPTLAT": 39.1497797, "INTPTLON": -122.1389678, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.140503, 39.151363 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 805, "felt:has_geometry": true, "felt:h3_index": 644721950334265260, "STATEFP": 6, "PLACEFP": 22006, "PLACENS": 2628728, "GEOID": 622006, "NAME": "Elk Creek", "NAMELSAD": "Elk Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3820501, "AWATER": 81504, "INTPTLAT": 39.5986779, "INTPTLON": -122.5323198, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 39.597223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1445, "felt:has_geometry": true, "felt:h3_index": 644721952581245840, "STATEFP": 6, "PLACEFP": 75154, "PLACENS": 2583153, "GEOID": 675154, "NAME": "Stonyford", "NAMELSAD": "Stonyford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3636119, "AWATER": 0, "INTPTLAT": 39.3694918, "INTPTLON": -122.5438083, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 39.368279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 413, "felt:has_geometry": true, "felt:h3_index": 644721956063023726, "STATEFP": 6, "PLACEFP": 6560, "PLACENS": 2409848, "GEOID": 606560, "NAME": "Biggs", "NAMELSAD": "Biggs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2317099, "AWATER": 0, "INTPTLAT": 39.4101867, "INTPTLON": -121.7133215, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -121.712036, 39.410733 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 414, "felt:has_geometry": true, "felt:h3_index": 644721956836683122, "STATEFP": 6, "PLACEFP": 31260, "PLACENS": 2410665, "GEOID": 631260, "NAME": "Gridley", "NAMELSAD": "Gridley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5404056, "AWATER": 0, "INTPTLAT": 39.3622287, "INTPTLON": -121.6970797, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -121.695557, 39.364032 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 155, "felt:has_geometry": true, "felt:h3_index": 644721958220879138, "STATEFP": 6, "PLACEFP": 54386, "PLACENS": 2411337, "GEOID": 654386, "NAME": "Oroville", "NAMELSAD": "Oroville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35994947, "AWATER": 47848, "INTPTLAT": 39.4954239, "INTPTLON": -121.5600694, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -121.558228, 39.495563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1424, "felt:has_geometry": true, "felt:h3_index": 644721958277101257, "STATEFP": 6, "PLACEFP": 73178, "PLACENS": 2408768, "GEOID": 673178, "NAME": "South Oroville", "NAMELSAD": "South Oroville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6825496, "AWATER": 0, "INTPTLAT": 39.4765534, "INTPTLON": -121.5438776, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -121.541748, 39.478606 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1481, "felt:has_geometry": true, "felt:h3_index": 644721958419747496, "STATEFP": 6, "PLACEFP": 78470, "PLACENS": 2410077, "GEOID": 678470, "NAME": "Thermalito", "NAMELSAD": "Thermalito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32857219, "AWATER": 434050, "INTPTLAT": 39.508933, "INTPTLON": -121.6011162, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -121.602173, 39.508279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1236, "felt:has_geometry": true, "felt:h3_index": 644721958459156291, "STATEFP": 6, "PLACEFP": 54388, "PLACENS": 2409001, "GEOID": 654388, "NAME": "Oroville East", "NAMELSAD": "Oroville East CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55935091, "AWATER": 415638, "INTPTLAT": 39.493619700000007, "INTPTLON": -121.4837545, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -121.481323, 39.495563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1241, "felt:has_geometry": true, "felt:h3_index": 644721959051926547, "STATEFP": 6, "PLACEFP": 55086, "PLACENS": 2409019, "GEOID": 655086, "NAME": "Palermo", "NAMELSAD": "Palermo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75529077, "AWATER": 37114, "INTPTLAT": 39.4306948, "INTPTLON": -121.5228836, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -121.525269, 39.431950 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1326, "felt:has_geometry": true, "felt:h3_index": 644721959830195393, "STATEFP": 6, "PLACEFP": 60662, "PLACENS": 2612486, "GEOID": 660662, "NAME": "Richvale", "NAMELSAD": "Richvale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2401175, "AWATER": 0, "INTPTLAT": 39.4937385, "INTPTLON": -121.7507688, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 39.495563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 84, "felt:has_geometry": true, "felt:h3_index": 644721960644087960, "STATEFP": 6, "PLACEFP": 41936, "PLACENS": 2410846, "GEOID": 641936, "NAME": "Live Oak", "NAMELSAD": "Live Oak city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8083317, "AWATER": 0, "INTPTLAT": 39.2788019, "INTPTLON": -121.662439, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -121.662598, 39.279042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1459, "felt:has_geometry": true, "felt:h3_index": 644721960940881587, "STATEFP": 6, "PLACEFP": 77378, "PLACENS": 2410039, "GEOID": 677378, "NAME": "Sutter", "NAMELSAD": "Sutter CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7835375, "AWATER": 0, "INTPTLAT": 39.1555962, "INTPTLON": -121.7492647, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -121.750488, 39.155622 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 935, "felt:has_geometry": true, "felt:h3_index": 644721962514455689, "STATEFP": 6, "PLACEFP": 34428, "PLACENS": 2612482, "GEOID": 634428, "NAME": "Honcut", "NAMELSAD": "Honcut CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10970686, "AWATER": 0, "INTPTLAT": 39.3325914, "INTPTLON": -121.5387589, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -121.536255, 39.334297 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 522, "felt:has_geometry": true, "felt:h3_index": 644721965368679813, "STATEFP": 6, "PLACEFP": 2910, "PLACENS": 2628707, "GEOID": 602910, "NAME": "Artois", "NAMELSAD": "Artois CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7458262, "AWATER": 0, "INTPTLAT": 39.6331786, "INTPTLON": -122.1897577, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 218, "felt:has_geometry": true, "felt:h3_index": 644721966062888084, "STATEFP": 6, "PLACEFP": 54274, "PLACENS": 2411335, "GEOID": 654274, "NAME": "Orland", "NAMELSAD": "Orland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7765622, "AWATER": 0, "INTPTLAT": 39.7460824, "INTPTLON": -122.1855449, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.184448, 39.745210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1194, "felt:has_geometry": true, "felt:h3_index": 644721966796508306, "STATEFP": 6, "PLACEFP": 51574, "PLACENS": 2612484, "GEOID": 651574, "NAME": "Nord", "NAMELSAD": "Nord CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5452534, "AWATER": 0, "INTPTLAT": 39.7737878, "INTPTLON": -121.9549057, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -121.953735, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 909, "felt:has_geometry": true, "felt:h3_index": 644721967447511971, "STATEFP": 6, "PLACEFP": 31890, "PLACENS": 2408348, "GEOID": 631890, "NAME": "Hamilton City", "NAMELSAD": "Hamilton City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1060201, "AWATER": 0, "INTPTLAT": 39.742678, "INTPTLON": -122.0109458, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.008667, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 219, "felt:has_geometry": true, "felt:h3_index": 644721969601854029, "STATEFP": 6, "PLACEFP": 85684, "PLACENS": 2412272, "GEOID": 685684, "NAME": "Willows", "NAMELSAD": "Willows city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7344419, "AWATER": 31054, "INTPTLAT": 39.5147524, "INTPTLON": -122.1991778, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 39.516755 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 382, "felt:has_geometry": true, "felt:h3_index": 644721974489566092, "STATEFP": 6, "PLACEFP": 13945, "PLACENS": 2409479, "GEOID": 613945, "NAME": "Clearlake", "NAMELSAD": "Clearlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26235110, "AWATER": 1167608, "INTPTLAT": 38.9600452, "INTPTLON": -122.6332316, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.634888, 38.959409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1082, "felt:has_geometry": true, "felt:h3_index": 644721974877209326, "STATEFP": 6, "PLACEFP": 44350, "PLACENS": 2408146, "GEOID": 644350, "NAME": "Lower Lake", "NAMELSAD": "Lower Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6906625, "AWATER": 64423, "INTPTLAT": 38.9130345, "INTPTLON": -122.6069867, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 38.912407 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1353, "felt:has_geometry": true, "felt:h3_index": 644721976003537758, "STATEFP": 6, "PLACEFP": 63302, "PLACENS": 2805251, "GEOID": 663302, "NAME": "Rumsey", "NAMELSAD": "Rumsey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6338948, "AWATER": 218858, "INTPTLAT": 38.893308, "INTPTLON": -122.2436468, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.244873, 38.895308 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 924, "felt:has_geometry": true, "felt:h3_index": 644721978611729115, "STATEFP": 6, "PLACEFP": 33549, "PLACENS": 2408382, "GEOID": 633549, "NAME": "Hidden Valley Lake", "NAMELSAD": "Hidden Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25433860, "AWATER": 374389, "INTPTLAT": 38.8014979, "INTPTLON": -122.5514216, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.552490, 38.801189 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1134, "felt:has_geometry": true, "felt:h3_index": 644721979138365161, "STATEFP": 6, "PLACEFP": 47332, "PLACENS": 2408828, "GEOID": 647332, "NAME": "Middletown", "NAMELSAD": "Middletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4776232, "AWATER": 0, "INTPTLAT": 38.7518774, "INTPTLON": -122.6221035, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.623901, 38.749799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 906, "felt:has_geometry": true, "felt:h3_index": 644721979690108459, "STATEFP": 6, "PLACEFP": 31540, "PLACENS": 2628737, "GEOID": 631540, "NAME": "Guinda", "NAMELSAD": "Guinda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7578139, "AWATER": 0, "INTPTLAT": 38.8273739, "INTPTLON": -122.1983586, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 38.826871 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1467, "felt:has_geometry": true, "felt:h3_index": 644721980558279433, "STATEFP": 6, "PLACEFP": 77860, "PLACENS": 2805253, "GEOID": 677860, "NAME": "Tancred", "NAMELSAD": "Tancred CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4172360, "AWATER": 0, "INTPTLAT": 38.7618592, "INTPTLON": -122.1546958, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.156982, 38.762650 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1189, "felt:has_geometry": true, "felt:h3_index": 644721982539041578, "STATEFP": 6, "PLACEFP": 51294, "PLACENS": 2408925, "GEOID": 651294, "NAME": "Nice", "NAMELSAD": "Nice CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4472124, "AWATER": 12228, "INTPTLAT": 39.1261812, "INTPTLON": -122.8553295, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.854614, 39.125799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1512, "felt:has_geometry": true, "felt:h3_index": 644721983748748648, "STATEFP": 6, "PLACEFP": 81358, "PLACENS": 2409382, "GEOID": 681358, "NAME": "Upper Lake", "NAMELSAD": "Upper Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4439947, "AWATER": 21212, "INTPTLAT": 39.1650498, "INTPTLON": -122.9051819, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.904053, 39.164141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1416, "felt:has_geometry": true, "felt:h3_index": 644721986105613489, "STATEFP": 6, "PLACEFP": 72478, "PLACENS": 2583147, "GEOID": 672478, "NAME": "Soda Bay", "NAMELSAD": "Soda Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3327990, "AWATER": 0, "INTPTLAT": 39.0024314, "INTPTLON": -122.779476, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.777710, 39.002110 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1085, "felt:has_geometry": true, "felt:h3_index": 644721986587892896, "STATEFP": 6, "PLACEFP": 44406, "PLACENS": 2408150, "GEOID": 644406, "NAME": "Lucerne", "NAMELSAD": "Lucerne CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13916576, "AWATER": 35489, "INTPTLAT": 39.0567698, "INTPTLON": -122.7702894, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.772217, 39.057584 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 977, "felt:has_geometry": true, "felt:h3_index": 644721986836369778, "STATEFP": 6, "PLACEFP": 38044, "PLACENS": 2408468, "GEOID": 638044, "NAME": "Kelseyville", "NAMELSAD": "Kelseyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7471626, "AWATER": 15272, "INTPTLAT": 38.9701843, "INTPTLON": -122.8313842, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.832642, 38.972222 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 679, "felt:has_geometry": true, "felt:h3_index": 644721986968608965, "STATEFP": 6, "PLACEFP": 13985, "PLACENS": 2582976, "GEOID": 613985, "NAME": "Clearlake Riviera", "NAMELSAD": "Clearlake Riviera CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13696201, "AWATER": 4029, "INTPTLAT": 38.9513834, "INTPTLON": -122.7222429, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.722778, 38.950865 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1203, "felt:has_geometry": true, "felt:h3_index": 644721987206005528, "STATEFP": 6, "PLACEFP": 51990, "PLACENS": 2408942, "GEOID": 651990, "NAME": "North Lakeport", "NAMELSAD": "North Lakeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832064, "AWATER": 6993183, "INTPTLAT": 39.0866322, "INTPTLON": -122.9094423, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.909546, 39.087436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 301, "felt:has_geometry": true, "felt:h3_index": 644721988000654554, "STATEFP": 6, "PLACEFP": 39710, "PLACENS": 2411609, "GEOID": 639710, "NAME": "Lakeport", "NAMELSAD": "Lakeport city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7920508, "AWATER": 363747, "INTPTLAT": 39.0383327, "INTPTLON": -122.9226333, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.920532, 39.036253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1432, "felt:has_geometry": true, "felt:h3_index": 644721988312697257, "STATEFP": 6, "PLACEFP": 73690, "PLACENS": 2583149, "GEOID": 673690, "NAME": "Spring Valley", "NAMELSAD": "Spring Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12780930, "AWATER": 102405, "INTPTLAT": 39.0760533, "INTPTLON": -122.5845123, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.585449, 39.074644 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 678, "felt:has_geometry": true, "felt:h3_index": 644721988873897262, "STATEFP": 6, "PLACEFP": 13966, "PLACENS": 2407631, "GEOID": 613966, "NAME": "Clearlake Oaks", "NAMELSAD": "Clearlake Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5123125, "AWATER": 442546, "INTPTLAT": 39.0206053, "INTPTLON": -122.6569387, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.656860, 39.019184 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 517, "felt:has_geometry": true, "felt:h3_index": 644721992046339372, "STATEFP": 6, "PLACEFP": 2420, "PLACENS": 2407755, "GEOID": 602420, "NAME": "Arbuckle", "NAMELSAD": "Arbuckle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4559938, "AWATER": 0, "INTPTLAT": 39.0141947, "INTPTLON": -122.0610427, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.063599, 39.014916 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 691, "felt:has_geometry": true, "felt:h3_index": 644721992379966553, "STATEFP": 6, "PLACEFP": 14554, "PLACENS": 2582979, "GEOID": 614554, "NAME": "College City", "NAMELSAD": "College City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599771, "AWATER": 0, "INTPTLAT": 39.0060851, "INTPTLON": -122.0051338, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 39.006379 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1127, "felt:has_geometry": true, "felt:h3_index": 644721993619691746, "STATEFP": 6, "PLACEFP": 46926, "PLACENS": 2583078, "GEOID": 646926, "NAME": "Meridian", "NAMELSAD": "Meridian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713975, "AWATER": 0, "INTPTLAT": 39.1404373, "INTPTLON": -121.9079004, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -121.909790, 39.138582 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 903, "felt:has_geometry": true, "felt:h3_index": 644721994257543755, "STATEFP": 6, "PLACEFP": 31288, "PLACENS": 2583030, "GEOID": 631288, "NAME": "Grimes", "NAMELSAD": "Grimes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5856072, "AWATER": 0, "INTPTLAT": 39.0741539, "INTPTLON": -121.8987753, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -121.898804, 39.074644 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 760, "felt:has_geometry": true, "felt:h3_index": 644721994845959590, "STATEFP": 6, "PLACEFP": 20228, "PLACENS": 2583003, "GEOID": 620228, "NAME": "Dunnigan", "NAMELSAD": "Dunnigan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13551020, "AWATER": 0, "INTPTLAT": 38.8926428, "INTPTLON": -121.9741835, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -121.975708, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1336, "felt:has_geometry": true, "felt:h3_index": 644721997469258910, "STATEFP": 6, "PLACEFP": 62168, "PLACENS": 2583123, "GEOID": 662168, "NAME": "Robbins", "NAMELSAD": "Robbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6706066, "AWATER": 22544, "INTPTLAT": 38.8669477, "INTPTLON": -121.7070925, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -121.706543, 38.865375 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 595, "felt:has_geometry": true, "felt:h3_index": 644722007611057680, "STATEFP": 6, "PLACEFP": 8478, "PLACENS": 2582951, "GEOID": 608478, "NAME": "Brookdale", "NAMELSAD": "Brookdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9963087, "AWATER": 0, "INTPTLAT": 37.1057317, "INTPTLON": -122.110623, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.113037, 37.107765 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1071, "felt:has_geometry": true, "felt:h3_index": 644722007842263266, "STATEFP": 6, "PLACEFP": 42510, "PLACENS": 2583060, "GEOID": 642510, "NAME": "Lompico", "NAMELSAD": "Lompico CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8749690, "AWATER": 315, "INTPTLAT": 37.1146189, "INTPTLON": -122.0527676, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.052612, 37.116526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 588, "felt:has_geometry": true, "felt:h3_index": 644722008068795715, "STATEFP": 6, "PLACEFP": 7652, "PLACENS": 2407892, "GEOID": 607652, "NAME": "Boulder Creek", "NAMELSAD": "Boulder Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19456234, "AWATER": 0, "INTPTLAT": 37.1340991, "INTPTLON": -122.1272084, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.129517, 37.134045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 580, "felt:has_geometry": true, "felt:h3_index": 644722008148753014, "STATEFP": 6, "PLACEFP": 7470, "PLACENS": 2582948, "GEOID": 607470, "NAME": "Bonny Doon", "NAMELSAD": "Bonny Doon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42898133, "AWATER": 0, "INTPTLAT": 37.0435771, "INTPTLON": -122.1369719, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.042024 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 551, "felt:has_geometry": true, "felt:h3_index": 644722008425538892, "STATEFP": 6, "PLACEFP": 5332, "PLACENS": 2407827, "GEOID": 605332, "NAME": "Ben Lomond", "NAMELSAD": "Ben Lomond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21674902, "AWATER": 0, "INTPTLAT": 37.0782118, "INTPTLON": -122.0881023, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.085571, 37.077093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 832, "felt:has_geometry": true, "felt:h3_index": 644722008448779408, "STATEFP": 6, "PLACEFP": 23826, "PLACENS": 2408208, "GEOID": 623826, "NAME": "Felton", "NAMELSAD": "Felton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12017049, "AWATER": 0, "INTPTLAT": 37.039222, "INTPTLON": -122.0807644, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.037640 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1177, "felt:has_geometry": true, "felt:h3_index": 644722008482078818, "STATEFP": 6, "PLACEFP": 49796, "PLACENS": 2583088, "GEOID": 649796, "NAME": "Mount Hermon", "NAMELSAD": "Mount Hermon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682849, "AWATER": 0, "INTPTLAT": 37.0510322, "INTPTLON": -122.0533485, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.052612, 37.050793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 52, "felt:has_geometry": true, "felt:h3_index": 644722009897173091, "STATEFP": 6, "PLACEFP": 48956, "PLACENS": 2411142, "GEOID": 648956, "NAME": "Monte Sereno", "NAMELSAD": "Monte Sereno city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4231274, "AWATER": 0, "INTPTLAT": 37.2404096, "INTPTLON": -121.9882354, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -121.986694, 37.239075 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 622, "felt:has_geometry": true, "felt:h3_index": 644722010164307849, "STATEFP": 6, "PLACEFP": 10088, "PLACENS": 2407942, "GEOID": 610088, "NAME": "Cambrian Park", "NAMELSAD": "Cambrian Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1575566, "AWATER": 0, "INTPTLAT": 37.2562757, "INTPTLON": -121.9288407, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 37.256566 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 33, "felt:has_geometry": true, "felt:h3_index": 644722010188307603, "STATEFP": 6, "PLACEFP": 44112, "PLACENS": 2412917, "GEOID": 644112, "NAME": "Los Gatos", "NAMELSAD": "Los Gatos town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29919849, "AWATER": 206446, "INTPTLAT": 37.2299123, "INTPTLON": -121.9568137, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -121.959229, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1051, "felt:has_geometry": true, "felt:h3_index": 644722010310627419, "STATEFP": 6, "PLACEFP": 41282, "PLACENS": 2408606, "GEOID": 641282, "NAME": "Lexington Hills", "NAMELSAD": "Lexington Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12220701, "AWATER": 88518, "INTPTLAT": 37.1590159, "INTPTLON": -121.9887929, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -121.986694, 37.160317 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 472, "felt:has_geometry": true, "felt:h3_index": 644722012169345097, "STATEFP": 6, "PLACEFP": 69112, "PLACENS": 2411820, "GEOID": 669112, "NAME": "Santa Cruz", "NAMELSAD": "Santa Cruz city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32996448, "AWATER": 7998699, "INTPTLAT": 36.974385, "INTPTLON": -122.0352679, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 36.976227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 725, "felt:has_geometry": true, "felt:h3_index": 644722013311284645, "STATEFP": 6, "PLACEFP": 18086, "PLACENS": 2582991, "GEOID": 618086, "NAME": "Davenport", "NAMELSAD": "Davenport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7367925, "AWATER": 0, "INTPTLAT": 37.0177787, "INTPTLON": -122.1878849, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.189941, 37.015712 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1593, "felt:has_geometry": true, "felt:h3_index": 644722014164797872, "STATEFP": 6, "PLACEFP": 87090, "PLACENS": 2583188, "GEOID": 687090, "NAME": "Zayante", "NAMELSAD": "Zayante CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7308969, "AWATER": 0, "INTPTLAT": 37.0892135, "INTPTLON": -122.040862, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.041626, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 156, "felt:has_geometry": true, "felt:h3_index": 644722014216061784, "STATEFP": 6, "PLACEFP": 70588, "PLACENS": 2411844, "GEOID": 670588, "NAME": "Scotts Valley", "NAMELSAD": "Scotts Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11961717, "AWATER": 0, "INTPTLAT": 37.0554989, "INTPTLON": -122.0117689, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.055177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1063, "felt:has_geometry": true, "felt:h3_index": 644722014608371811, "STATEFP": 6, "PLACEFP": 41922, "PLACENS": 2408622, "GEOID": 641922, "NAME": "Live Oak", "NAMELSAD": "Live Oak CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8398410, "AWATER": 0, "INTPTLAT": 36.9860239, "INTPTLON": -121.9804138, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1508, "felt:has_geometry": true, "felt:h3_index": 644722014637688027, "STATEFP": 6, "PLACEFP": 81050, "PLACENS": 2409372, "GEOID": 681050, "NAME": "Twin Lakes", "NAMELSAD": "Twin Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1789624, "AWATER": 1346290, "INTPTLAT": 36.9613777, "INTPTLON": -121.9917482, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -121.992188, 36.963060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 475, "felt:has_geometry": true, "felt:h3_index": 644722014655660627, "STATEFP": 6, "PLACEFP": 11040, "PLACENS": 2409981, "GEOID": 611040, "NAMELSAD": "Capitola city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4129576, "AWATER": 213680, "INTPTLAT": 36.9760826, "INTPTLON": -121.954012, "NAME": "Capitola,Pleasure Point", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -121.953735, 36.976227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1251, "felt:has_geometry": true, "felt:h3_index": 644722014756472024, "STATEFP": 6, "PLACEFP": 56028, "PLACENS": 2583108, "GEOID": 656028, "NAME": "Pasatiempo", "NAMELSAD": "Pasatiempo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2305899, "AWATER": 0, "INTPTLAT": 37.003338, "INTPTLON": -122.0264737, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.002553 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1246, "felt:has_geometry": true, "felt:h3_index": 644722014770698241, "STATEFP": 6, "PLACEFP": 55604, "PLACENS": 2583106, "GEOID": 655604, "NAME": "Paradise Park", "NAMELSAD": "Paradise Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 720542, "AWATER": 0, "INTPTLAT": 37.0062975, "INTPTLON": -122.0424133, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.041626, 37.006939 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 515, "felt:has_geometry": true, "felt:h3_index": 644722014822158945, "STATEFP": 6, "PLACEFP": 2378, "PLACENS": 2407750, "GEOID": 602378, "NAME": "Aptos", "NAMELSAD": "Aptos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17037117, "AWATER": 0, "INTPTLAT": 36.99115, "INTPTLON": -121.8934565, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 36.989391 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1420, "felt:has_geometry": true, "felt:h3_index": 644722014844011915, "STATEFP": 6, "PLACEFP": 72688, "PLACENS": 2408757, "GEOID": 672688, "NAME": "Soquel", "NAMELSAD": "Soquel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11905335, "AWATER": 0, "INTPTLAT": 36.9977624, "INTPTLON": -121.9482484, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 36.998166 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1386, "felt:has_geometry": true, "felt:h3_index": 644722014906102539, "STATEFP": 6, "PLACEFP": 70644, "PLACENS": 2583132, "GEOID": 670644, "NAME": "Seacliff", "NAMELSAD": "Seacliff CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1890210, "AWATER": 3151, "INTPTLAT": 36.9773441, "INTPTLON": -121.9186148, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -121.920776, 36.976227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 76, "felt:has_geometry": true, "felt:h3_index": 644722016601598709, "STATEFP": 6, "PLACEFP": 31708, "PLACENS": 2410685, "GEOID": 631708, "NAME": "Half Moon Bay", "NAMELSAD": "Half Moon Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16166728, "AWATER": 28378, "INTPTLAT": 37.467319, "INTPTLON": -122.4404845, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.466139 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 926, "felt:has_geometry": true, "felt:h3_index": 644722018547743633, "STATEFP": 6, "PLACEFP": 33632, "PLACENS": 2805051, "GEOID": 633632, "NAME": "Highlands", "NAMELSAD": "Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3367662, "AWATER": 0, "INTPTLAT": 37.520022, "INTPTLON": -122.3458995, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.518440 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 181, "felt:has_geometry": true, "felt:h3_index": 644722018604491281, "STATEFP": 6, "PLACEFP": 65070, "PLACENS": 2411780, "GEOID": 665070, "NAME": "San Carlos", "NAMELSAD": "San Carlos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14017266, "AWATER": 2037, "INTPTLAT": 37.4990342, "INTPTLON": -122.2675721, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.266846, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 818, "felt:has_geometry": true, "felt:h3_index": 644722018653230162, "STATEFP": 6, "PLACEFP": 22587, "PLACENS": 2408080, "GEOID": 622587, "NAME": "Emerald Lake Hills", "NAMELSAD": "Emerald Lake Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3061995, "AWATER": 17265, "INTPTLAT": 37.4656604, "INTPTLON": -122.2653505, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.266846, 37.466139 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 93, "felt:has_geometry": true, "felt:h3_index": 644722018759325973, "STATEFP": 6, "PLACEFP": 68252, "PLACENS": 2411800, "GEOID": 668252, "NAME": "San Mateo", "NAMELSAD": "San Mateo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31427171, "AWATER": 9622102, "INTPTLAT": 37.5603104, "INTPTLON": -122.3106003, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.310791, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 178, "felt:has_geometry": true, "felt:h3_index": 644722018780062636, "STATEFP": 6, "PLACEFP": 5108, "PLACENS": 2409826, "GEOID": 605108, "NAME": "Belmont", "NAMELSAD": "Belmont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11990538, "AWATER": 23653, "INTPTLAT": 37.5143975, "INTPTLON": -122.2944751, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.294312, 37.514083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 540, "felt:has_geometry": true, "felt:h3_index": 644722018795040026, "STATEFP": 6, "PLACEFP": 4549, "PLACENS": 2805052, "GEOID": 604549, "NAME": "Baywood Park", "NAMELSAD": "Baywood Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1416274, "AWATER": 0, "INTPTLAT": 37.529163, "INTPTLON": -122.341637, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 183, "felt:has_geometry": true, "felt:h3_index": 644722019224131611, "STATEFP": 6, "PLACEFP": 86440, "PLACENS": 2413509, "GEOID": 686440, "NAME": "Woodside", "NAMELSAD": "Woodside town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29697449, "AWATER": 0, "INTPTLAT": 37.4221495, "INTPTLON": -122.2585926, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1156, "felt:has_geometry": true, "felt:h3_index": 644722019384691861, "STATEFP": 6, "PLACEFP": 48760, "PLACENS": 2408858, "GEOID": 648760, "NAME": "Montara", "NAMELSAD": "Montara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10040503, "AWATER": 0, "INTPTLAT": 37.5482633, "INTPTLON": -122.4923623, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.548933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1165, "felt:has_geometry": true, "felt:h3_index": 644722019460746531, "STATEFP": 6, "PLACEFP": 49446, "PLACENS": 2408873, "GEOID": 649446, "NAME": "Moss Beach", "NAMELSAD": "Moss Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5794556, "AWATER": 6259, "INTPTLAT": 37.5133303, "INTPTLON": -122.4983889, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.514083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 79, "felt:has_geometry": true, "felt:h3_index": 644722019789825172, "STATEFP": 6, "PLACEFP": 54806, "PLACENS": 2411351, "GEOID": 654806, "NAME": "Pacifica", "NAMELSAD": "Pacifica city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32589428, "AWATER": 23854, "INTPTLAT": 37.6065981, "INTPTLON": -122.4772305, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.605528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 803, "felt:has_geometry": true, "felt:h3_index": 644722020206066472, "STATEFP": 6, "PLACEFP": 21936, "PLACENS": 2408056, "GEOID": 621936, "NAME": "El Granada", "NAMELSAD": "El Granada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12718809, "AWATER": 0, "INTPTLAT": 37.5141657, "INTPTLON": -122.4648032, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.514083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 94, "felt:has_geometry": true, "felt:h3_index": 644722022924517800, "STATEFP": 6, "PLACEFP": 58380, "PLACENS": 2412499, "GEOID": 658380, "NAME": "Portola Valley", "NAMELSAD": "Portola Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23524913, "AWATER": 3741, "INTPTLAT": 37.3651909, "INTPTLON": -122.2327244, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.233887, 37.365791 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1002, "felt:has_geometry": true, "felt:h3_index": 644722022967424064, "STATEFP": 6, "PLACEFP": 39318, "PLACENS": 2628746, "GEOID": 639318, "NAME": "La Honda", "NAMELSAD": "La Honda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11022981, "AWATER": 20735, "INTPTLAT": 37.317705, "INTPTLON": -122.2584296, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1262, "felt:has_geometry": true, "felt:h3_index": 644722023233673258, "STATEFP": 6, "PLACEFP": 56756, "PLACENS": 2628775, "GEOID": 656756, "NAME": "Pescadero", "NAMELSAD": "Pescadero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10426487, "AWATER": 22322, "INTPTLAT": 37.2448941, "INTPTLON": -122.378866, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.243448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1069, "felt:has_geometry": true, "felt:h3_index": 644722023500722541, "STATEFP": 6, "PLACEFP": 42384, "PLACENS": 2628753, "GEOID": 642384, "NAME": "Loma Mar", "NAMELSAD": "Loma Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4487609, "AWATER": 0, "INTPTLAT": 37.2657842, "INTPTLON": -122.3006925, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.299805, 37.265310 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 114, "felt:has_geometry": true, "felt:h3_index": 644722025354083556, "STATEFP": 6, "PLACEFP": 49278, "PLACENS": 2411162, "GEOID": 649278, "NAME": "Morgan Hill", "NAMELSAD": "Morgan Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33509082, "AWATER": 0, "INTPTLAT": 37.132495, "INTPTLON": -121.6418905, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -121.640625, 37.134045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 54, "felt:has_geometry": true, "felt:h3_index": 644722025844024467, "STATEFP": 6, "PLACEFP": 68000, "PLACENS": 2411790, "GEOID": 668000, "NAME": "San Jose", "NAMELSAD": "San Jose city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 460811249, "AWATER": 8089813, "INTPTLAT": 37.2960112, "INTPTLON": -121.8145519, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.295906 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1371, "felt:has_geometry": true, "felt:h3_index": 644722029521602098, "STATEFP": 6, "PLACEFP": 68238, "PLACENS": 2409264, "GEOID": 668238, "NAME": "San Martin", "NAMELSAD": "San Martin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30043758, "AWATER": 0, "INTPTLAT": 37.0828811, "INTPTLON": -121.5963221, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 37.081476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 34, "felt:has_geometry": true, "felt:h3_index": 644722029939997830, "STATEFP": 6, "PLACEFP": 29504, "PLACENS": 2410591, "GEOID": 629504, "NAME": "Gilroy", "NAMELSAD": "Gilroy city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42826755, "AWATER": 26658, "INTPTLAT": 37.0064066, "INTPTLON": -121.5853213, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -121.585693, 37.006939 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 350, "felt:has_geometry": true, "felt:h3_index": 644722034050507336, "STATEFP": 6, "PLACEFP": 50916, "PLACENS": 2411238, "GEOID": 650916, "NAME": "Newark", "NAMELSAD": "Newark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 36051023, "AWATER": 60526, "INTPTLAT": 37.5042533, "INTPTLON": -122.0319104, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.030640, 37.505368 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 353, "felt:has_geometry": true, "felt:h3_index": 644722034196980939, "STATEFP": 6, "PLACEFP": 26000, "PLACENS": 2410545, "GEOID": 626000, "NAME": "Fremont", "NAMELSAD": "Fremont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 202285909, "AWATER": 26263069, "INTPTLAT": 37.4944602, "INTPTLON": -121.9411495, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -121.942749, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 287, "felt:has_geometry": true, "felt:h3_index": 644722034977957618, "STATEFP": 6, "PLACEFP": 60102, "PLACENS": 2410919, "GEOID": 660102, "NAME": "Redwood City", "NAMELSAD": "Redwood City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50080209, "AWATER": 39901457, "INTPTLAT": 37.5152736, "INTPTLON": -122.2136716, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.211914, 37.514083 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 75, "felt:has_geometry": true, "felt:h3_index": 644722035104504150, "STATEFP": 6, "PLACEFP": 25338, "PLACENS": 2410534, "GEOID": 625338, "NAME": "Foster City", "NAMELSAD": "Foster City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9808766, "AWATER": 41556867, "INTPTLAT": 37.56482, "INTPTLON": -122.2507815, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.250366, 37.566351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1457, "felt:has_geometry": true, "felt:h3_index": 644722036202290506, "STATEFP": 6, "PLACEFP": 77042, "PLACENS": 2410033, "GEOID": 677042, "NAME": "Sunol", "NAMELSAD": "Sunol CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73192610, "AWATER": 864654, "INTPTLAT": 37.5859346, "INTPTLON": -121.8804556, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.583766 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 649, "felt:has_geometry": true, "felt:h3_index": 644722036724042293, "STATEFP": 6, "PLACEFP": 11964, "PLACENS": 2407987, "GEOID": 611964, "NAME": "Castro Valley", "NAMELSAD": "Castro Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43637182, "AWATER": 571600, "INTPTLAT": 37.7082758, "INTPTLON": -122.0627686, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.063599, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 827, "felt:has_geometry": true, "felt:h3_index": 644722036760926538, "STATEFP": 6, "PLACEFP": 23350, "PLACENS": 2408104, "GEOID": 623350, "NAME": "Fairview", "NAMELSAD": "Fairview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7703078, "AWATER": 61592, "INTPTLAT": 37.6776667, "INTPTLON": -122.0444339, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 37.679473 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 165, "felt:has_geometry": true, "felt:h3_index": 644722036934446370, "STATEFP": 6, "PLACEFP": 57792, "PLACENS": 2411441, "GEOID": 657792, "NAME": "Pleasanton", "NAMELSAD": "Pleasanton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62525983, "AWATER": 380831, "INTPTLAT": 37.6671852, "INTPTLON": -121.8812304, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 37.666429 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 352, "felt:has_geometry": true, "felt:h3_index": 644722037096731658, "STATEFP": 6, "PLACEFP": 81204, "PLACENS": 2412130, "GEOID": 681204, "NAME": "Union City", "NAMELSAD": "Union City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50240700, "AWATER": 0, "INTPTLAT": 37.6027593, "INTPTLON": -122.0188397, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.019653, 37.601176 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 163, "felt:has_geometry": true, "felt:h3_index": 644722037326454154, "STATEFP": 6, "PLACEFP": 33000, "PLACENS": 2410724, "GEOID": 633000, "NAME": "Hayward", "NAMELSAD": "Hayward city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 118669032, "AWATER": 47415914, "INTPTLAT": 37.626826, "INTPTLON": -122.104015, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.102051, 37.627284 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 113, "felt:has_geometry": true, "felt:h3_index": 644722037696807841, "STATEFP": 6, "PLACEFP": 69084, "PLACENS": 2411816, "GEOID": 669084, "NAME": "Santa Clara", "NAMELSAD": "Santa Clara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47336092, "AWATER": 0, "INTPTLAT": 37.3646207, "INTPTLON": -121.9679735, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -121.970215, 37.365791 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 110, "felt:has_geometry": true, "felt:h3_index": 644722037769278186, "STATEFP": 6, "PLACEFP": 77000, "PLACENS": 2412009, "GEOID": 677000, "NAME": "Sunnyvale", "NAMELSAD": "Sunnyvale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 57135716, "AWATER": 1858933, "INTPTLAT": 37.385797, "INTPTLON": -122.0263165, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 35, "felt:has_geometry": true, "felt:h3_index": 644722038262818660, "STATEFP": 6, "PLACEFP": 70280, "PLACENS": 2411832, "GEOID": 670280, "NAME": "Saratoga", "NAMELSAD": "Saratoga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33097414, "AWATER": 0, "INTPTLAT": 37.2683263, "INTPTLON": -122.0262197, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 37.269682 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 50, "felt:has_geometry": true, "felt:h3_index": 644722038378714677, "STATEFP": 6, "PLACEFP": 17610, "PLACENS": 2410278, "GEOID": 617610, "NAME": "Cupertino", "NAMELSAD": "Cupertino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29338790, "AWATER": 2520, "INTPTLAT": 37.3193996, "INTPTLON": -122.0449572, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.047119, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 864, "felt:has_geometry": true, "felt:h3_index": 644722038440985942, "STATEFP": 6, "PLACEFP": 27080, "PLACENS": 2408267, "GEOID": 627080, "NAME": "Fruitdale", "NAMELSAD": "Fruitdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 691222, "AWATER": 0, "INTPTLAT": 37.3117106, "INTPTLON": -121.9357651, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 37.313383 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 602, "felt:has_geometry": true, "felt:h3_index": 644722038498322762, "STATEFP": 6, "PLACEFP": 8968, "PLACENS": 2407924, "GEOID": 608968, "NAME": "Burbank", "NAMELSAD": "Burbank CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1082490, "AWATER": 0, "INTPTLAT": 37.3210966, "INTPTLON": -121.930608, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -121.931763, 37.322120 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 49, "felt:has_geometry": true, "felt:h3_index": 644722038532126563, "STATEFP": 6, "PLACEFP": 10345, "PLACENS": 2409971, "GEOID": 610345, "NAME": "Campbell", "NAMELSAD": "Campbell city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15749601, "AWATER": 50285, "INTPTLAT": 37.2802437, "INTPTLON": -121.953296, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -121.953735, 37.278424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1438, "felt:has_geometry": true, "felt:h3_index": 644722038728870165, "STATEFP": 6, "PLACEFP": 73906, "PLACENS": 2409994, "GEOID": 673906, "NAME": "Stanford", "NAMELSAD": "Stanford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7123691, "AWATER": 117653, "INTPTLAT": 37.4269331, "INTPTLON": -122.1677411, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.167969, 37.426888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 53, "felt:has_geometry": true, "felt:h3_index": 644722038782120448, "STATEFP": 6, "PLACEFP": 55282, "PLACENS": 2411362, "GEOID": 655282, "NAME": "Palo Alto", "NAMELSAD": "Palo Alto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62291998, "AWATER": 4940291, "INTPTLAT": 37.39652, "INTPTLON": -122.1430878, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.140503, 37.396346 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 71, "felt:has_geometry": true, "felt:h3_index": 644722038848756371, "STATEFP": 6, "PLACEFP": 3092, "PLACENS": 2411651, "GEOID": 603092, "NAME": "Atherton", "NAMELSAD": "Atherton town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12991701, "AWATER": 82320, "INTPTLAT": 37.4570721, "INTPTLON": -122.2010583, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 37.457418 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1199, "felt:has_geometry": true, "felt:h3_index": 644722038891696553, "STATEFP": 6, "PLACEFP": 51840, "PLACENS": 2408940, "GEOID": 651840, "NAME": "North Fair Oaks", "NAMELSAD": "North Fair Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3097640, "AWATER": 0, "INTPTLAT": 37.475426, "INTPTLON": -122.2034589, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1556, "felt:has_geometry": true, "felt:h3_index": 644722038909353122, "STATEFP": 6, "PLACEFP": 84536, "PLACENS": 2409555, "GEOID": 684536, "NAME": "West Menlo Park", "NAMELSAD": "West Menlo Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1256177, "AWATER": 0, "INTPTLAT": 37.4338243, "INTPTLON": -122.2034195, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 37.435612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 111, "felt:has_geometry": true, "felt:h3_index": 644722039051696876, "STATEFP": 6, "PLACEFP": 49670, "PLACENS": 2411186, "GEOID": 649670, "NAME": "Mountain View", "NAMELSAD": "Mountain View city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30971479, "AWATER": 719719, "INTPTLAT": 37.399686, "INTPTLON": -122.0792687, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.400710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 74, "felt:has_geometry": true, "felt:h3_index": 644722039111107317, "STATEFP": 6, "PLACEFP": 20956, "PLACENS": 2410389, "GEOID": 620956, "NAME": "East Palo Alto", "NAMELSAD": "East Palo Alto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6547354, "AWATER": 298782, "INTPTLAT": 37.4677798, "INTPTLON": -122.1325502, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 37.466139 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 92, "felt:has_geometry": true, "felt:h3_index": 644722039132004736, "STATEFP": 6, "PLACEFP": 46870, "PLACENS": 2411079, "GEOID": 646870, "NAME": "Menlo Park", "NAMELSAD": "Menlo Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25873981, "AWATER": 19152744, "INTPTLAT": 37.4797313, "INTPTLON": -122.1480548, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.145996, 37.479217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 51, "felt:has_geometry": true, "felt:h3_index": 644722039282742948, "STATEFP": 6, "PLACEFP": 43294, "PLACENS": 2412916, "GEOID": 643294, "NAME": "Los Altos Hills", "NAMELSAD": "Los Altos Hills town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23483096, "AWATER": 0, "INTPTLAT": 37.3668075, "INTPTLON": -122.1386496, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.140503, 37.365791 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 997, "felt:has_geometry": true, "felt:h3_index": 644722039425784414, "STATEFP": 6, "PLACEFP": 39094, "PLACENS": 2628745, "GEOID": 639094, "NAME": "Ladera", "NAMELSAD": "Ladera CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1113098, "AWATER": 0, "INTPTLAT": 37.3998746, "INTPTLON": -122.1989712, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.200928, 37.400710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 112, "felt:has_geometry": true, "felt:h3_index": 644722039514080468, "STATEFP": 6, "PLACEFP": 43280, "PLACENS": 2410876, "GEOID": 643280, "NAME": "Los Altos", "NAMELSAD": "Los Altos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16938030, "AWATER": 0, "INTPTLAT": 37.3684313, "INTPTLON": -122.09657, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.096558, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1083, "felt:has_geometry": true, "felt:h3_index": 644722039580486314, "STATEFP": 6, "PLACEFP": 44378, "PLACENS": 2408147, "GEOID": 644378, "NAME": "Loyola", "NAMELSAD": "Loyola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3600984, "AWATER": 0, "INTPTLAT": 37.3503251, "INTPTLON": -122.0979729, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.096558, 37.348326 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 508, "felt:has_geometry": true, "felt:h3_index": 644722040331327337, "STATEFP": 6, "PLACEFP": 1458, "PLACENS": 2407736, "GEOID": 601458, "NAME": "Alum Rock", "NAMELSAD": "Alum Rock CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2250531, "AWATER": 0, "INTPTLAT": 37.3694076, "INTPTLON": -121.8238087, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -121.821899, 37.370157 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 768, "felt:has_geometry": true, "felt:h3_index": 644722040360969481, "STATEFP": 6, "PLACEFP": 20598, "PLACENS": 2408705, "GEOID": 620598, "NAME": "East Foothills", "NAMELSAD": "East Foothills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5508601, "AWATER": 0, "INTPTLAT": 37.3826072, "INTPTLON": -121.8137493, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 37.383253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 411, "felt:has_geometry": true, "felt:h3_index": 644722040511955312, "STATEFP": 6, "PLACEFP": 47766, "PLACENS": 2411113, "GEOID": 647766, "NAME": "Milpitas", "NAMELSAD": "Milpitas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34915447, "AWATER": 99377, "INTPTLAT": 37.4331408, "INTPTLON": -121.8909237, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -121.893311, 37.431251 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1166, "felt:has_geometry": true, "felt:h3_index": 644722059118655296, "STATEFP": 6, "PLACEFP": 49488, "PLACENS": 2408874, "GEOID": 649488, "NAME": "Moss Landing", "NAMELSAD": "Moss Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1016538, "AWATER": 544792, "INTPTLAT": 36.8053889, "INTPTLON": -121.786577, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -121.788940, 36.804887 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1239, "felt:has_geometry": true, "felt:h3_index": 644722059283699598, "STATEFP": 6, "PLACEFP": 55048, "PLACENS": 2583104, "GEOID": 655048, "NAME": "Pajaro Dunes", "NAMELSAD": "Pajaro Dunes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6640875, "AWATER": 62511, "INTPTLAT": 36.8682123, "INTPTLON": -121.8056971, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -121.805420, 36.866438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 806, "felt:has_geometry": true, "felt:h3_index": 644722059465759453, "STATEFP": 6, "PLACEFP": 22034, "PLACENS": 2408075, "GEOID": 622034, "NAME": "Elkhorn", "NAMELSAD": "Elkhorn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12440882, "AWATER": 58180, "INTPTLAT": 36.8106726, "INTPTLON": -121.7186988, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1037, "felt:has_geometry": true, "felt:h3_index": 644722059554376348, "STATEFP": 6, "PLACEFP": 40592, "PLACENS": 2408578, "GEOID": 640592, "NAME": "Las Lomas", "NAMELSAD": "Las Lomas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2685684, "AWATER": 0, "INTPTLAT": 36.8688131, "INTPTLON": -121.7316111, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -121.734009, 36.870832 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 650, "felt:has_geometry": true, "felt:h3_index": 644722059939718814, "STATEFP": 6, "PLACEFP": 11978, "PLACENS": 2407988, "GEOID": 611978, "NAME": "Castroville", "NAMELSAD": "Castroville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646281, "AWATER": 0, "INTPTLAT": 36.764838, "INTPTLON": -121.7533738, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -121.755981, 36.765292 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 521, "felt:has_geometry": true, "felt:h3_index": 644722061849957702, "STATEFP": 6, "PLACEFP": 2812, "PLACENS": 2407764, "GEOID": 602812, "NAME": "Aromas", "NAMELSAD": "Aromas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12263807, "AWATER": 27254, "INTPTLAT": 36.8747551, "INTPTLON": -121.6307316, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 36.875227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 91, "felt:has_geometry": true, "felt:h3_index": 644722062163040654, "STATEFP": 6, "PLACEFP": 68014, "PLACENS": 2411792, "GEOID": 668014, "NAME": "San Juan Bautista", "NAMELSAD": "San Juan Bautista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2032272, "AWATER": 1166, "INTPTLAT": 36.8451322, "INTPTLON": -121.5369493, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -121.536255, 36.844461 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 510, "felt:has_geometry": true, "felt:h3_index": 644722062342416396, "STATEFP": 6, "PLACEFP": 1651, "PLACENS": 2407740, "GEOID": 601651, "NAME": "Amesti", "NAMELSAD": "Amesti CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7599656, "AWATER": 166652, "INTPTLAT": 36.9594832, "INTPTLON": -121.7817391, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -121.783447, 36.958671 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 700, "felt:has_geometry": true, "felt:h3_index": 644722062381154332, "STATEFP": 6, "PLACEFP": 16434, "PLACENS": 2407664, "GEOID": 616434, "NAME": "Corralitos", "NAMELSAD": "Corralitos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23065281, "AWATER": 37138, "INTPTLAT": 36.9842301, "INTPTLON": -121.7894324, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -121.788940, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 858, "felt:has_geometry": true, "felt:h3_index": 644722062407152346, "STATEFP": 6, "PLACEFP": 25576, "PLACENS": 2408259, "GEOID": 625576, "NAME": "Freedom", "NAMELSAD": "Freedom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2935623, "AWATER": 0, "INTPTLAT": 36.9402544, "INTPTLON": -121.795246, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -121.794434, 36.941111 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 726, "felt:has_geometry": true, "felt:h3_index": 644722062487377244, "STATEFP": 6, "PLACEFP": 18153, "PLACENS": 2408643, "GEOID": 618153, "NAME": "Day Valley", "NAMELSAD": "Day Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47922347, "AWATER": 0, "INTPTLAT": 37.0254391, "INTPTLON": -121.8559314, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -121.854858, 37.024484 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 471, "felt:has_geometry": true, "felt:h3_index": 644722062904934765, "STATEFP": 6, "PLACEFP": 83668, "PLACENS": 2412194, "GEOID": 683668, "NAME": "Watsonville", "NAMELSAD": "Watsonville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17576477, "AWATER": 253182, "INTPTLAT": 36.9235873, "INTPTLON": -121.7723952, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -121.772461, 36.923548 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1328, "felt:has_geometry": true, "felt:h3_index": 644722063018669962, "STATEFP": 6, "PLACEFP": 60928, "PLACENS": 2409173, "GEOID": 660928, "NAME": "Rio del Mar", "NAMELSAD": "Rio del Mar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7770134, "AWATER": 4173062, "INTPTLAT": 36.9578994, "INTPTLON": -121.8848228, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 36.958671 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 516, "felt:has_geometry": true, "felt:h3_index": 644722063034364304, "STATEFP": 6, "PLACEFP": 2382, "PLACENS": 2407751, "GEOID": 602382, "NAME": "Aptos Hills-Larkin Valley", "NAMELSAD": "Aptos Hills-Larkin Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23984497, "AWATER": 85462, "INTPTLAT": 36.9634918, "INTPTLON": -121.8352137, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -121.832886, 36.963060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1034, "felt:has_geometry": true, "felt:h3_index": 644722063071969315, "STATEFP": 6, "PLACEFP": 40508, "PLACENS": 2583053, "GEOID": 640508, "NAME": "La Selva Beach", "NAMELSAD": "La Selva Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13718609, "AWATER": 0, "INTPTLAT": 36.9273747, "INTPTLON": -121.8444038, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -121.843872, 36.927939 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 952, "felt:has_geometry": true, "felt:h3_index": 644722063188698315, "STATEFP": 6, "PLACEFP": 36613, "PLACENS": 2408427, "GEOID": 636613, "NAME": "Interlaken", "NAMELSAD": "Interlaken CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25391065, "AWATER": 1021066, "INTPTLAT": 36.9506026, "INTPTLON": -121.7375192, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -121.739502, 36.949892 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1238, "felt:has_geometry": true, "felt:h3_index": 644722063213155224, "STATEFP": 6, "PLACEFP": 55044, "PLACENS": 2409018, "GEOID": 655044, "NAME": "Pajaro", "NAMELSAD": "Pajaro CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2406305, "AWATER": 0, "INTPTLAT": 36.9016589, "INTPTLON": -121.7417272, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -121.739502, 36.901587 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 308, "felt:has_geometry": true, "felt:h3_index": 644722063639663686, "STATEFP": 6, "PLACEFP": 45778, "PLACENS": 2411035, "GEOID": 645778, "NAME": "Marina", "NAMELSAD": "Marina city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23070824, "AWATER": 2333714, "INTPTLAT": 36.6802563, "INTPTLON": -121.7893682, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -121.788940, 36.681636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 309, "felt:has_geometry": true, "felt:h3_index": 644722064084048993, "STATEFP": 6, "PLACEFP": 65112, "PLACENS": 2411806, "GEOID": 665112, "NAME": "Sand City", "NAMELSAD": "Sand City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1416996, "AWATER": 6121647, "INTPTLAT": 36.6217704, "INTPTLON": -121.8476681, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -121.849365, 36.619937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 310, "felt:has_geometry": true, "felt:h3_index": 644722064175205187, "STATEFP": 6, "PLACEFP": 70742, "PLACENS": 2411853, "GEOID": 670742, "NAME": "Seaside", "NAMELSAD": "Seaside city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23111409, "AWATER": 355497, "INTPTLAT": 36.6250576, "INTPTLON": -121.8178044, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -121.816406, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1302, "felt:has_geometry": true, "felt:h3_index": 644722065742801485, "STATEFP": 6, "PLACEFP": 58870, "PLACENS": 2409105, "GEOID": 658870, "NAME": "Prunedale", "NAMELSAD": "Prunedale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 119299815, "AWATER": 368885, "INTPTLAT": 36.8117473, "INTPTLON": -121.6549596, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -121.657104, 36.813683 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 408, "felt:has_geometry": true, "felt:h3_index": 644722066089956558, "STATEFP": 6, "PLACEFP": 64224, "PLACENS": 2411768, "GEOID": 664224, "NAME": "Salinas", "NAMELSAD": "Salinas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60903234, "AWATER": 83122, "INTPTLAT": 36.6902168, "INTPTLON": -121.6337934, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -121.635132, 36.690446 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 585, "felt:has_geometry": true, "felt:h3_index": 644722066297886637, "STATEFP": 6, "PLACEFP": 7578, "PLACENS": 2407887, "GEOID": 607578, "NAME": "Boronda", "NAMELSAD": "Boronda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1486322, "AWATER": 0, "INTPTLAT": 36.6946324, "INTPTLON": -121.6745116, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -121.673584, 36.694851 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 474, "felt:has_geometry": true, "felt:h3_index": 644722094550163509, "STATEFP": 6, "PLACEFP": 67000, "PLACENS": 2411786, "GEOID": 667000, "NAME": "San Francisco", "NAMELSAD": "San Francisco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 121045788, "AWATER": 479608103, "INTPTLAT": 37.7272391, "INTPTLON": -123.0322294, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -123.030396, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 160, "felt:has_geometry": true, "felt:h3_index": 644722145110743462, "STATEFP": 6, "PLACEFP": 61068, "PLACENS": 2410962, "GEOID": 661068, "NAME": "Riverbank", "NAMELSAD": "Riverbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12201597, "AWATER": 68157, "INTPTLAT": 37.7260221, "INTPTLON": -120.9448404, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -120.942993, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 266, "felt:has_geometry": true, "felt:h3_index": 644722145177797193, "STATEFP": 6, "PLACEFP": 22790, "PLACENS": 2410453, "GEOID": 622790, "NAME": "Escalon", "NAMELSAD": "Escalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5899272, "AWATER": 174504, "INTPTLAT": 37.7913363, "INTPTLON": -120.9996428, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -120.997925, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 734, "felt:has_geometry": true, "felt:h3_index": 644722145209887770, "STATEFP": 6, "PLACEFP": 18695, "PLACENS": 2408652, "GEOID": 618695, "NAME": "Del Rio", "NAMELSAD": "Del Rio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5173472, "AWATER": 136437, "INTPTLAT": 37.745907, "INTPTLON": -121.0092928, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -121.008911, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 85, "felt:has_geometry": true, "felt:h3_index": 644722145314416973, "STATEFP": 6, "PLACEFP": 52694, "PLACENS": 2411291, "GEOID": 652694, "NAME": "Oakdale", "NAMELSAD": "Oakdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16121384, "AWATER": 100699, "INTPTLAT": 37.7616661, "INTPTLON": -120.8464343, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -120.844116, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 267, "felt:has_geometry": true, "felt:h3_index": 644722146725976930, "STATEFP": 6, "PLACEFP": 61026, "PLACENS": 2410957, "GEOID": 661026, "NAME": "Ripon", "NAMELSAD": "Ripon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13790583, "AWATER": 499649, "INTPTLAT": 37.7420067, "INTPTLON": -121.1303729, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -121.129761, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 247, "felt:has_geometry": true, "felt:h3_index": 644722146773482422, "STATEFP": 6, "PLACEFP": 45484, "PLACENS": 2411024, "GEOID": 645484, "NAME": "Manteca", "NAMELSAD": "Manteca city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 55477593, "AWATER": 61889, "INTPTLAT": 37.7928386, "INTPTLON": -121.2260765, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -121.228638, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 773, "felt:has_geometry": true, "felt:h3_index": 644722147748173379, "STATEFP": 6, "PLACEFP": 20907, "PLACENS": 2408714, "GEOID": 620907, "NAME": "East Oakdale", "NAMELSAD": "East Oakdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13966924, "AWATER": 386258, "INTPTLAT": 37.7838665, "INTPTLON": -120.7986313, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -120.800171, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 830, "felt:has_geometry": true, "felt:h3_index": 644722148368832842, "STATEFP": 6, "PLACEFP": 23630, "PLACENS": 2408117, "GEOID": 623630, "NAME": "Farmington", "NAMELSAD": "Farmington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6583893, "AWATER": 0, "INTPTLAT": 37.9298676, "INTPTLON": -121.0043672, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.931200 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1517, "felt:has_geometry": true, "felt:h3_index": 644722149102032782, "STATEFP": 6, "PLACEFP": 81792, "PLACENS": 2583174, "GEOID": 681792, "NAME": "Valley Home", "NAMELSAD": "Valley Home CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2977464, "AWATER": 0, "INTPTLAT": 37.8272405, "INTPTLON": -120.9143428, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 37.827141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 708, "felt:has_geometry": true, "felt:h3_index": 644722149397808885, "STATEFP": 6, "PLACEFP": 16762, "PLACENS": 2628723, "GEOID": 616762, "NAME": "Cowan", "NAMELSAD": "Cowan CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 365090, "AWATER": 0, "INTPTLAT": 37.5601052, "INTPTLON": -120.9887874, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -120.986938, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1351, "felt:has_geometry": true, "felt:h3_index": 644722149440416667, "STATEFP": 6, "PLACEFP": 63168, "PLACENS": 2628786, "GEOID": 663168, "NAME": "Rouse", "NAMELSAD": "Rouse CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 617334, "AWATER": 0, "INTPTLAT": 37.6195133, "INTPTLON": -121.0083705, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -121.008911, 37.618583 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1557, "felt:has_geometry": true, "felt:h3_index": 644722149462787781, "STATEFP": 6, "PLACEFP": 84578, "PLACENS": 2409556, "GEOID": 684578, "NAME": "West Modesto", "NAMELSAD": "West Modesto CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3575972, "AWATER": 37065, "INTPTLAT": 37.6175188, "INTPTLON": -121.0328278, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -121.030884, 37.618583 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 490, "felt:has_geometry": true, "felt:h3_index": 644722149478193333, "STATEFP": 6, "PLACEFP": 535, "PLACENS": 2583084, "GEOID": 600535, "NAMELSAD": "Airport CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 451729, "AWATER": 0, "INTPTLAT": 37.6338833, "INTPTLON": -120.9720056, "NAME": "Airport,Bystrom", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -120.970459, 37.635985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 162, "felt:has_geometry": true, "felt:h3_index": 644722149487092378, "STATEFP": 6, "PLACEFP": 48354, "PLACENS": 2411130, "GEOID": 648354, "NAME": "Modesto", "NAMELSAD": "Modesto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 111620408, "AWATER": 4740717, "INTPTLAT": 37.6375332, "INTPTLON": -121.0030494, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.635985 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 592, "felt:has_geometry": true, "felt:h3_index": 644722149510399568, "STATEFP": 6, "PLACEFP": 8172, "PLACENS": 2407902, "GEOID": 608172, "NAME": "Bret Harte", "NAMELSAD": "Bret Harte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1425057, "AWATER": 0, "INTPTLAT": 37.602077800000007, "INTPTLON": -121.0043804, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -121.003418, 37.601176 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1333, "felt:has_geometry": true, "felt:h3_index": 644722149531867851, "STATEFP": 6, "PLACEFP": 61106, "PLACENS": 2409187, "GEOID": 661106, "NAME": "Riverdale Park", "NAMELSAD": "Riverdale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3765433, "AWATER": 89580, "INTPTLAT": 37.6022232, "INTPTLON": -121.0394951, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -121.041870, 37.601176 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1247, "felt:has_geometry": true, "felt:h3_index": 644722149538316290, "STATEFP": 6, "PLACEFP": 55728, "PLACENS": 2628771, "GEOID": 655728, "NAMELSAD": "Parklawn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 345236, "AWATER": 0, "INTPTLAT": 37.607091, "INTPTLON": -120.9803855, "NAME": "Parklawn,Ceres", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 37.605528 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 82, "felt:has_geometry": true, "felt:h3_index": 644722149615737250, "STATEFP": 6, "PLACEFP": 34904, "PLACENS": 2410804, "GEOID": 634904, "NAME": "Hughson", "NAMELSAD": "Hughson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4937411, "AWATER": 0, "INTPTLAT": 37.6021348, "INTPTLON": -120.8660044, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -120.866089, 37.601176 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 819, "felt:has_geometry": true, "felt:h3_index": 644722149738849507, "STATEFP": 6, "PLACEFP": 22622, "PLACENS": 2408081, "GEOID": 622622, "NAME": "Empire", "NAMELSAD": "Empire CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3026223, "AWATER": 0, "INTPTLAT": 37.6430569, "INTPTLON": -120.9070385, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -120.904541, 37.644685 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1158, "felt:has_geometry": true, "felt:h3_index": 644722149867435827, "STATEFP": 6, "PLACEFP": 48916, "PLACENS": 2628759, "GEOID": 648916, "NAME": "Monterey Park Tract", "NAMELSAD": "Monterey Park Tract CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 122388, "AWATER": 0, "INTPTLAT": 37.5268136, "INTPTLON": -121.0114871, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -121.008911, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 987, "felt:has_geometry": true, "felt:h3_index": 644722150161598373, "STATEFP": 6, "PLACEFP": 38422, "PLACENS": 2408477, "GEOID": 638422, "NAME": "Keyes", "NAMELSAD": "Keyes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4060586, "AWATER": 0, "INTPTLAT": 37.557308, "INTPTLON": -120.9113747, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -120.910034, 37.557642 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1358, "felt:has_geometry": true, "felt:h3_index": 644722150813795148, "STATEFP": 6, "PLACEFP": 64210, "PLACENS": 2409237, "GEOID": 664210, "NAME": "Salida", "NAMELSAD": "Salida CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5741092, "AWATER": 7060, "INTPTLAT": 37.7091233, "INTPTLON": -121.0848247, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -121.085815, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 892, "felt:has_geometry": true, "felt:h3_index": 644722151006321236, "STATEFP": 6, "PLACEFP": 30882, "PLACENS": 2408324, "GEOID": 630882, "NAME": "Grayson", "NAMELSAD": "Grayson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 477325, "AWATER": 0, "INTPTLAT": 37.564577, "INTPTLON": -121.1800503, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 37.566351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 161, "felt:has_geometry": true, "felt:h3_index": 644722152279216947, "STATEFP": 6, "PLACEFP": 83612, "PLACENS": 2412192, "GEOID": 683612, "NAME": "Waterford", "NAMELSAD": "Waterford city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6108059, "AWATER": 63331, "INTPTLAT": 37.6426846, "INTPTLON": -120.754152, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -120.756226, 37.644685 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 922, "felt:has_geometry": true, "felt:h3_index": 644722152346298915, "STATEFP": 6, "PLACEFP": 33504, "PLACENS": 2408380, "GEOID": 633504, "NAME": "Hickman", "NAMELSAD": "Hickman CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 907866, "AWATER": 0, "INTPTLAT": 37.6193163, "INTPTLON": -120.7512187, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -120.750732, 37.618583 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1053, "felt:has_geometry": true, "felt:h3_index": 644722153686720537, "STATEFP": 6, "PLACEFP": 41558, "PLACENS": 2408612, "GEOID": 641558, "NAME": "Lincoln Village", "NAMELSAD": "Lincoln Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1903792, "AWATER": 0, "INTPTLAT": 38.0054709, "INTPTLON": -121.3338427, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -121.333008, 38.004820 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1162, "felt:has_geometry": true, "felt:h3_index": 644722153866871020, "STATEFP": 6, "PLACEFP": 49180, "PLACENS": 2408866, "GEOID": 649180, "NAME": "Morada", "NAMELSAD": "Morada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7721138, "AWATER": 18742, "INTPTLAT": 38.0386262, "INTPTLON": -121.2458916, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 38.039439 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 705, "felt:has_geometry": true, "felt:h3_index": 644722154141826058, "STATEFP": 6, "PLACEFP": 16651, "PLACENS": 2407672, "GEOID": 616651, "NAME": "Country Club", "NAMELSAD": "Country Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4964750, "AWATER": 438737, "INTPTLAT": 37.9680363, "INTPTLON": -121.3404823, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -121.338501, 37.970185 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 268, "felt:has_geometry": true, "felt:h3_index": 644722154173534857, "STATEFP": 6, "PLACEFP": 75000, "PLACENS": 2411987, "GEOID": 675000, "NAME": "Stockton", "NAMELSAD": "Stockton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 161592699, "AWATER": 7956195, "INTPTLAT": 37.9763417, "INTPTLON": -121.3133043, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 37.974515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 527, "felt:has_geometry": true, "felt:h3_index": 644722154408420564, "STATEFP": 6, "PLACEFP": 3209, "PLACENS": 2407781, "GEOID": 603209, "NAME": "August", "NAMELSAD": "August CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3252575, "AWATER": 0, "INTPTLAT": 37.9796439, "INTPTLON": -121.2625104, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -121.261597, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1477, "felt:has_geometry": true, "felt:h3_index": 644722154726546531, "STATEFP": 6, "PLACEFP": 78232, "PLACENS": 2628794, "GEOID": 678232, "NAME": "Terminous", "NAMELSAD": "Terminous CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2531348, "AWATER": 0, "INTPTLAT": 38.1152563, "INTPTLON": -121.4895583, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -121.486816, 38.117272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1525, "felt:has_geometry": true, "felt:h3_index": 644722155952659043, "STATEFP": 6, "PLACEFP": 82562, "PLACENS": 2583176, "GEOID": 682562, "NAME": "Victor", "NAMELSAD": "Victor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3270555, "AWATER": 0, "INTPTLAT": 38.1384653, "INTPTLON": -121.1987603, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 38.138877 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1064, "felt:has_geometry": true, "felt:h3_index": 644722156240425236, "STATEFP": 6, "PLACEFP": 42104, "PLACENS": 2408625, "GEOID": 642104, "NAME": "Lockeford", "NAMELSAD": "Lockeford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21603060, "AWATER": 120019, "INTPTLAT": 38.1491282, "INTPTLON": -121.1543094, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -121.151733, 38.147518 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1542, "felt:has_geometry": true, "felt:h3_index": 644722156378857802, "STATEFP": 6, "PLACEFP": 83626, "PLACENS": 2628798, "GEOID": 683626, "NAME": "Waterloo", "NAMELSAD": "Waterloo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14076382, "AWATER": 0, "INTPTLAT": 38.0364521, "INTPTLON": -121.1845547, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -121.184692, 38.035112 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1594, "felt:has_geometry": true, "felt:h3_index": 644722156921635881, "STATEFP": 6, "PLACEFP": 86230, "PLACENS": 2629783, "GEOID": 686230, "NAME": "Woodbridge", "NAMELSAD": "Woodbridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7806489, "AWATER": 276560, "INTPTLAT": 38.1720647, "INTPTLON": -121.3089147, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 38.173433 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 692, "felt:has_geometry": true, "felt:h3_index": 644722157148125033, "STATEFP": 6, "PLACEFP": 14708, "PLACENS": 2582980, "GEOID": 614708, "NAME": "Collierville", "NAMELSAD": "Collierville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17080884, "AWATER": 25477, "INTPTLAT": 38.2128313, "INTPTLON": -121.2649723, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -121.267090, 38.212288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 484, "felt:has_geometry": true, "felt:h3_index": 644722157180062342, "STATEFP": 6, "PLACEFP": 156, "PLACENS": 2629758, "GEOID": 600156, "NAME": "Acampo", "NAMELSAD": "Acampo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2428474, "AWATER": 0, "INTPTLAT": 38.1735286, "INTPTLON": -121.2798915, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -121.278076, 38.173433 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 246, "felt:has_geometry": true, "felt:h3_index": 644722157713272068, "STATEFP": 6, "PLACEFP": 42202, "PLACENS": 2410854, "GEOID": 642202, "NAME": "Lodi", "NAMELSAD": "Lodi city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35327015, "AWATER": 581028, "INTPTLAT": 38.1216095, "INTPTLON": -121.2907652, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -121.289062, 38.121593 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 860, "felt:has_geometry": true, "felt:h3_index": 644722158255329873, "STATEFP": 6, "PLACEFP": 26028, "PLACENS": 2408261, "GEOID": 626028, "NAME": "French Camp", "NAMELSAD": "French Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8013766, "AWATER": 0, "INTPTLAT": 37.8660235, "INTPTLON": -121.2741543, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -121.272583, 37.866181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1462, "felt:has_geometry": true, "felt:h3_index": 644722158308899910, "STATEFP": 6, "PLACEFP": 77595, "PLACENS": 2410048, "GEOID": 677595, "NAME": "Taft Mosswood", "NAMELSAD": "Taft Mosswood CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1205538, "AWATER": 33968, "INTPTLAT": 37.9119543, "INTPTLON": -121.282166, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -121.283569, 37.913867 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 245, "felt:has_geometry": true, "felt:h3_index": 644722158472550738, "STATEFP": 6, "PLACEFP": 40704, "PLACENS": 2411633, "GEOID": 640704, "NAME": "Lathrop", "NAMELSAD": "Lathrop city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51349617, "AWATER": 3058352, "INTPTLAT": 37.8086656, "INTPTLON": -121.3177645, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -121.316528, 37.809784 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 748, "felt:has_geometry": true, "felt:h3_index": 644722159723681665, "STATEFP": 6, "PLACEFP": 19339, "PLACENS": 2408672, "GEOID": 619339, "NAME": "Discovery Bay", "NAMELSAD": "Discovery Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14482205, "AWATER": 3514422, "INTPTLAT": 37.9081313, "INTPTLON": -121.5971956, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -121.596680, 37.909534 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1264, "felt:has_geometry": true, "felt:h3_index": 644722160350871770, "STATEFP": 6, "PLACEFP": 56798, "PLACENS": 2583111, "GEOID": 656798, "NAME": "Peters", "NAMELSAD": "Peters CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6542371, "AWATER": 15743, "INTPTLAT": 37.9761571, "INTPTLON": -121.0438088, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -121.041870, 37.974515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1056, "felt:has_geometry": true, "felt:h3_index": 644722160485404756, "STATEFP": 6, "PLACEFP": 41670, "PLACENS": 2408614, "GEOID": 641670, "NAME": "Linden", "NAMELSAD": "Linden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19189037, "AWATER": 134701, "INTPTLAT": 38.0181401, "INTPTLON": -121.1015623, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -121.102295, 38.017804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 870, "felt:has_geometry": true, "felt:h3_index": 644722160764737934, "STATEFP": 6, "PLACEFP": 28182, "PLACENS": 2408275, "GEOID": 628182, "NAME": "Garden Acres", "NAMELSAD": "Garden Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6693775, "AWATER": 0, "INTPTLAT": 37.9636972, "INTPTLON": -121.2296097, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -121.228638, 37.965854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 978, "felt:has_geometry": true, "felt:h3_index": 644722160798555046, "STATEFP": 6, "PLACEFP": 38065, "PLACENS": 2408471, "GEOID": 638065, "NAME": "Kennedy", "NAMELSAD": "Kennedy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3139084, "AWATER": 0, "INTPTLAT": 37.9290417, "INTPTLON": -121.2457834, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 37.931200 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 671, "felt:has_geometry": true, "felt:h3_index": 644722162245424841, "STATEFP": 6, "PLACEFP": 13182, "PLACENS": 2408028, "GEOID": 613182, "NAME": "Chinese Camp", "NAMELSAD": "Chinese Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2325639, "AWATER": 6504, "INTPTLAT": 37.8702154, "INTPTLON": -120.444225, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 37.870517 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 698, "felt:has_geometry": true, "felt:h3_index": 644722163433479414, "STATEFP": 6, "PLACEFP": 16210, "PLACENS": 2407658, "GEOID": 616210, "NAME": "Copperopolis", "NAMELSAD": "Copperopolis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 40377349, "AWATER": 63065, "INTPTLAT": 37.9653875, "INTPTLON": -120.6409728, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -120.640869, 37.965854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 783, "felt:has_geometry": true, "felt:h3_index": 644722164500125035, "STATEFP": 6, "PLACEFP": 21188, "PLACENS": 2408039, "GEOID": 621188, "NAME": "East Sonora", "NAMELSAD": "East Sonora CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334625, "AWATER": 13419, "INTPTLAT": 37.9742408, "INTPTLON": -120.3380353, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -120.338745, 37.974515 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1421, "felt:has_geometry": true, "felt:h3_index": 644722164767589404, "STATEFP": 6, "PLACEFP": 72772, "PLACENS": 2408758, "GEOID": 672772, "NAME": "Soulsbyville", "NAMELSAD": "Soulsbyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7796211, "AWATER": 15737, "INTPTLAT": 37.9912891, "INTPTLON": -120.2627906, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -120.261841, 37.991834 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1501, "felt:has_geometry": true, "felt:h3_index": 644722164818028251, "STATEFP": 6, "PLACEFP": 80763, "PLACENS": 2409362, "GEOID": 680763, "NAME": "Tuolumne City", "NAMELSAD": "Tuolumne City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6101298, "AWATER": 7243, "INTPTLAT": 37.9626517, "INTPTLON": -120.2419855, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -120.239868, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1504, "felt:has_geometry": true, "felt:h3_index": 644722165472642858, "STATEFP": 6, "PLACEFP": 80896, "PLACENS": 2583171, "GEOID": 680896, "NAME": "Tuttletown", "NAMELSAD": "Tuttletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19038413, "AWATER": 16981, "INTPTLAT": 38.0104362, "INTPTLON": -120.4412463, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 38.009148 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 694, "felt:has_geometry": true, "felt:h3_index": 644722165883684261, "STATEFP": 6, "PLACEFP": 14904, "PLACENS": 2407648, "GEOID": 614904, "NAME": "Columbia", "NAMELSAD": "Columbia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15439975, "AWATER": 47252, "INTPTLAT": 38.0312272, "INTPTLON": -120.4133976, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -120.415649, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 959, "felt:has_geometry": true, "felt:h3_index": 644722166217217779, "STATEFP": 6, "PLACEFP": 37106, "PLACENS": 2408437, "GEOID": 637106, "NAME": "Jamestown", "NAMELSAD": "Jamestown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7776484, "AWATER": 5375, "INTPTLAT": 37.9582289, "INTPTLON": -120.4070713, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -120.404663, 37.957192 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 196, "felt:has_geometry": true, "felt:h3_index": 644722166269044995, "STATEFP": 6, "PLACEFP": 72674, "PLACENS": 2411930, "GEOID": 672674, "NAME": "Sonora", "NAMELSAD": "Sonora city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8190966, "AWATER": 35507, "INTPTLAT": 37.9817072, "INTPTLON": -120.3827545, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -120.382690, 37.983175 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1000, "felt:has_geometry": true, "felt:h3_index": 644722166574720330, "STATEFP": 6, "PLACEFP": 39164, "PLACENS": 2805905, "GEOID": 639164, "NAME": "La Grange", "NAMELSAD": "La Grange CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 241845, "AWATER": 0, "INTPTLAT": 37.6634557, "INTPTLON": -120.4631472, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -120.465088, 37.662081 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1010, "felt:has_geometry": true, "felt:h3_index": 644722167330780213, "STATEFP": 6, "PLACEFP": 39484, "PLACENS": 2627934, "GEOID": 639484, "NAME": "Lake Don Pedro", "NAMELSAD": "Lake Don Pedro CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 47708999, "AWATER": 3331031, "INTPTLAT": 37.6414202, "INTPTLON": -120.3643599, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -120.366211, 37.640335 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1231, "felt:has_geometry": true, "felt:h3_index": 644722167714212917, "STATEFP": 6, "PLACEFP": 53987, "PLACENS": 2805247, "GEOID": 653987, "NAME": "Orange Blossom", "NAMELSAD": "Orange Blossom CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9892153, "AWATER": 396333, "INTPTLAT": 37.8147224, "INTPTLON": -120.6873321, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -120.684814, 37.814124 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 993, "felt:has_geometry": true, "felt:h3_index": 644722167744399584, "STATEFP": 6, "PLACEFP": 38786, "PLACENS": 2805904, "GEOID": 638786, "NAME": "Knights Ferry", "NAMELSAD": "Knights Ferry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 414507, "AWATER": 26505, "INTPTLAT": 37.8211519, "INTPTLON": -120.6690888, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -120.668335, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 905, "felt:has_geometry": true, "felt:h3_index": 644722169033053790, "STATEFP": 6, "PLACEFP": 31372, "PLACENS": 2628856, "GEOID": 631372, "NAME": "Groveland", "NAMELSAD": "Groveland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24795516, "AWATER": 15061, "INTPTLAT": 37.831966, "INTPTLON": -120.2415805, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -120.239868, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 704, "felt:has_geometry": true, "felt:h3_index": 644722169544468808, "STATEFP": 6, "PLACEFP": 16644, "PLACENS": 2582984, "GEOID": 616644, "NAME": "Coulterville", "NAMELSAD": "Coulterville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1007403, "AWATER": 1813, "INTPTLAT": 37.7125732, "INTPTLON": -120.1960615, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -120.195923, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1519, "felt:has_geometry": true, "felt:h3_index": 644722171019735662, "STATEFP": 6, "PLACEFP": 81890, "PLACENS": 2409398, "GEOID": 681890, "NAME": "Valley Springs", "NAMELSAD": "Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10344077, "AWATER": 0, "INTPTLAT": 38.1694383, "INTPTLON": -120.825992, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -120.827637, 38.169114 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1311, "felt:has_geometry": true, "felt:h3_index": 644722171483116714, "STATEFP": 6, "PLACEFP": 59426, "PLACENS": 2409134, "GEOID": 659426, "NAME": "Rancho Calaveras", "NAMELSAD": "Rancho Calaveras CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21707375, "AWATER": 77009, "INTPTLAT": 38.1273495, "INTPTLON": -120.8530892, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -120.855103, 38.125915 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1536, "felt:has_geometry": true, "felt:h3_index": 644722171893571600, "STATEFP": 6, "PLACEFP": 83304, "PLACENS": 2409523, "GEOID": 683304, "NAME": "Wallace", "NAMELSAD": "Wallace CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11114771, "AWATER": 6972905, "INTPTLAT": 38.2069018, "INTPTLON": -120.9569815, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 38.207972 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 620, "felt:has_geometry": true, "felt:h3_index": 644722172271895917, "STATEFP": 6, "PLACEFP": 10044, "PLACENS": 2582960, "GEOID": 610044, "NAME": "Camanche Village", "NAMELSAD": "Camanche Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14082638, "AWATER": 39226, "INTPTLAT": 38.2664813, "INTPTLON": -120.986575, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -120.986938, 38.268376 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 619, "felt:has_geometry": true, "felt:h3_index": 644722172327202204, "STATEFP": 6, "PLACEFP": 10042, "PLACENS": 2582959, "GEOID": 610042, "NAME": "Camanche North Shore", "NAMELSAD": "Camanche North Shore CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6039084, "AWATER": 0, "INTPTLAT": 38.2442182, "INTPTLON": -120.9539153, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -120.953979, 38.242495 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1364, "felt:has_geometry": true, "felt:h3_index": 644722173482720266, "STATEFP": 6, "PLACEFP": 64420, "PLACENS": 2409247, "GEOID": 664420, "NAME": "San Andreas", "NAMELSAD": "San Andreas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21730446, "AWATER": 41137, "INTPTLAT": 38.1762278, "INTPTLON": -120.6693068, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -120.668335, 38.177751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1150, "felt:has_geometry": true, "felt:h3_index": 644722174314327139, "STATEFP": 6, "PLACEFP": 48480, "PLACENS": 2408855, "GEOID": 648480, "NAME": "Mokelumne Hill", "NAMELSAD": "Mokelumne Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7974096, "AWATER": 6904, "INTPTLAT": 38.3084841, "INTPTLON": -120.7056169, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -120.706787, 38.307181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 463, "felt:has_geometry": true, "felt:h3_index": 644722174407075204, "STATEFP": 6, "PLACEFP": 36980, "PLACENS": 2410128, "GEOID": 636980, "NAME": "Jackson", "NAMELSAD": "Jackson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9277425, "AWATER": 0, "INTPTLAT": 38.348485, "INTPTLON": -120.772821, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -120.772705, 38.350273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1113, "felt:has_geometry": true, "felt:h3_index": 644722174424896202, "STATEFP": 6, "PLACEFP": 46100, "PLACENS": 2583072, "GEOID": 646100, "NAME": "Martell", "NAMELSAD": "Martell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5664200, "AWATER": 2501, "INTPTLAT": 38.3673271, "INTPTLON": -120.8072042, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 38.367502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 383, "felt:has_geometry": true, "felt:h3_index": 644722177498180508, "STATEFP": 6, "PLACEFP": 2112, "PLACENS": 2409709, "GEOID": 602112, "NAME": "Angels", "NAMELSAD": "Angels city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9407811, "AWATER": 12740, "INTPTLAT": 38.0710375, "INTPTLON": -120.5517286, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -120.552979, 38.069717 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 718, "felt:has_geometry": true, "felt:h3_index": 644722179814613913, "STATEFP": 6, "PLACEFP": 17428, "PLACENS": 2582988, "GEOID": 617428, "NAME": "Crows Landing", "NAMELSAD": "Crows Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4282672, "AWATER": 0, "INTPTLAT": 37.3944426, "INTPTLON": -121.0751665, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -121.074829, 37.396346 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 744, "felt:has_geometry": true, "felt:h3_index": 644722180488469587, "STATEFP": 6, "PLACEFP": 19155, "PLACENS": 2582995, "GEOID": 619155, "NAME": "Diablo Grande", "NAMELSAD": "Diablo Grande CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11132191, "AWATER": 24652, "INTPTLAT": 37.3990466, "INTPTLON": -121.263511, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -121.261597, 37.400710 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 159, "felt:has_geometry": true, "felt:h3_index": 644722182674623566, "STATEFP": 6, "PLACEFP": 56112, "PLACENS": 2411383, "GEOID": 656112, "NAME": "Patterson", "NAMELSAD": "Patterson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20167365, "AWATER": 222151, "INTPTLAT": 37.4758755, "INTPTLON": -121.153882, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -121.151733, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 83, "felt:has_geometry": true, "felt:h3_index": 644722185962898626, "STATEFP": 6, "PLACEFP": 51140, "PLACENS": 2411247, "GEOID": 651140, "NAME": "Newman", "NAMELSAD": "Newman city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5553070, "AWATER": 0, "INTPTLAT": 37.3161283, "INTPTLON": -121.0214244, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -121.019897, 37.317752 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 87, "felt:has_geometry": true, "felt:h3_index": 644722186525498705, "STATEFP": 6, "PLACEFP": 31568, "PLACENS": 2410677, "GEOID": 631568, "NAME": "Gustine", "NAMELSAD": "Gustine city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4868787, "AWATER": 0, "INTPTLAT": 37.2525487, "INTPTLON": -120.995513, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -120.997925, 37.252194 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1169, "felt:has_geometry": true, "felt:h3_index": 644722191894960664, "STATEFP": 6, "PLACEFP": 49582, "PLACENS": 2628761, "GEOID": 649582, "NAME": "Mountain House", "NAMELSAD": "Mountain House CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11804529, "AWATER": 0, "INTPTLAT": 37.7673008, "INTPTLON": -121.5449342, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -121.547241, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 248, "felt:has_geometry": true, "felt:h3_index": 644722192074074825, "STATEFP": 6, "PLACEFP": 80238, "PLACENS": 2412090, "GEOID": 680238, "NAME": "Tracy", "NAMELSAD": "Tracy city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67824914, "AWATER": 351998, "INTPTLAT": 37.7273956, "INTPTLON": -121.4521955, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -121.453857, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1555, "felt:has_geometry": true, "felt:h3_index": 644722194778856006, "STATEFP": 6, "PLACEFP": 84480, "PLACENS": 2409574, "GEOID": 684480, "NAME": "Westley", "NAMELSAD": "Westley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 879991, "AWATER": 0, "INTPTLAT": 37.5469077, "INTPTLON": -121.2009154, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -121.201172, 37.548933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1577, "felt:has_geometry": true, "felt:h3_index": 644722197092022646, "STATEFP": 6, "PLACEFP": 86076, "PLACENS": 2409616, "GEOID": 686076, "NAME": "Winton", "NAMELSAD": "Winton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7875727, "AWATER": 0, "INTPTLAT": 37.3854272, "INTPTLON": -120.6173641, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -120.618896, 37.383253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 710, "felt:has_geometry": true, "felt:h3_index": 644722197321859747, "STATEFP": 6, "PLACEFP": 17078, "PLACENS": 2582986, "GEOID": 617078, "NAME": "Cressey", "NAMELSAD": "Cressey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4554487, "AWATER": 0, "INTPTLAT": 37.4210299, "INTPTLON": -120.6556898, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -120.657349, 37.422526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 735, "felt:has_geometry": true, "felt:h3_index": 644722197644914963, "STATEFP": 6, "PLACEFP": 18856, "PLACENS": 2408657, "GEOID": 618856, "NAME": "Denair", "NAMELSAD": "Denair CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4253064, "AWATER": 0, "INTPTLAT": 37.5253977, "INTPTLON": -120.7974329, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -120.800171, 37.527154 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 730, "felt:has_geometry": true, "felt:h3_index": 644722198266885518, "STATEFP": 6, "PLACEFP": 18464, "PLACENS": 2408654, "GEOID": 618464, "NAME": "Delhi", "NAMELSAD": "Delhi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9092104, "AWATER": 0, "INTPTLAT": 37.4305992, "INTPTLON": -120.7758992, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -120.778198, 37.431251 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 130, "felt:has_geometry": true, "felt:h3_index": 644722198350958705, "STATEFP": 6, "PLACEFP": 80812, "PLACENS": 2412114, "GEOID": 680812, "NAME": "Turlock", "NAMELSAD": "Turlock city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 43503254, "AWATER": 69528, "INTPTLAT": 37.5055238, "INTPTLON": -120.8592694, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -120.860596, 37.505368 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 534, "felt:has_geometry": true, "felt:h3_index": 644722198528190390, "STATEFP": 6, "PLACEFP": 3708, "PLACENS": 2582939, "GEOID": 603708, "NAME": "Ballico", "NAMELSAD": "Ballico CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7828206, "AWATER": 0, "INTPTLAT": 37.4519168, "INTPTLON": -120.703707, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -120.701294, 37.453057 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1415, "felt:has_geometry": true, "felt:h3_index": 644722198705800913, "STATEFP": 6, "PLACEFP": 72408, "PLACENS": 2583146, "GEOID": 672408, "NAME": "Snelling", "NAMELSAD": "Snelling CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1399517, "AWATER": 13317, "INTPTLAT": 37.5244504, "INTPTLON": -120.436319, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -120.437622, 37.522797 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 209, "felt:has_geometry": true, "felt:h3_index": 644722201269151280, "STATEFP": 6, "PLACEFP": 3162, "PLACENS": 2409752, "GEOID": 603162, "NAME": "Atwater", "NAMELSAD": "Atwater city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17008587, "AWATER": 11735, "INTPTLAT": 37.3540494, "INTPTLON": -120.5971768, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -120.596924, 37.352693 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1097, "felt:has_geometry": true, "felt:h3_index": 644722201342329698, "STATEFP": 6, "PLACEFP": 45006, "PLACENS": 2583069, "GEOID": 645006, "NAME": "McSwain", "NAMELSAD": "McSwain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15609041, "AWATER": 0, "INTPTLAT": 37.3145052, "INTPTLON": -120.5867585, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 37.313383 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 855, "felt:has_geometry": true, "felt:h3_index": 644722201351160107, "STATEFP": 6, "PLACEFP": 25488, "PLACENS": 2583016, "GEOID": 625488, "NAME": "Franklin", "NAMELSAD": "Franklin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5245317, "AWATER": 0, "INTPTLAT": 37.3275289, "INTPTLON": -120.5320892, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 37.326489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 928, "felt:has_geometry": true, "felt:h3_index": 644722202070526466, "STATEFP": 6, "PLACEFP": 33861, "PLACENS": 2408391, "GEOID": 633861, "NAME": "Hilmar-Irwin", "NAMELSAD": "Hilmar-Irwin CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10171003, "AWATER": 0, "INTPTLAT": 37.4045429, "INTPTLON": -120.8504261, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 89, "felt:has_geometry": true, "felt:h3_index": 644722202427532195, "STATEFP": 6, "PLACEFP": 42006, "PLACENS": 2410850, "GEOID": 642006, "NAME": "Livingston", "NAMELSAD": "Livingston city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9518104, "AWATER": 7397, "INTPTLAT": 37.3872812, "INTPTLON": -120.724943, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -120.723267, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1441, "felt:has_geometry": true, "felt:h3_index": 644722202595558940, "STATEFP": 6, "PLACEFP": 74144, "PLACENS": 2583152, "GEOID": 674144, "NAME": "Stevinson", "NAMELSAD": "Stevinson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2927390, "AWATER": 0, "INTPTLAT": 37.3246643, "INTPTLON": -120.8496641, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -120.849609, 37.326489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1510, "felt:has_geometry": true, "felt:h3_index": 644722203002484523, "STATEFP": 6, "PLACEFP": 81312, "PLACENS": 2583172, "GEOID": 681312, "NAME": "University of California-Merced", "NAMELSAD": "University of California-Merced CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1689900, "AWATER": 20798, "INTPTLAT": 37.3640832, "INTPTLON": -120.4188311, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -120.421143, 37.365791 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 210, "felt:has_geometry": true, "felt:h3_index": 644722203613340845, "STATEFP": 6, "PLACEFP": 46898, "PLACENS": 2411080, "GEOID": 646898, "NAME": "Merced", "NAMELSAD": "Merced city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60228129, "AWATER": 0, "INTPTLAT": 37.305712, "INTPTLON": -120.4779051, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 37.304645 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 541, "felt:has_geometry": true, "felt:h3_index": 644722203640059760, "STATEFP": 6, "PLACEFP": 4632, "PLACENS": 2629759, "GEOID": 604632, "NAME": "Bear Creek", "NAMELSAD": "Bear Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 148411, "AWATER": 0, "INTPTLAT": 37.2966009, "INTPTLON": -120.4176758, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -120.415649, 37.295906 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1503, "felt:has_geometry": true, "felt:h3_index": 644722203870640130, "STATEFP": 6, "PLACEFP": 80882, "PLACENS": 2583170, "GEOID": 680882, "NAME": "Tuttle", "NAMELSAD": "Tuttle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4555442, "AWATER": 0, "INTPTLAT": 37.2965078, "INTPTLON": -120.3788671, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 37.295906 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 32, "felt:has_geometry": true, "felt:h3_index": 644737283856424154, "STATEFP": 6, "PLACEFP": 54652, "PLACENS": 2411347, "GEOID": 654652, "NAME": "Oxnard", "NAMELSAD": "Oxnard city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68707177, "AWATER": 32677585, "INTPTLAT": 34.1994364, "INTPTLON": -119.2075154, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -119.207153, 34.198173 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 425, "felt:has_geometry": true, "felt:h3_index": 644737290365243523, "STATEFP": 6, "PLACEFP": 69070, "PLACENS": 2411815, "GEOID": 669070, "NAME": "Santa Barbara", "NAMELSAD": "Santa Barbara city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50517342, "AWATER": 58271494, "INTPTLAT": 34.4006009, "INTPTLON": -119.7129545, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -119.712524, 34.402377 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1157, "felt:has_geometry": true, "felt:h3_index": 644737290623475730, "STATEFP": 6, "PLACEFP": 48844, "PLACENS": 2408861, "GEOID": 648844, "NAME": "Montecito", "NAMELSAD": "Montecito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23768259, "AWATER": 20675380, "INTPTLAT": 34.4186422, "INTPTLON": -119.6331167, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -119.635620, 34.420505 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1453, "felt:has_geometry": true, "felt:h3_index": 644737290639399523, "STATEFP": 6, "PLACEFP": 75714, "PLACENS": 2410016, "GEOID": 675714, "NAME": "Summerland", "NAMELSAD": "Summerland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3618069, "AWATER": 15510365, "INTPTLAT": 34.4171823, "INTPTLON": -119.5874939, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -119.586182, 34.415973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1215, "felt:has_geometry": true, "felt:h3_index": 644737291269194562, "STATEFP": 6, "PLACEFP": 53182, "PLACENS": 2408966, "GEOID": 653182, "NAME": "Oak View", "NAMELSAD": "Oak View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8822791, "AWATER": 0, "INTPTLAT": 34.4030366, "INTPTLON": -119.2989497, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -119.300537, 34.402377 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1124, "felt:has_geometry": true, "felt:h3_index": 644737291619592856, "STATEFP": 6, "PLACEFP": 46702, "PLACENS": 2408814, "GEOID": 646702, "NAME": "Meiners Oaks", "NAMELSAD": "Meiners Oaks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6315365, "AWATER": 0, "INTPTLAT": 34.4553491, "INTPTLON": -119.2701657, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 34.456748 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 190, "felt:has_geometry": true, "felt:h3_index": 644737291655013013, "STATEFP": 6, "PLACEFP": 53476, "PLACENS": 2411308, "GEOID": 653476, "NAME": "Ojai", "NAMELSAD": "Ojai city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11281691, "AWATER": 39811, "INTPTLAT": 34.4491994, "INTPTLON": -119.2466643, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -119.245605, 34.447689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1142, "felt:has_geometry": true, "felt:h3_index": 644737291701506966, "STATEFP": 6, "PLACEFP": 48046, "PLACENS": 2408839, "GEOID": 648046, "NAME": "Mira Monte", "NAMELSAD": "Mira Monte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12470598, "AWATER": 44675, "INTPTLAT": 34.4311191, "INTPTLON": -119.2872006, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -119.289551, 34.429567 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 402, "felt:has_geometry": true, "felt:h3_index": 644737292909635118, "STATEFP": 6, "PLACEFP": 11446, "PLACENS": 2409990, "GEOID": 611446, "NAME": "Carpinteria", "NAMELSAD": "Carpinteria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6704026, "AWATER": 17313119, "INTPTLAT": 34.385234, "INTPTLON": -119.5007588, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -119.498291, 34.384246 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1492, "felt:has_geometry": true, "felt:h3_index": 644737293052450956, "STATEFP": 6, "PLACEFP": 79529, "PLACENS": 2409337, "GEOID": 679529, "NAME": "Toro Canyon", "NAMELSAD": "Toro Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24312959, "AWATER": 11403119, "INTPTLAT": 34.423004, "INTPTLON": -119.5607287, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -119.558716, 34.425036 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 4, "felt:has_geometry": true, "felt:h3_index": 644737296019532323, "STATEFP": 6, "PLACEFP": 65042, "PLACENS": 2411779, "GEOID": 665042, "NAME": "San Buenaventura (Ventura)", "NAMELSAD": "San Buenaventura (Ventura) city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 56652007, "AWATER": 26982227, "INTPTLAT": 34.2677796, "INTPTLON": -119.2542062, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 34.266296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 661, "felt:has_geometry": true, "felt:h3_index": 644737296421422960, "STATEFP": 6, "PLACEFP": 12669, "PLACENS": 2408010, "GEOID": 612669, "NAMELSAD": "Channel Islands Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1094556, "AWATER": 580482, "INTPTLAT": 34.1689604, "INTPTLON": -119.2285418, "NAME": "Channel Islands Beach,Port Hueneme", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -119.229126, 34.170908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 424, "felt:has_geometry": true, "felt:h3_index": 644737350721453443, "STATEFP": 6, "PLACEFP": 42524, "PLACENS": 2410860, "GEOID": 642524, "NAME": "Lompoc", "NAMELSAD": "Lompoc city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 30103860, "AWATER": 201559, "INTPTLAT": 34.6626889, "INTPTLON": -120.470837, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -120.470581, 34.664841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 422, "felt:has_geometry": true, "felt:h3_index": 644737351347285339, "STATEFP": 6, "PLACEFP": 72576, "PLACENS": 2411925, "GEOID": 672576, "NAME": "Solvang", "NAMELSAD": "Solvang city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6281307, "AWATER": 3053, "INTPTLAT": 34.5937578, "INTPTLON": -120.1396803, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -120.140991, 34.592520 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 393, "felt:has_geometry": true, "felt:h3_index": 644737351546963468, "STATEFP": 6, "PLACEFP": 8758, "PLACENS": 2409931, "GEOID": 608758, "NAME": "Buellton", "NAMELSAD": "Buellton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4097750, "AWATER": 1684, "INTPTLAT": 34.6154975, "INTPTLON": -120.1942368, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -120.195923, 34.615127 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1381, "felt:has_geometry": true, "felt:h3_index": 644737351631962845, "STATEFP": 6, "PLACEFP": 70182, "PLACENS": 2409284, "GEOID": 670182, "NAME": "Santa Ynez", "NAMELSAD": "Santa Ynez CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12510425, "AWATER": 17663, "INTPTLAT": 34.6174568, "INTPTLON": -120.0963551, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -120.097046, 34.619647 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1601, "felt:has_geometry": true, "felt:h3_index": 644737351806519010, "STATEFP": 6, "PLACEFP": 44168, "PLACENS": 2583064, "GEOID": 644168, "NAME": "Los Olivos", "NAMELSAD": "Los Olivos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778819, "AWATER": 1039, "INTPTLAT": 34.6615061, "INTPTLON": -120.1174358, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -120.119019, 34.660322 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 533, "felt:has_geometry": true, "felt:h3_index": 644737351846149005, "STATEFP": 6, "PLACEFP": 3694, "PLACENS": 2582938, "GEOID": 603694, "NAME": "Ballard", "NAMELSAD": "Ballard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7236936, "AWATER": 13445, "INTPTLAT": 34.6399477, "INTPTLON": -120.1109886, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 34.637728 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1076, "felt:has_geometry": true, "felt:h3_index": 644737352855757984, "STATEFP": 6, "PLACEFP": 43252, "PLACENS": 2408131, "GEOID": 643252, "NAME": "Los Alamos", "NAMELSAD": "Los Alamos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2341055, "AWATER": 0, "INTPTLAT": 34.7418033, "INTPTLON": -120.2745961, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -120.272827, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 426, "felt:has_geometry": true, "felt:h3_index": 644737360445248156, "STATEFP": 6, "PLACEFP": 69196, "PLACENS": 2411824, "GEOID": 669196, "NAME": "Santa Maria", "NAMELSAD": "Santa Maria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59078450, "AWATER": 1575636, "INTPTLAT": 34.9330764, "INTPTLON": -120.443559, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 34.930979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 643, "felt:has_geometry": true, "felt:h3_index": 644737360469462085, "STATEFP": 6, "PLACEFP": 11754, "PLACENS": 2582965, "GEOID": 611754, "NAME": "Casmalia", "NAMELSAD": "Casmalia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 433975, "AWATER": 0, "INTPTLAT": 34.8377987, "INTPTLON": -120.5310443, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 34.836350 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1233, "felt:has_geometry": true, "felt:h3_index": 644737360774473494, "STATEFP": 6, "PLACEFP": 54120, "PLACENS": 2408999, "GEOID": 654120, "NAME": "Orcutt", "NAMELSAD": "Orcutt CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28030109, "AWATER": 5696, "INTPTLAT": 34.8692353, "INTPTLON": -120.4216836, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -120.421143, 34.867905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 403, "felt:has_geometry": true, "felt:h3_index": 644737361373050436, "STATEFP": 6, "PLACEFP": 31414, "PLACENS": 2410672, "GEOID": 631414, "NAME": "Guadalupe", "NAMELSAD": "Guadalupe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3394103, "AWATER": 10948, "INTPTLAT": 34.9649289, "INTPTLON": -120.5731271, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -120.574951, 34.966999 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1522, "felt:has_geometry": true, "felt:h3_index": 644737364235949963, "STATEFP": 6, "PLACEFP": 82072, "PLACENS": 2409501, "GEOID": 682072, "NAME": "Vandenberg AFB", "NAMELSAD": "Vandenberg AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 57997811, "AWATER": 225536, "INTPTLAT": 34.7279857, "INTPTLON": -120.5064673, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -120.509033, 34.728070 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1523, "felt:has_geometry": true, "felt:h3_index": 644737364338869332, "STATEFP": 6, "PLACEFP": 82086, "PLACENS": 2409502, "GEOID": 682086, "NAME": "Vandenberg Village", "NAMELSAD": "Vandenberg Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13649867, "AWATER": 1339, "INTPTLAT": 34.71174, "INTPTLON": -120.4619329, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -120.459595, 34.710009 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1145, "felt:has_geometry": true, "felt:h3_index": 644737365030130845, "STATEFP": 6, "PLACEFP": 48186, "PLACENS": 2408845, "GEOID": 648186, "NAME": "Mission Hills", "NAMELSAD": "Mission Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3130522, "AWATER": 20596, "INTPTLAT": 34.6887795, "INTPTLON": -120.4397498, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -120.437622, 34.687428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 634, "felt:has_geometry": true, "felt:h3_index": 644737841012000498, "STATEFP": 6, "PLACEFP": 11324, "PLACENS": 2407966, "GEOID": 611324, "NAME": "Carmel Valley Village", "NAMELSAD": "Carmel Valley Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49166228, "AWATER": 507112, "INTPTLAT": 36.5006267, "INTPTLON": -121.7318199, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -121.734009, 36.500805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 732, "felt:has_geometry": true, "felt:h3_index": 644737842093117469, "STATEFP": 6, "PLACEFP": 18590, "PLACENS": 2408650, "GEOID": 618590, "NAME": "Del Monte Forest", "NAMELSAD": "Del Monte Forest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20787965, "AWATER": 6766175, "INTPTLAT": 36.5838337, "INTPTLON": -121.9467143, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -121.948242, 36.584658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 289, "felt:has_geometry": true, "felt:h3_index": 644737842143468300, "STATEFP": 6, "PLACEFP": 11250, "PLACENS": 2409987, "GEOID": 611250, "NAME": "Carmel-by-the-Sea", "NAMELSAD": "Carmel-by-the-Sea city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2748715, "AWATER": 0, "INTPTLAT": 36.5528806, "INTPTLON": -121.9219185, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -121.920776, 36.553775 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 290, "felt:has_geometry": true, "felt:h3_index": 644737842345595032, "STATEFP": 6, "PLACEFP": 18688, "PLACENS": 2410315, "GEOID": 618688, "NAME": "Del Rey Oaks", "NAMELSAD": "Del Rey Oaks city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2730932, "AWATER": 5204, "INTPTLAT": 36.5896993, "INTPTLON": -121.8295272, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -121.827393, 36.589068 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 88, "felt:has_geometry": true, "felt:h3_index": 644737842471774025, "STATEFP": 6, "PLACEFP": 54848, "PLACENS": 2411350, "GEOID": 654848, "NAME": "Pacific Grove", "NAMELSAD": "Pacific Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7422060, "AWATER": 2925786, "INTPTLAT": 36.6225766, "INTPTLON": -121.92643, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -121.926270, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 389, "felt:has_geometry": true, "felt:h3_index": 644737842555603587, "STATEFP": 6, "PLACEFP": 48872, "PLACENS": 2411145, "GEOID": 648872, "NAME": "Monterey", "NAMELSAD": "Monterey city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22390414, "AWATER": 9365025, "INTPTLAT": 36.6011932, "INTPTLON": -121.8831098, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -121.882324, 36.602299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1472, "felt:has_geometry": true, "felt:h3_index": 644745098859169157, "STATEFP": 6, "PLACEFP": 78050, "PLACENS": 2410062, "GEOID": 678050, "NAME": "Tecopa", "NAMELSAD": "Tecopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48145645, "AWATER": 177237, "INTPTLAT": 35.8205806, "INTPTLON": -116.2050514, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -116.202393, 35.822267 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1400, "felt:has_geometry": true, "felt:h3_index": 644745112573895528, "STATEFP": 6, "PLACEFP": 71680, "PLACENS": 2408733, "GEOID": 671680, "NAME": "Shoshone", "NAMELSAD": "Shoshone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 74361294, "AWATER": 618, "INTPTLAT": 35.9672297, "INTPTLON": -116.3087698, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -116.306763, 35.969115 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 662, "felt:has_geometry": true, "felt:h3_index": 644745127400902894, "STATEFP": 6, "PLACEFP": 12730, "PLACENS": 2804104, "GEOID": 612730, "NAME": "Charleston View", "NAMELSAD": "Charleston View CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1949194, "AWATER": 0, "INTPTLAT": 35.9646291, "INTPTLON": -115.8972354, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -115.894775, 35.964669 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 531, "felt:has_geometry": true, "felt:h3_index": 644745138290378516, "STATEFP": 6, "PLACEFP": 3512, "PLACENS": 2628708, "GEOID": 603512, "NAME": "Baker", "NAMELSAD": "Baker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6961528, "AWATER": 0, "INTPTLAT": 35.2769184, "INTPTLON": -116.071735, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -116.070557, 35.277016 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 974, "felt:has_geometry": true, "felt:h3_index": 644745180210314029, "STATEFP": 6, "PLACEFP": 37918, "PLACENS": 2408466, "GEOID": 637918, "NAME": "Keeler", "NAMELSAD": "Keeler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2987188, "AWATER": 0, "INTPTLAT": 36.4867184, "INTPTLON": -117.87333, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -117.872314, 36.487557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 868, "felt:has_geometry": true, "felt:h3_index": 644745184571321434, "STATEFP": 6, "PLACEFP": 28021, "PLACENS": 2408270, "GEOID": 628021, "NAME": "Furnace Creek", "NAMELSAD": "Furnace Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 81487361, "AWATER": 0, "INTPTLAT": 36.4276693, "INTPTLON": -116.8746901, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 36.425703 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 934, "felt:has_geometry": true, "felt:h3_index": 644745200841135824, "STATEFP": 6, "PLACEFP": 34405, "PLACENS": 2583036, "GEOID": 634405, "NAME": "Homewood Canyon", "NAMELSAD": "Homewood Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26546375, "AWATER": 0, "INTPTLAT": 35.8900404, "INTPTLON": -117.3864139, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1388, "felt:has_geometry": true, "felt:h3_index": 644745201207139566, "STATEFP": 6, "PLACEFP": 70728, "PLACENS": 2409296, "GEOID": 670728, "NAME": "Searles Valley", "NAMELSAD": "Searles Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27186893, "AWATER": 0, "INTPTLAT": 35.7700481, "INTPTLON": -117.3966763, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -117.394409, 35.768801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1520, "felt:has_geometry": true, "felt:h3_index": 644745203285080905, "STATEFP": 6, "PLACEFP": 81925, "PLACENS": 2408400, "GEOID": 681925, "NAME": "Valley Wells", "NAMELSAD": "Valley Wells CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27631920, "AWATER": 177128, "INTPTLAT": 35.8807292, "INTPTLON": -117.3356757, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 35.880149 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1499, "felt:has_geometry": true, "felt:h3_index": 644745206988314867, "STATEFP": 6, "PLACEFP": 80515, "PLACENS": 2583168, "GEOID": 680515, "NAME": "Trona", "NAMELSAD": "Trona CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24076929, "AWATER": 2011, "INTPTLAT": 35.8158211, "INTPTLON": -117.3473478, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 35.817813 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1222, "felt:has_geometry": true, "felt:h3_index": 644745210226968732, "STATEFP": 6, "PLACEFP": 53490, "PLACENS": 2408982, "GEOID": 653490, "NAME": "Olancha", "NAMELSAD": "Olancha CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20311991, "AWATER": 79710, "INTPTLAT": 36.2697874, "INTPTLON": -118.0012577, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -117.998657, 36.270850 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 724, "felt:has_geometry": true, "felt:h3_index": 644745211606247814, "STATEFP": 6, "PLACEFP": 18030, "PLACENS": 2408642, "GEOID": 618030, "NAME": "Darwin", "NAMELSAD": "Darwin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3484705, "AWATER": 0, "INTPTLAT": 36.2688034, "INTPTLON": -117.5890042, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -117.586670, 36.270850 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1524, "felt:has_geometry": true, "felt:h3_index": 644745442198637355, "STATEFP": 6, "PLACEFP": 82334, "PLACENS": 2583175, "GEOID": 682334, "NAME": "Verdi", "NAMELSAD": "Verdi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10808119, "AWATER": 34863, "INTPTLAT": 39.5269686, "INTPTLON": -120.0233943, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -120.025635, 39.525230 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 840, "felt:has_geometry": true, "felt:h3_index": 644745446426234952, "STATEFP": 6, "PLACEFP": 24526, "PLACENS": 2628731, "GEOID": 624526, "NAME": "Floriston", "NAMELSAD": "Floriston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2459249, "AWATER": 0, "INTPTLAT": 39.3929299, "INTPTLON": -120.0151127, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -120.014648, 39.393755 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 669, "felt:has_geometry": true, "felt:h3_index": 644745449965964333, "STATEFP": 6, "PLACEFP": 13077, "PLACENS": 2408024, "GEOID": 613077, "NAME": "Chilcoot-Vinton", "NAMELSAD": "Chilcoot-Vinton CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34207854, "AWATER": 0, "INTPTLAT": 39.806744, "INTPTLON": -120.1388608, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -120.140991, 39.808536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 545, "felt:has_geometry": true, "felt:h3_index": 644745450739046257, "STATEFP": 6, "PLACEFP": 4772, "PLACENS": 2407819, "GEOID": 604772, "NAME": "Beckwourth", "NAMELSAD": "Beckwourth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30257790, "AWATER": 13194, "INTPTLAT": 39.8439312, "INTPTLON": -120.4140086, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -120.415649, 39.842286 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1401, "felt:has_geometry": true, "felt:h3_index": 644745453979918627, "STATEFP": 6, "PLACEFP": 71774, "PLACENS": 2583138, "GEOID": 671774, "NAME": "Sierra Brooks", "NAMELSAD": "Sierra Brooks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3549115, "AWATER": 0, "INTPTLAT": 39.6425925, "INTPTLON": -120.2153873, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -120.217896, 39.643768 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 427, "felt:has_geometry": true, "felt:h3_index": 644745455174562523, "STATEFP": 6, "PLACEFP": 44364, "PLACENS": 2410891, "GEOID": 644364, "NAME": "Loyalton", "NAMELSAD": "Loyalton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 920711, "AWATER": 0, "INTPTLAT": 39.6768545, "INTPTLON": -120.2448111, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -120.245361, 39.677598 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1404, "felt:has_geometry": true, "felt:h3_index": 644745455414621025, "STATEFP": 6, "PLACEFP": 71848, "PLACENS": 2583141, "GEOID": 671848, "NAME": "Sierraville", "NAMELSAD": "Sierraville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13002077, "AWATER": 2127, "INTPTLAT": 39.5822318, "INTPTLON": -120.3620651, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -120.360718, 39.580290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1384, "felt:has_geometry": true, "felt:h3_index": 644745455570719085, "STATEFP": 6, "PLACEFP": 70336, "PLACENS": 2583131, "GEOID": 670336, "NAME": "Sattley", "NAMELSAD": "Sattley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5302767, "AWATER": 4699, "INTPTLAT": 39.6299451, "INTPTLON": -120.4372753, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -120.437622, 39.631077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1455, "felt:has_geometry": true, "felt:h3_index": 644745476582229400, "STATEFP": 6, "PLACEFP": 76015, "PLACENS": 2410030, "GEOID": 676015, "NAME": "Sunnyside-Tahoe City", "NAMELSAD": "Sunnyside-Tahoe City CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9016274, "AWATER": 858519, "INTPTLAT": 39.1483181, "INTPTLON": -120.1709376, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -120.168457, 39.147103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 752, "felt:has_geometry": true, "felt:h3_index": 644745476801963758, "STATEFP": 6, "PLACEFP": 19455, "PLACENS": 2408680, "GEOID": 619455, "NAME": "Dollar Point", "NAMELSAD": "Dollar Point CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4234923, "AWATER": 544222, "INTPTLAT": 39.1896257, "INTPTLON": -120.1094264, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -120.108032, 39.189691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1464, "felt:has_geometry": true, "felt:h3_index": 644745476924158866, "STATEFP": 6, "PLACEFP": 77728, "PLACENS": 2628793, "GEOID": 677728, "NAME": "Tahoma", "NAMELSAD": "Tahoma CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6717203, "AWATER": 529924, "INTPTLAT": 39.0582449, "INTPTLON": -120.1420674, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -120.140991, 39.057584 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 988, "felt:has_geometry": true, "felt:h3_index": 644745478633104960, "STATEFP": 6, "PLACEFP": 38548, "PLACENS": 2408481, "GEOID": 638548, "NAME": "Kings Beach", "NAMELSAD": "Kings Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7403909, "AWATER": 301151, "INTPTLAT": 39.2475277, "INTPTLON": -120.0199033, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -120.020142, 39.249271 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1463, "felt:has_geometry": true, "felt:h3_index": 644745478653642602, "STATEFP": 6, "PLACEFP": 77700, "PLACENS": 2410050, "GEOID": 677700, "NAME": "Tahoe Vista", "NAMELSAD": "Tahoe Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7033550, "AWATER": 359834, "INTPTLAT": 39.2467999, "INTPTLON": -120.058578, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -120.058594, 39.245017 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 379, "felt:has_geometry": true, "felt:h3_index": 644745479806012125, "STATEFP": 6, "PLACEFP": 73108, "PLACENS": 2411938, "GEOID": 673108, "NAME": "South Lake Tahoe", "NAMELSAD": "South Lake Tahoe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26075509, "AWATER": 742938, "INTPTLAT": 38.9282184, "INTPTLON": -119.9809998, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -119.981689, 38.929502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1133, "felt:has_geometry": true, "felt:h3_index": 644745480130186162, "STATEFP": 6, "PLACEFP": 47206, "PLACENS": 2804404, "GEOID": 647206, "NAME": "Meyers", "NAMELSAD": "Meyers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6473356, "AWATER": 36532, "INTPTLAT": 38.8347873, "INTPTLON": -120.0185604, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -120.020142, 38.835429 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1417, "felt:has_geometry": true, "felt:h3_index": 644745484573366443, "STATEFP": 6, "PLACEFP": 72492, "PLACENS": 2628790, "GEOID": 672492, "NAME": "Soda Springs", "NAMELSAD": "Soda Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 872163, "AWATER": 0, "INTPTLAT": 39.3247879, "INTPTLON": -120.3786654, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -120.377197, 39.325799 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 206, "felt:has_geometry": true, "felt:h3_index": 644745486641487048, "STATEFP": 6, "PLACEFP": 80588, "PLACENS": 2413403, "GEOID": 680588, "NAME": "Truckee", "NAMELSAD": "Truckee town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 83740315, "AWATER": 3448642, "INTPTLAT": 39.3505478, "INTPTLON": -120.1939432, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -120.195923, 39.351290 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 989, "felt:has_geometry": true, "felt:h3_index": 644745489669531938, "STATEFP": 6, "PLACEFP": 38604, "PLACENS": 2628744, "GEOID": 638604, "NAME": "Kingvale", "NAMELSAD": "Kingvale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2490334, "AWATER": 22032, "INTPTLAT": 39.3209972, "INTPTLON": -120.4383095, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -120.437622, 39.321550 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 637, "felt:has_geometry": true, "felt:h3_index": 644745491153168563, "STATEFP": 6, "PLACEFP": 11418, "PLACENS": 2628716, "GEOID": 611418, "NAME": "Carnelian Bay", "NAMELSAD": "Carnelian Bay CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3364143, "AWATER": 516530, "INTPTLAT": 39.2351651, "INTPTLON": -120.0782068, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 39.236508 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 654, "felt:has_geometry": true, "felt:h3_index": 644745491175466112, "STATEFP": 6, "PLACEFP": 12216, "PLACENS": 2805240, "GEOID": 612216, "NAME": "Cedar Flat", "NAMELSAD": "Cedar Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2796525, "AWATER": 378138, "INTPTLAT": 39.2069065, "INTPTLON": -120.094902, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -120.097046, 39.206719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 552, "felt:has_geometry": true, "felt:h3_index": 644745647903540376, "STATEFP": 6, "PLACEFP": 5346, "PLACENS": 2582943, "GEOID": 605346, "NAME": "Benton", "NAMELSAD": "Benton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 73732744, "AWATER": 52423, "INTPTLAT": 37.8224379, "INTPTLON": -118.4876873, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -118.487549, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1245, "felt:has_geometry": true, "felt:h3_index": 644745681741189878, "STATEFP": 6, "PLACEFP": 55528, "PLACENS": 2583105, "GEOID": 655528, "NAME": "Paradise", "NAMELSAD": "Paradise CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11271636, "AWATER": 0, "INTPTLAT": 37.4828526, "INTPTLON": -118.602213, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -118.602905, 37.483577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1460, "felt:has_geometry": true, "felt:h3_index": 644745681934942805, "STATEFP": 6, "PLACEFP": 77430, "PLACENS": 2583158, "GEOID": 677430, "NAME": "Swall Meadows", "NAMELSAD": "Swall Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11555635, "AWATER": 0, "INTPTLAT": 37.5060596, "INTPTLON": -118.6426564, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -118.641357, 37.505368 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1094, "felt:has_geometry": true, "felt:h3_index": 644745682823441733, "STATEFP": 6, "PLACEFP": 44830, "PLACENS": 2583068, "GEOID": 644830, "NAME": "McGee Creek", "NAMELSAD": "McGee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10384180, "AWATER": 0, "INTPTLAT": 37.5726652, "INTPTLON": -118.7909998, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -118.789673, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 717, "felt:has_geometry": true, "felt:h3_index": 644745685214521227, "STATEFP": 6, "PLACEFP": 17372, "PLACENS": 2582987, "GEOID": 617372, "NAME": "Crowley Lake", "NAMELSAD": "Crowley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7475668, "AWATER": 6392, "INTPTLAT": 37.5687424, "INTPTLON": -118.7464214, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -118.745728, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1456, "felt:has_geometry": true, "felt:h3_index": 644745685225301418, "STATEFP": 6, "PLACEFP": 76040, "PLACENS": 2583155, "GEOID": 676040, "NAME": "Sunny Slopes", "NAMELSAD": "Sunny Slopes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4879001, "AWATER": 0, "INTPTLAT": 37.5693764, "INTPTLON": -118.6758364, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -118.674316, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 524, "felt:has_geometry": true, "felt:h3_index": 644745685298369459, "STATEFP": 6, "PLACEFP": 3026, "PLACENS": 2582936, "GEOID": 603026, "NAME": "Aspen Springs", "NAMELSAD": "Aspen Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9288460, "AWATER": 1429, "INTPTLAT": 37.5487908, "INTPTLON": -118.6996633, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -118.701782, 37.548933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1350, "felt:has_geometry": true, "felt:h3_index": 644745688094170528, "STATEFP": 6, "PLACEFP": 63148, "PLACENS": 2409218, "GEOID": 663148, "NAME": "Round Valley", "NAMELSAD": "Round Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36227887, "AWATER": 30931, "INTPTLAT": 37.4141625, "INTPTLON": -118.5722734, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -118.569946, 37.413800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1128, "felt:has_geometry": true, "felt:h3_index": 644745688106959468, "STATEFP": 6, "PLACEFP": 47013, "PLACENS": 2408819, "GEOID": 647013, "NAME": "Mesa", "NAMELSAD": "Mesa CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9072237, "AWATER": 395419, "INTPTLAT": 37.4168335, "INTPTLON": -118.5391146, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -118.536987, 37.418163 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 749, "felt:has_geometry": true, "felt:h3_index": 644745688251990388, "STATEFP": 6, "PLACEFP": 19406, "PLACENS": 2408675, "GEOID": 619406, "NAME": "Dixon Lane-MeadowCreek", "NAMELSAD": "Dixon Lane-MeadowCreek CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8701384, "AWATER": 0, "INTPTLAT": 37.3863883, "INTPTLON": -118.4152731, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -118.416138, 37.387617 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1551, "felt:has_geometry": true, "felt:h3_index": 644745688699757342, "STATEFP": 6, "PLACEFP": 84120, "PLACENS": 2409545, "GEOID": 684120, "NAME": "West Bishop", "NAMELSAD": "West Bishop CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22684470, "AWATER": 2788, "INTPTLAT": 37.3627675, "INTPTLON": -118.4750461, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -118.476562, 37.361426 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 972, "felt:has_geometry": true, "felt:h3_index": 644745690741369476, "STATEFP": 6, "PLACEFP": 37624, "PLACENS": 2583044, "GEOID": 637624, "NAME": "June Lake", "NAMELSAD": "June Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26694795, "AWATER": 2048342, "INTPTLAT": 37.7617827, "INTPTLON": -119.1147288, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -119.113770, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1042, "felt:has_geometry": true, "felt:h3_index": 644745693464166596, "STATEFP": 6, "PLACEFP": 40998, "PLACENS": 2583054, "GEOID": 640998, "NAME": "Lee Vining", "NAMELSAD": "Lee Vining CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13483686, "AWATER": 6196, "INTPTLAT": 37.9548986, "INTPTLON": -119.1220135, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -119.124756, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 315, "felt:has_geometry": true, "felt:h3_index": 644745694598468490, "STATEFP": 6, "PLACEFP": 45358, "PLACENS": 2412936, "GEOID": 645358, "NAME": "Mammoth Lakes", "NAMELSAD": "Mammoth Lakes town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 64402450, "AWATER": 1139030, "INTPTLAT": 37.6244355, "INTPTLON": -118.9884322, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -118.987427, 37.622934 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 660, "felt:has_geometry": true, "felt:h3_index": 644745704178587667, "STATEFP": 6, "PLACEFP": 12594, "PLACENS": 2582973, "GEOID": 612594, "NAME": "Chalfant", "NAMELSAD": "Chalfant CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 72616470, "AWATER": 73304, "INTPTLAT": 37.4921149, "INTPTLON": -118.3904081, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -118.388672, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 990, "felt:has_geometry": true, "felt:h3_index": 644745724699489955, "STATEFP": 6, "PLACEFP": 38646, "PLACENS": 2408489, "GEOID": 638646, "NAME": "Kirkwood", "NAMELSAD": "Kirkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11290203, "AWATER": 2525431, "INTPTLAT": 38.689265, "INTPTLON": -120.0549795, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -120.053101, 38.689798 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 542, "felt:has_geometry": true, "felt:h3_index": 644745729533363345, "STATEFP": 6, "PLACEFP": 4716, "PLACENS": 2407814, "GEOID": 604716, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13352822, "AWATER": 56384, "INTPTLAT": 38.4723209, "INTPTLON": -120.0518467, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -120.053101, 38.470794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 690, "felt:has_geometry": true, "felt:h3_index": 644745734195958914, "STATEFP": 6, "PLACEFP": 14484, "PLACENS": 2582978, "GEOID": 614484, "NAME": "Coleville", "NAMELSAD": "Coleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49897132, "AWATER": 0, "INTPTLAT": 38.5805614, "INTPTLON": -119.502863, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -119.503784, 38.582526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1535, "felt:has_geometry": true, "felt:h3_index": 644745734758549548, "STATEFP": 6, "PLACEFP": 83262, "PLACENS": 2583180, "GEOID": 683262, "NAME": "Walker", "NAMELSAD": "Walker CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31473072, "AWATER": 0, "INTPTLAT": 38.518502, "INTPTLON": -119.4730506, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -119.470825, 38.518086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 593, "felt:has_geometry": true, "felt:h3_index": 644745738094579731, "STATEFP": 6, "PLACEFP": 8240, "PLACENS": 2582950, "GEOID": 608240, "NAME": "Bridgeport", "NAMELSAD": "Bridgeport CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56306218, "AWATER": 21149, "INTPTLAT": 38.2552098, "INTPTLON": -119.2104243, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -119.212646, 38.255436 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1130, "felt:has_geometry": true, "felt:h3_index": 644745742716440576, "STATEFP": 6, "PLACEFP": 47086, "PLACENS": 2408820, "GEOID": 647086, "NAME": "Mesa Vista", "NAMELSAD": "Mesa Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12627546, "AWATER": 0, "INTPTLAT": 38.8102875, "INTPTLON": -119.8032665, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -119.805908, 38.809751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 502, "felt:has_geometry": true, "felt:h3_index": 644745743227496204, "STATEFP": 6, "PLACEFP": 1228, "PLACENS": 2407729, "GEOID": 601228, "NAME": "Alpine Village", "NAMELSAD": "Alpine Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10569744, "AWATER": 0, "INTPTLAT": 38.7793457, "INTPTLON": -119.807785, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -119.805908, 38.779781 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1112, "felt:has_geometry": true, "felt:h3_index": 644745747127928020, "STATEFP": 6, "PLACEFP": 45988, "PLACENS": 2408184, "GEOID": 645988, "NAME": "Markleeville", "NAMELSAD": "Markleeville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16914713, "AWATER": 0, "INTPTLAT": 38.6840021, "INTPTLON": -119.8227384, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -119.822388, 38.685510 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1491, "felt:has_geometry": true, "felt:h3_index": 644745748747336713, "STATEFP": 6, "PLACEFP": 79030, "PLACENS": 2583165, "GEOID": 679030, "NAME": "Topaz", "NAMELSAD": "Topaz CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31537286, "AWATER": 3359715, "INTPTLAT": 38.6380591, "INTPTLON": -119.5018074, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -119.503784, 38.638327 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1403, "felt:has_geometry": true, "felt:h3_index": 644745751414771748, "STATEFP": 6, "PLACEFP": 71834, "PLACENS": 2583140, "GEOID": 671834, "NAME": "Sierra Village", "NAMELSAD": "Sierra Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6661587, "AWATER": 9750, "INTPTLAT": 38.0756273, "INTPTLON": -120.1593364, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -120.157471, 38.074041 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1146, "felt:has_geometry": true, "felt:h3_index": 644745751446258854, "STATEFP": 6, "PLACEFP": 48298, "PLACENS": 2408846, "GEOID": 648298, "NAME": "Mi-Wuk Village", "NAMELSAD": "Mi-Wuk Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7343670, "AWATER": 16842, "INTPTLAT": 38.0577353, "INTPTLON": -120.176698, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -120.179443, 38.056742 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1276, "felt:has_geometry": true, "felt:h3_index": 644745756209086464, "STATEFP": 6, "PLACEFP": 57244, "PLACENS": 2583115, "GEOID": 657244, "NAME": "Pine Mountain Lake", "NAMELSAD": "Pine Mountain Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49108026, "AWATER": 726370, "INTPTLAT": 37.8595397, "INTPTLON": -120.1816624, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -120.179443, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 599, "felt:has_geometry": true, "felt:h3_index": 644745756408964336, "STATEFP": 6, "PLACEFP": 8716, "PLACENS": 2582952, "GEOID": 608716, "NAME": "Buck Meadows", "NAMELSAD": "Buck Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1386273, "AWATER": 0, "INTPTLAT": 37.8070463, "INTPTLON": -120.075237, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -120.075073, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 753, "felt:has_geometry": true, "felt:h3_index": 644745759144041310, "STATEFP": 6, "PLACEFP": 19570, "PLACENS": 2408683, "GEOID": 619570, "NAME": "Dorrington", "NAMELSAD": "Dorrington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10600543, "AWATER": 12551, "INTPTLAT": 38.304479, "INTPTLON": -120.2663205, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -120.267334, 38.302870 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 520, "felt:has_geometry": true, "felt:h3_index": 644745759464527409, "STATEFP": 6, "PLACEFP": 2770, "PLACENS": 2407763, "GEOID": 602770, "NAME": "Arnold", "NAMELSAD": "Arnold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23482385, "AWATER": 168745, "INTPTLAT": 38.2486418, "INTPTLON": -120.3509888, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -120.349731, 38.246809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 528, "felt:has_geometry": true, "felt:h3_index": 644745759487578395, "STATEFP": 6, "PLACEFP": 3316, "PLACENS": 2407784, "GEOID": 603316, "NAME": "Avery", "NAMELSAD": "Avery CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5449102, "AWATER": 47866, "INTPTLAT": 38.1979118, "INTPTLON": -120.3694331, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -120.371704, 38.199339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1307, "felt:has_geometry": true, "felt:h3_index": 644745760524114544, "STATEFP": 6, "PLACEFP": 59220, "PLACENS": 2409122, "GEOID": 659220, "NAME": "Rail Road Flat", "NAMELSAD": "Rail Road Flat CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23510266, "AWATER": 371269, "INTPTLAT": 38.314374, "INTPTLON": -120.5074837, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -120.509033, 38.315801 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 655, "felt:has_geometry": true, "felt:h3_index": 644745763100310698, "STATEFP": 6, "PLACEFP": 12300, "PLACENS": 2582970, "GEOID": 612300, "NAME": "Cedar Ridge", "NAMELSAD": "Cedar Ridge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20223241, "AWATER": 22466, "INTPTLAT": 38.0657363, "INTPTLON": -120.2738689, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -120.272827, 38.065392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1268, "felt:has_geometry": true, "felt:h3_index": 644745763638921008, "STATEFP": 6, "PLACEFP": 56870, "PLACENS": 2633170, "GEOID": 656870, "NAME": "Phoenix Lake", "NAMELSAD": "Phoenix Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28679791, "AWATER": 334098, "INTPTLAT": 38.0113468, "INTPTLON": -120.3090003, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -120.311279, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1153, "felt:has_geometry": true, "felt:h3_index": 644745763682833304, "STATEFP": 6, "PLACEFP": 48641, "PLACENS": 2408856, "GEOID": 648641, "NAME": "Mono Vista", "NAMELSAD": "Mono Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7319287, "AWATER": 7275, "INTPTLAT": 38.0134318, "INTPTLON": -120.2700482, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -120.267334, 38.013476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1506, "felt:has_geometry": true, "felt:h3_index": 644745763846636237, "STATEFP": 6, "PLACEFP": 80966, "PLACENS": 2409370, "GEOID": 680966, "NAME": "Twain Harte", "NAMELSAD": "Twain Harte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9579417, "AWATER": 49580, "INTPTLAT": 38.0369433, "INTPTLON": -120.2339184, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -120.234375, 38.035112 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1180, "felt:has_geometry": true, "felt:h3_index": 644745764178711459, "STATEFP": 6, "PLACEFP": 50034, "PLACENS": 2408892, "GEOID": 650034, "NAME": "Murphys", "NAMELSAD": "Murphys CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10955540, "AWATER": 6287, "INTPTLAT": 38.1360927, "INTPTLON": -120.4439416, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -120.443115, 38.134557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1172, "felt:has_geometry": true, "felt:h3_index": 644745764264776198, "STATEFP": 6, "PLACEFP": 49628, "PLACENS": 2408882, "GEOID": 649628, "NAME": "Mountain Ranch", "NAMELSAD": "Mountain Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10127780, "AWATER": 0, "INTPTLAT": 38.2117212, "INTPTLON": -120.5311151, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -120.531006, 38.212288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 847, "felt:has_geometry": true, "felt:h3_index": 644745764405361038, "STATEFP": 6, "PLACEFP": 24897, "PLACENS": 2408228, "GEOID": 624897, "NAME": "Forest Meadows", "NAMELSAD": "Forest Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9749680, "AWATER": 0, "INTPTLAT": 38.1717302, "INTPTLON": -120.3989746, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -120.399170, 38.173433 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1514, "felt:has_geometry": true, "felt:h3_index": 644745764755808921, "STATEFP": 6, "PLACEFP": 81652, "PLACENS": 2409394, "GEOID": 681652, "NAME": "Vallecito", "NAMELSAD": "Vallecito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5406010, "AWATER": 0, "INTPTLAT": 38.0836081, "INTPTLON": -120.4652043, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -120.465088, 38.082690 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1449, "felt:has_geometry": true, "felt:h3_index": 644745765491435668, "STATEFP": 6, "PLACEFP": 75322, "PLACENS": 2628792, "GEOID": 675322, "NAME": "Strawberry", "NAMELSAD": "Strawberry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1350627, "AWATER": 21432, "INTPTLAT": 38.198384, "INTPTLON": -120.0103432, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -120.009155, 38.199339 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1074, "felt:has_geometry": true, "felt:h3_index": 644745765795357227, "STATEFP": 6, "PLACEFP": 42622, "PLACENS": 2583061, "GEOID": 642622, "NAME": "Long Barn", "NAMELSAD": "Long Barn CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7478480, "AWATER": 3839, "INTPTLAT": 38.0932629, "INTPTLON": -120.1346861, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 38.091337 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 689, "felt:has_geometry": true, "felt:h3_index": 644745766042224649, "STATEFP": 6, "PLACEFP": 14454, "PLACENS": 2628721, "GEOID": 614454, "NAME": "Cold Springs", "NAMELSAD": "Cold Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4492222, "AWATER": 0, "INTPTLAT": 38.1613351, "INTPTLON": -120.053527, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -120.053101, 38.160476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1507, "felt:has_geometry": true, "felt:h3_index": 644745771458388790, "STATEFP": 6, "PLACEFP": 81048, "PLACENS": 2804105, "GEOID": 681048, "NAME": "Twin Lakes", "NAMELSAD": "Twin Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10798571, "AWATER": 2717491, "INTPTLAT": 38.1628855, "INTPTLON": -119.341063, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -119.338989, 38.164795 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1531, "felt:has_geometry": true, "felt:h3_index": 644745773941054618, "STATEFP": 6, "PLACEFP": 82929, "PLACENS": 2804106, "GEOID": 682929, "NAME": "Virginia Lakes", "NAMELSAD": "Virginia Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3741522, "AWATER": 216444, "INTPTLAT": 38.0434728, "INTPTLON": -119.2598767, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -119.262085, 38.043765 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1152, "felt:has_geometry": true, "felt:h3_index": 644745774095242096, "STATEFP": 6, "PLACEFP": 48602, "PLACENS": 2583083, "GEOID": 648602, "NAME": "Mono City", "NAMELSAD": "Mono City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20298298, "AWATER": 0, "INTPTLAT": 38.0321233, "INTPTLON": -119.1473993, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -119.146729, 38.030786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 925, "felt:has_geometry": true, "felt:h3_index": 644747021604116150, "STATEFP": 6, "PLACEFP": 33574, "PLACENS": 2408383, "GEOID": 633574, "NAME": "Highgrove", "NAMELSAD": "Highgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8332742, "AWATER": 0, "INTPTLAT": 34.0105771, "INTPTLON": -117.3098172, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -117.312012, 34.011689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 59, "felt:has_geometry": true, "felt:h3_index": 644747021617081414, "STATEFP": 6, "PLACEFP": 30658, "PLACENS": 2410634, "GEOID": 630658, "NAME": "Grand Terrace", "NAMELSAD": "Grand Terrace city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9125422, "AWATER": 0, "INTPTLAT": 34.0310847, "INTPTLON": -117.3131005, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -117.312012, 34.029900 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 329, "felt:has_geometry": true, "felt:h3_index": 644747021878350657, "STATEFP": 6, "PLACEFP": 42370, "PLACENS": 2410857, "GEOID": 642370, "NAME": "Loma Linda", "NAMELSAD": "Loma Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22528575, "AWATER": 2371, "INTPTLAT": 34.0429322, "INTPTLON": -117.2488722, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -117.251587, 34.043557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1108, "felt:has_geometry": true, "felt:h3_index": 644747022065336939, "STATEFP": 6, "PLACEFP": 45680, "PLACENS": 2408176, "GEOID": 645680, "NAME": "March ARB", "NAMELSAD": "March ARB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 30946983, "AWATER": 36554, "INTPTLAT": 33.8891842, "INTPTLON": -117.2777289, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 100, "felt:has_geometry": true, "felt:h3_index": 644747022274563185, "STATEFP": 6, "PLACEFP": 49270, "PLACENS": 2411159, "GEOID": 649270, "NAME": "Moreno Valley", "NAMELSAD": "Moreno Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 132891703, "AWATER": 546511, "INTPTLAT": 33.9232527, "INTPTLON": -117.2056845, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -117.207642, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 571, "felt:has_geometry": true, "felt:h3_index": 644747022568655702, "STATEFP": 6, "PLACEFP": 7064, "PLACENS": 2407863, "GEOID": 607064, "NAME": "Bloomington", "NAMELSAD": "Bloomington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15723229, "AWATER": 0, "INTPTLAT": 34.0600706, "INTPTLON": -117.4012379, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -117.399902, 34.061761 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 370, "felt:has_geometry": true, "felt:h3_index": 644747022729288045, "STATEFP": 6, "PLACEFP": 24680, "PLACENS": 2410517, "GEOID": 624680, "NAME": "Fontana", "NAMELSAD": "Fontana city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 112089027, "AWATER": 0, "INTPTLAT": 34.109686, "INTPTLON": -117.462888, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -117.460327, 34.111805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 58, "felt:has_geometry": true, "felt:h3_index": 644747022904623702, "STATEFP": 6, "PLACEFP": 14890, "PLACENS": 2410200, "GEOID": 614890, "NAME": "Colton", "NAMELSAD": "Colton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40478596, "AWATER": 1325520, "INTPTLAT": 34.0545252, "INTPTLON": -117.3250286, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -117.322998, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 371, "felt:has_geometry": true, "felt:h3_index": 644747022998624653, "STATEFP": 6, "PLACEFP": 60466, "PLACENS": 2410931, "GEOID": 660466, "NAME": "Rialto", "NAMELSAD": "Rialto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 62397099, "AWATER": 0, "INTPTLAT": 34.1174193, "INTPTLON": -117.3892148, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -117.388916, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 249, "felt:has_geometry": true, "felt:h3_index": 644747023086295720, "STATEFP": 6, "PLACEFP": 37692, "PLACENS": 2702867, "GEOID": 637692, "NAME": "Jurupa Valley", "NAMELSAD": "Jurupa Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 111214683, "AWATER": 1910887, "INTPTLAT": 34.0025907, "INTPTLON": -117.4676122, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -117.465820, 34.002581 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1126, "felt:has_geometry": true, "felt:h3_index": 644747023634293062, "STATEFP": 6, "PLACEFP": 46884, "PLACENS": 2408816, "GEOID": 646884, "NAME": "Mentone", "NAMELSAD": "Mentone CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15830890, "AWATER": 30802, "INTPTLAT": 34.0606386, "INTPTLON": -117.1150201, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 34.061761 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 365, "felt:has_geometry": true, "felt:h3_index": 644747024293973236, "STATEFP": 6, "PLACEFP": 59962, "PLACENS": 2411532, "GEOID": 659962, "NAME": "Redlands", "NAMELSAD": "Redlands city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 93292256, "AWATER": 673021, "INTPTLAT": 34.0535056, "INTPTLON": -117.1704758, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -117.169189, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 360, "felt:has_geometry": true, "felt:h3_index": 644747024471987290, "STATEFP": 6, "PLACEFP": 87042, "PLACENS": 2412326, "GEOID": 687042, "NAME": "Yucaipa", "NAMELSAD": "Yucaipa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 73188295, "AWATER": 0, "INTPTLAT": 34.0335819, "INTPTLON": -117.0428976, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -117.042847, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 200, "felt:has_geometry": true, "felt:h3_index": 644747024503357809, "STATEFP": 6, "PLACEFP": 9864, "PLACENS": 2409961, "GEOID": 609864, "NAME": "Calimesa", "NAMELSAD": "Calimesa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38571406, "AWATER": 0, "INTPTLAT": 33.9873574, "INTPTLON": -117.0542141, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -117.053833, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 277, "felt:has_geometry": true, "felt:h3_index": 644747025029171510, "STATEFP": 6, "PLACEFP": 33588, "PLACENS": 2410759, "GEOID": 633588, "NAME": "Highland", "NAMELSAD": "Highland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48099958, "AWATER": 244008, "INTPTLAT": 34.1134731, "INTPTLON": -117.1657294, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -117.163696, 34.111805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 270, "felt:has_geometry": true, "felt:h3_index": 644747025391164203, "STATEFP": 6, "PLACEFP": 65000, "PLACENS": 2411777, "GEOID": 665000, "NAME": "San Bernardino", "NAMELSAD": "San Bernardino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 160912067, "AWATER": 853495, "INTPTLAT": 34.1411402, "INTPTLON": -117.2946349, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -117.295532, 34.139088 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 282, "felt:has_geometry": true, "felt:h3_index": 644747025862970516, "STATEFP": 6, "PLACEFP": 56700, "PLACENS": 2411403, "GEOID": 656700, "NAME": "Perris", "NAMELSAD": "Perris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 81748619, "AWATER": 279334, "INTPTLAT": 33.7898494, "INTPTLON": -117.2221715, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -117.224121, 33.788279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1122, "felt:has_geometry": true, "felt:h3_index": 644747025959525805, "STATEFP": 6, "PLACEFP": 46646, "PLACENS": 2583077, "GEOID": 646646, "NAME": "Mead Valley", "NAMELSAD": "Mead Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49432252, "AWATER": 0, "INTPTLAT": 33.8333108, "INTPTLON": -117.2851999, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -117.284546, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1602, "felt:has_geometry": true, "felt:h3_index": 644747026134867075, "STATEFP": 6, "PLACEFP": 52624, "PLACENS": 2408960, "GEOID": 652624, "NAME": "Nuevo", "NAMELSAD": "Nuevo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17531432, "AWATER": 0, "INTPTLAT": 33.8011366, "INTPTLON": -117.1413818, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -117.141724, 33.801974 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 883, "felt:has_geometry": true, "felt:h3_index": 644747026351438856, "STATEFP": 6, "PLACEFP": 30410, "PLACENS": 2583026, "GEOID": 630410, "NAME": "Good Hope", "NAMELSAD": "Good Hope CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29073661, "AWATER": 0, "INTPTLAT": 33.7706269, "INTPTLON": -117.2771987, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -117.279053, 33.770015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1119, "felt:has_geometry": true, "felt:h3_index": 644747026387508085, "STATEFP": 6, "PLACEFP": 46520, "PLACENS": 2583076, "GEOID": 646520, "NAME": "Meadowbrook", "NAMELSAD": "Meadowbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17490920, "AWATER": 64888, "INTPTLAT": 33.7257821, "INTPTLON": -117.2850862, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -117.284546, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1580, "felt:has_geometry": true, "felt:h3_index": 644747027188063325, "STATEFP": 6, "PLACEFP": 86244, "PLACENS": 2409622, "GEOID": 686244, "NAME": "Woodcrest", "NAMELSAD": "Woodcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29539146, "AWATER": 0, "INTPTLAT": 33.8789457, "INTPTLON": -117.368671, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -117.366943, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 99, "felt:has_geometry": true, "felt:h3_index": 644747027230679468, "STATEFP": 6, "PLACEFP": 62000, "PLACENS": 2410965, "GEOID": 662000, "NAME": "Riverside", "NAMELSAD": "Riverside city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 210174364, "AWATER": 797658, "INTPTLAT": 33.9381433, "INTPTLON": -117.3931676, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -117.394409, 33.938803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 931, "felt:has_geometry": true, "felt:h3_index": 644747027516415008, "STATEFP": 6, "PLACEFP": 34302, "PLACENS": 2408398, "GEOID": 634302, "NAME": "Home Gardens", "NAMELSAD": "Home Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3964557, "AWATER": 0, "INTPTLAT": 33.878328, "INTPTLON": -117.5115353, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -117.509766, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 815, "felt:has_geometry": true, "felt:h3_index": 644747027541467181, "STATEFP": 6, "PLACEFP": 22457, "PLACENS": 2583009, "GEOID": 622457, "NAME": "El Sobrante", "NAMELSAD": "El Sobrante CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18733299, "AWATER": 0, "INTPTLAT": 33.8724646, "INTPTLON": -117.4625173, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -117.460327, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1016, "felt:has_geometry": true, "felt:h3_index": 644747027705934632, "STATEFP": 6, "PLACEFP": 39645, "PLACENS": 2583051, "GEOID": 639645, "NAME": "Lake Mathews", "NAMELSAD": "Lake Mathews CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41251878, "AWATER": 0, "INTPTLAT": 33.8249659, "INTPTLON": -117.3683428, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -117.366943, 33.824794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1026, "felt:has_geometry": true, "felt:h3_index": 644747028529011912, "STATEFP": 6, "PLACEFP": 39836, "PLACENS": 2408564, "GEOID": 639836, "NAME": "Lakeview", "NAMELSAD": "Lakeview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8442803, "AWATER": 0, "INTPTLAT": 33.8284655, "INTPTLON": -117.1233341, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -117.125244, 33.829357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1585, "felt:has_geometry": true, "felt:h3_index": 644747030219340659, "STATEFP": 6, "PLACEFP": 86594, "PLACENS": 2409630, "GEOID": 686594, "NAME": "Wrightwood", "NAMELSAD": "Wrightwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15414197, "AWATER": 8669, "INTPTLAT": 34.3459882, "INTPTLON": -117.6275788, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -117.625122, 34.347971 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1210, "felt:has_geometry": true, "felt:h3_index": 644747032231221429, "STATEFP": 6, "PLACEFP": 52760, "PLACENS": 2583100, "GEOID": 652760, "NAME": "Oak Hills", "NAMELSAD": "Oak Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 63496967, "AWATER": 0, "INTPTLAT": 34.3899435, "INTPTLON": -117.403094, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -117.405396, 34.388779 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 271, "felt:has_geometry": true, "felt:h3_index": 644747032503061924, "STATEFP": 6, "PLACEFP": 33434, "PLACENS": 2410751, "GEOID": 633434, "NAME": "Hesperia", "NAMELSAD": "Hesperia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 188241904, "AWATER": 251762, "INTPTLAT": 34.3970383, "INTPTLON": -117.3151976, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -117.317505, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1278, "felt:has_geometry": true, "felt:h3_index": 644747033356132490, "STATEFP": 6, "PLACEFP": 57302, "PLACENS": 2627936, "GEOID": 657302, "NAME": "Piñon Hills", "NAMELSAD": "Piñon Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83177827, "AWATER": 7520, "INTPTLAT": 34.4456075, "INTPTLON": -117.6235632, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -117.625122, 34.447689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1265, "felt:has_geometry": true, "felt:h3_index": 644747033605099828, "STATEFP": 6, "PLACEFP": 56826, "PLACENS": 2627935, "GEOID": 656826, "NAME": "Phelan", "NAMELSAD": "Phelan CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 155638217, "AWATER": 0, "INTPTLAT": 34.439816, "INTPTLON": -117.5248288, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -117.526245, 34.438628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 48, "felt:has_geometry": true, "felt:h3_index": 644747034385786001, "STATEFP": 6, "PLACEFP": 59451, "PLACENS": 2411514, "GEOID": 659451, "NAME": "Rancho Cucamonga", "NAMELSAD": "Rancho Cucamonga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120441408, "AWATER": 24723, "INTPTLAT": 34.1303055, "INTPTLON": -117.5660665, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -117.564697, 34.129995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1365, "felt:has_geometry": true, "felt:h3_index": 644747034561812073, "STATEFP": 6, "PLACEFP": 64462, "PLACENS": 2409248, "GEOID": 664462, "NAME": "San Antonio Heights", "NAMELSAD": "San Antonio Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6334954, "AWATER": 417287, "INTPTLAT": 34.1564204, "INTPTLON": -117.6587047, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -117.658081, 34.157273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 332, "felt:has_geometry": true, "felt:h3_index": 644747034960402868, "STATEFP": 6, "PLACEFP": 53896, "PLACENS": 2411323, "GEOID": 653896, "NAME": "Ontario", "NAMELSAD": "Ontario city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 129459234, "AWATER": 75071, "INTPTLAT": 34.0376483, "INTPTLON": -117.6044326, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -117.603149, 34.039005 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 359, "felt:has_geometry": true, "felt:h3_index": 644747035020499818, "STATEFP": 6, "PLACEFP": 81344, "PLACENS": 2412137, "GEOID": 681344, "NAME": "Upland", "NAMELSAD": "Upland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40363418, "AWATER": 86983, "INTPTLAT": 34.1160732, "INTPTLON": -117.6599224, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -117.658081, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 124, "felt:has_geometry": true, "felt:h3_index": 644747036025422032, "STATEFP": 6, "PLACEFP": 40830, "PLACENS": 2411584, "GEOID": 640830, "NAME": "La Verne", "NAMELSAD": "La Verne city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21813497, "AWATER": 288109, "INTPTLAT": 34.1205212, "INTPTLON": -117.7699278, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -117.767944, 34.120900 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 418, "felt:has_geometry": true, "felt:h3_index": 644747036298516076, "STATEFP": 6, "PLACEFP": 13756, "PLACENS": 2409465, "GEOID": 613756, "NAME": "Claremont", "NAMELSAD": "Claremont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34537069, "AWATER": 352454, "INTPTLAT": 34.1249246, "INTPTLON": -117.7139226, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -117.713013, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1087, "felt:has_geometry": true, "felt:h3_index": 644747036710988390, "STATEFP": 6, "PLACEFP": 44644, "PLACENS": 2583066, "GEOID": 644644, "NAME": "Lytle Creek", "NAMELSAD": "Lytle Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15586138, "AWATER": 0, "INTPTLAT": 34.2499257, "INTPTLON": -117.5044314, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -117.504272, 34.248136 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1181, "felt:has_geometry": true, "felt:h3_index": 644747037397406114, "STATEFP": 6, "PLACEFP": 50132, "PLACENS": 2408894, "GEOID": 650132, "NAME": "Muscoy", "NAMELSAD": "Muscoy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7876493, "AWATER": 0, "INTPTLAT": 34.1551759, "INTPTLON": -117.3477205, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -117.350464, 34.157273 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1163, "felt:has_geometry": true, "felt:h3_index": 644747041432004253, "STATEFP": 6, "PLACEFP": 49348, "PLACENS": 2408870, "GEOID": 649348, "NAME": "Morongo Valley", "NAMELSAD": "Morongo Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 65317007, "AWATER": 0, "INTPTLAT": 34.0723774, "INTPTLON": -116.5627267, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -116.564941, 34.070862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 559, "felt:has_geometry": true, "felt:h3_index": 644747042063014814, "STATEFP": 6, "PLACEFP": 6406, "PLACENS": 2407838, "GEOID": 606406, "NAME": "Big Bear City", "NAMELSAD": "Big Bear City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82917622, "AWATER": 44975, "INTPTLAT": 34.2541177, "INTPTLON": -116.7963779, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -116.795654, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 611, "felt:has_geometry": true, "felt:h3_index": 644747043144326483, "STATEFP": 6, "PLACEFP": 9360, "PLACENS": 2407936, "GEOID": 609360, "NAME": "Cabazon", "NAMELSAD": "Cabazon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12674708, "AWATER": 0, "INTPTLAT": 33.9127262, "INTPTLON": -116.7828306, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 33.911454 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1567, "felt:has_geometry": true, "felt:h3_index": 644747043445762675, "STATEFP": 6, "PLACEFP": 85208, "PLACENS": 2583184, "GEOID": 685208, "NAME": "Whitewater", "NAMELSAD": "Whitewater CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25581193, "AWATER": 0, "INTPTLAT": 33.9355902, "INTPTLON": -116.687212, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -116.685791, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 185, "felt:has_geometry": true, "felt:h3_index": 644747044087445221, "STATEFP": 6, "PLACEFP": 3820, "PLACENS": 2409785, "GEOID": 603820, "NAME": "Banning", "NAMELSAD": "Banning city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 60180482, "AWATER": 0, "INTPTLAT": 33.9459026, "INTPTLON": -116.8990441, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -116.900024, 33.947917 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1209, "felt:has_geometry": true, "felt:h3_index": 644747044203420866, "STATEFP": 6, "PLACEFP": 52715, "PLACENS": 2583099, "GEOID": 652715, "NAME": "Oak Glen", "NAMELSAD": "Oak Glen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 38839776, "AWATER": 11185, "INTPTLAT": 34.0410432, "INTPTLON": -116.9623071, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -116.960449, 34.039005 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 667, "felt:has_geometry": true, "felt:h3_index": 644747044742411950, "STATEFP": 6, "PLACEFP": 12916, "PLACENS": 2408019, "GEOID": 612916, "NAME": "Cherry Valley", "NAMELSAD": "Cherry Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20748133, "AWATER": 0, "INTPTLAT": 33.9796419, "INTPTLON": -116.9693705, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -116.971436, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 213, "felt:has_geometry": true, "felt:h3_index": 644747045905245580, "STATEFP": 6, "PLACEFP": 18996, "PLACENS": 2410328, "GEOID": 618996, "NAME": "Desert Hot Springs", "NAMELSAD": "Desert Hot Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78026380, "AWATER": 930813, "INTPTLAT": 33.9575914, "INTPTLON": -116.5422837, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -116.542969, 33.957030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1433, "felt:has_geometry": true, "felt:h3_index": 644747048544577545, "STATEFP": 6, "PLACEFP": 73700, "PLACENS": 2583150, "GEOID": 673700, "NAME": "Spring Valley Lake", "NAMELSAD": "Spring Valley Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7833090, "AWATER": 885216, "INTPTLAT": 34.4968183, "INTPTLON": -117.267587, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -117.268066, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 269, "felt:has_geometry": true, "felt:h3_index": 644747048740075378, "STATEFP": 6, "PLACEFP": 2364, "PLACENS": 2412372, "GEOID": 602364, "NAME": "Apple Valley", "NAMELSAD": "Apple Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 199444691, "AWATER": 182413, "INTPTLAT": 34.5333761, "INTPTLON": -117.2103584, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -117.207642, 34.533712 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1086, "felt:has_geometry": true, "felt:h3_index": 644747049448031517, "STATEFP": 6, "PLACEFP": 44420, "PLACENS": 2627937, "GEOID": 644420, "NAME": "Lucerne Valley", "NAMELSAD": "Lucerne Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 273570981, "AWATER": 0, "INTPTLAT": 34.4427191, "INTPTLON": -116.9020927, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -116.900024, 34.443159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1354, "felt:has_geometry": true, "felt:h3_index": 644747051610516904, "STATEFP": 6, "PLACEFP": 63316, "PLACENS": 2409224, "GEOID": 663316, "NAME": "Running Springs", "NAMELSAD": "Running Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10888685, "AWATER": 23184, "INTPTLAT": 34.2113617, "INTPTLON": -117.1045717, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -117.103271, 34.211802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 712, "felt:has_geometry": true, "felt:h3_index": 644747053195790667, "STATEFP": 6, "PLACEFP": 17162, "PLACENS": 2407681, "GEOID": 617162, "NAME": "Crestline", "NAMELSAD": "Crestline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 36012359, "AWATER": 308820, "INTPTLAT": 34.2540767, "INTPTLON": -117.2867092, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -117.284546, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1006, "felt:has_geometry": true, "felt:h3_index": 644747053443966362, "STATEFP": 6, "PLACEFP": 39444, "PLACENS": 2408532, "GEOID": 639444, "NAME": "Lake Arrowhead", "NAMELSAD": "Lake Arrowhead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45786324, "AWATER": 3169654, "INTPTLAT": 34.2540272, "INTPTLON": -117.1780911, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -117.180176, 34.252676 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 369, "felt:has_geometry": true, "felt:h3_index": 644747054570202468, "STATEFP": 6, "PLACEFP": 6434, "PLACENS": 2409843, "GEOID": 606434, "NAME": "Big Bear Lake", "NAMELSAD": "Big Bear Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16164304, "AWATER": 474774, "INTPTLAT": 34.2428884, "INTPTLON": -116.8938931, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -116.894531, 34.243595 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 224, "felt:has_geometry": true, "felt:h3_index": 644747056982330284, "STATEFP": 6, "PLACEFP": 59587, "PLACENS": 2411517, "GEOID": 659587, "NAME": "Rancho Santa Margarita", "NAMELSAD": "Rancho Santa Margarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 33483309, "AWATER": 122877, "INTPTLAT": 33.6323319, "INTPTLON": -117.5990075, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -117.597656, 33.632916 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1147, "felt:has_geometry": true, "felt:h3_index": 644747057083490932, "STATEFP": 6, "PLACEFP": 48410, "PLACENS": 2805246, "GEOID": 648410, "NAME": "Modjeska", "NAMELSAD": "Modjeska CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5189981, "AWATER": 0, "INTPTLAT": 33.7091329, "INTPTLON": -117.6297041, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -117.630615, 33.710632 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1493, "felt:has_geometry": true, "felt:h3_index": 644747057388603443, "STATEFP": 6, "PLACEFP": 80210, "PLACENS": 2812660, "GEOID": 680210, "NAME": "Trabuco Canyon", "NAMELSAD": "Trabuco Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18861606, "AWATER": 0, "INTPTLAT": 33.6782283, "INTPTLON": -117.5940094, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -117.592163, 33.678640 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1035, "felt:has_geometry": true, "felt:h3_index": 644747057458590926, "STATEFP": 6, "PLACEFP": 40526, "PLACENS": 2408577, "GEOID": 640526, "NAME": "Las Flores", "NAMELSAD": "Las Flores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6522767, "AWATER": 0, "INTPTLAT": 33.5838362, "INTPTLON": -117.6237413, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -117.625122, 33.582591 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 701, "felt:has_geometry": true, "felt:h3_index": 644747057464647986, "STATEFP": 6, "PLACEFP": 16580, "PLACENS": 2407666, "GEOID": 616580, "NAME": "Coto de Caza", "NAMELSAD": "Coto de Caza CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20196169, "AWATER": 60610, "INTPTLAT": 33.5970366, "INTPTLON": -117.5864845, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -117.586670, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 223, "felt:has_geometry": true, "felt:h3_index": 644747057572762291, "STATEFP": 6, "PLACEFP": 48256, "PLACENS": 2411123, "GEOID": 648256, "NAME": "Mission Viejo", "NAMELSAD": "Mission Viejo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45738193, "AWATER": 959475, "INTPTLAT": 33.6093352, "INTPTLON": -117.656471, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -117.658081, 33.610045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 184, "felt:has_geometry": true, "felt:h3_index": 644747058044247465, "STATEFP": 6, "PLACEFP": 85446, "PLACENS": 2497148, "GEOID": 685446, "NAME": "Wildomar", "NAMELSAD": "Wildomar city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61496131, "AWATER": 0, "INTPTLAT": 33.6172783, "INTPTLON": -117.2583117, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 33.619194 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 201, "felt:has_geometry": true, "felt:h3_index": 644747058207460419, "STATEFP": 6, "PLACEFP": 10928, "PLACENS": 2409979, "GEOID": 610928, "NAME": "Canyon Lake", "NAMELSAD": "Canyon Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10070209, "AWATER": 1912692, "INTPTLAT": 33.6883023, "INTPTLON": -117.2635469, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -117.262573, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 177, "felt:has_geometry": true, "felt:h3_index": 644747058473869637, "STATEFP": 6, "PLACEFP": 46842, "PLACENS": 2497157, "GEOID": 646842, "NAME": "Menifee", "NAMELSAD": "Menifee city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 120340515, "AWATER": 381612, "INTPTLAT": 33.6898575, "INTPTLON": -117.1843827, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -117.185669, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 373, "felt:has_geometry": true, "felt:h3_index": 644747058839430387, "STATEFP": 6, "PLACEFP": 50076, "PLACENS": 2411199, "GEOID": 650076, "NAME": "Murrieta", "NAMELSAD": "Murrieta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 86858399, "AWATER": 93770, "INTPTLAT": 33.5721337, "INTPTLON": -117.1904442, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -117.191162, 33.573438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1474, "felt:has_geometry": true, "felt:h3_index": 644747059181708180, "STATEFP": 6, "PLACEFP": 78138, "PLACENS": 2629134, "GEOID": 678138, "NAME": "Temescal Valley", "NAMELSAD": "Temescal Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50080852, "AWATER": 92242, "INTPTLAT": 33.7580032, "INTPTLON": -117.4671588, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -117.465820, 33.756315 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1539, "felt:has_geometry": true, "felt:h3_index": 644747059388097024, "STATEFP": 6, "PLACEFP": 83460, "PLACENS": 2583181, "GEOID": 683460, "NAME": "Warm Springs", "NAMELSAD": "Warm Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3629535, "AWATER": 0, "INTPTLAT": 33.7066811, "INTPTLON": -117.3343467, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 102, "felt:has_geometry": true, "felt:h3_index": 644747059879569155, "STATEFP": 6, "PLACEFP": 39486, "PLACENS": 2411601, "GEOID": 639486, "NAME": "Lake Elsinore", "NAMELSAD": "Lake Elsinore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 99115608, "AWATER": 13658093, "INTPTLAT": 33.685956, "INTPTLON": -117.3354038, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -117.333984, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1014, "felt:has_geometry": true, "felt:h3_index": 644747059912990947, "STATEFP": 6, "PLACEFP": 39598, "PLACENS": 2408560, "GEOID": 639598, "NAME": "Lakeland Village", "NAMELSAD": "Lakeland Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22716621, "AWATER": 662460, "INTPTLAT": 33.6489563, "INTPTLON": -117.366823, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -117.366943, 33.651208 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 226, "felt:has_geometry": true, "felt:h3_index": 644747061280164672, "STATEFP": 6, "PLACEFP": 65084, "PLACENS": 2411781, "GEOID": 665084, "NAME": "San Clemente", "NAMELSAD": "San Clemente city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 47542789, "AWATER": 1940302, "INTPTLAT": 33.4491433, "INTPTLON": -117.6131198, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -117.614136, 33.449777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 999, "felt:has_geometry": true, "felt:h3_index": 644747061373484104, "STATEFP": 6, "PLACEFP": 39114, "PLACENS": 2583048, "GEOID": 639114, "NAME": "Ladera Ranch", "NAMELSAD": "Ladera Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12807936, "AWATER": 0, "INTPTLAT": 33.5491462, "INTPTLON": -117.6417408, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 33.550551 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 260, "felt:has_geometry": true, "felt:h3_index": 644747061405687052, "STATEFP": 6, "PLACEFP": 68028, "PLACENS": 2411793, "GEOID": 668028, "NAME": "San Juan Capistrano", "NAMELSAD": "San Juan Capistrano city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37374655, "AWATER": 0, "INTPTLAT": 33.5008888, "INTPTLON": -117.6543878, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -117.652588, 33.500179 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1312, "felt:has_geometry": true, "felt:h3_index": 644747061659048178, "STATEFP": 6, "PLACEFP": 59503, "PLACENS": 2805249, "GEOID": 659503, "NAME": "Rancho Mission Viejo", "NAMELSAD": "Rancho Mission Viejo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 97922929, "AWATER": 0, "INTPTLAT": 33.5140033, "INTPTLON": -117.5617945, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -117.559204, 33.513919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 263, "felt:has_geometry": true, "felt:h3_index": 644747064429065921, "STATEFP": 6, "PLACEFP": 86832, "PLACENS": 2412321, "GEOID": 686832, "NAME": "Yorba Linda", "NAMELSAD": "Yorba Linda city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51676743, "AWATER": 52602, "INTPTLAT": 33.8890375, "INTPTLON": -117.7720695, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 252, "felt:has_geometry": true, "felt:h3_index": 644747064478541166, "STATEFP": 6, "PLACEFP": 2000, "PLACENS": 2409704, "GEOID": 602000, "NAME": "Anaheim", "NAMELSAD": "Anaheim city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 130232144, "AWATER": 1567025, "INTPTLAT": 33.8555018, "INTPTLON": -117.7586572, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -117.756958, 33.856732 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 276, "felt:has_geometry": true, "felt:h3_index": 644747064817237222, "STATEFP": 6, "PLACEFP": 13214, "PLACENS": 2409454, "GEOID": 613214, "NAME": "Chino Hills", "NAMELSAD": "Chino Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 115642341, "AWATER": 123913, "INTPTLAT": 33.9429693, "INTPTLON": -117.7256483, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -117.723999, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 228, "felt:has_geometry": true, "felt:h3_index": 644747064970197236, "STATEFP": 6, "PLACEFP": 82744, "PLACENS": 2412158, "GEOID": 682744, "NAME": "Villa Park", "NAMELSAD": "Villa Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5380380, "AWATER": 237, "INTPTLAT": 33.8179855, "INTPTLON": -117.8112928, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -117.811890, 33.820230 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 259, "felt:has_geometry": true, "felt:h3_index": 644747065102227620, "STATEFP": 6, "PLACEFP": 57526, "PLACENS": 2411432, "GEOID": 657526, "NAME": "Placentia", "NAMELSAD": "Placentia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17126768, "AWATER": 37381, "INTPTLAT": 33.8811581, "INTPTLON": -117.8547827, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -117.855835, 33.879537 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 109, "felt:has_geometry": true, "felt:h3_index": 644747065500019905, "STATEFP": 6, "PLACEFP": 39304, "PLACENS": 2411572, "GEOID": 639304, "NAME": "La Habra Heights", "NAMELSAD": "La Habra Heights city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15951225, "AWATER": 4740, "INTPTLAT": 33.9589591, "INTPTLON": -117.9489729, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.957030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 188, "felt:has_geometry": true, "felt:h3_index": 644747065575401878, "STATEFP": 6, "PLACEFP": 39290, "PLACENS": 2411571, "GEOID": 639290, "NAME": "La Habra", "NAMELSAD": "La Habra city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19578956, "AWATER": 15869, "INTPTLAT": 33.927927, "INTPTLON": -117.951554, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.929688 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 907, "felt:has_geometry": true, "felt:h3_index": 644747065616255184, "STATEFP": 6, "PLACEFP": 31596, "PLACENS": 2408344, "GEOID": 631596, "NAME": "Hacienda Heights", "NAMELSAD": "Hacienda Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28884806, "AWATER": 14534, "INTPTLAT": 33.9958532, "INTPTLON": -117.9730226, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -117.971191, 33.998027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1352, "felt:has_geometry": true, "felt:h3_index": 644747065778279710, "STATEFP": 6, "PLACEFP": 63218, "PLACENS": 2409220, "GEOID": 663218, "NAME": "Rowland Heights", "NAMELSAD": "Rowland Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33868894, "AWATER": 20101, "INTPTLAT": 33.9703133, "INTPTLON": -117.8905677, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -117.888794, 33.970698 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1426, "felt:has_geometry": true, "felt:h3_index": 644747065884993810, "STATEFP": 6, "PLACEFP": 73290, "PLACENS": 2408772, "GEOID": 673290, "NAME": "South San Jose Hills", "NAMELSAD": "South San Jose Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3878864, "AWATER": 0, "INTPTLAT": 34.0123323, "INTPTLON": -117.9043633, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -117.905273, 34.011689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 255, "felt:has_geometry": true, "felt:h3_index": 644747066122777962, "STATEFP": 6, "PLACEFP": 28000, "PLACENS": 2410556, "GEOID": 628000, "NAME": "Fullerton", "NAMELSAD": "Fullerton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 58067902, "AWATER": 32825, "INTPTLAT": 33.8857156, "INTPTLON": -117.9280247, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -117.927246, 33.884097 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1428, "felt:has_geometry": true, "felt:h3_index": 644747066239355906, "STATEFP": 6, "PLACEFP": 73430, "PLACENS": 2408778, "GEOID": 673430, "NAME": "South Whittier", "NAMELSAD": "South Whittier CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13824727, "AWATER": 22815, "INTPTLAT": 33.9330802, "INTPTLON": -118.0307712, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -118.031616, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 785, "felt:has_geometry": true, "felt:h3_index": 644747066264019059, "STATEFP": 6, "PLACEFP": 21292, "PLACENS": 2408710, "GEOID": 621292, "NAME": "East Whittier", "NAMELSAD": "East Whittier CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2823028, "AWATER": 0, "INTPTLAT": 33.9243762, "INTPTLON": -117.9887317, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -117.987671, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 186, "felt:has_geometry": true, "felt:h3_index": 644747066322887704, "STATEFP": 6, "PLACEFP": 8100, "PLACENS": 2409897, "GEOID": 608100, "NAME": "Brea", "NAMELSAD": "Brea city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31520533, "AWATER": 99672, "INTPTLAT": 33.9251776, "INTPTLON": -117.8651109, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -117.866821, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 368, "felt:has_geometry": true, "felt:h3_index": 644747066559863579, "STATEFP": 6, "PLACEFP": 21230, "PLACENS": 2650584, "GEOID": 621230, "NAME": "Eastvale", "NAMELSAD": "Eastvale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32837284, "AWATER": 1143505, "INTPTLAT": 33.9632744, "INTPTLON": -117.5823688, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -117.581177, 33.961586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 699, "felt:has_geometry": true, "felt:h3_index": 644747067160306400, "STATEFP": 6, "PLACEFP": 16420, "PLACENS": 2582983, "GEOID": 616420, "NAME": "Coronita", "NAMELSAD": "Coronita CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1569105, "AWATER": 0, "INTPTLAT": 33.8758773, "INTPTLON": -117.6109827, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -117.608643, 33.874976 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 278, "felt:has_geometry": true, "felt:h3_index": 644747067283121880, "STATEFP": 6, "PLACEFP": 13210, "PLACENS": 2409453, "GEOID": 613210, "NAME": "Chino", "NAMELSAD": "Chino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 76596420, "AWATER": 249662, "INTPTLAT": 33.9780368, "INTPTLON": -117.6577189, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -117.658081, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 105, "felt:has_geometry": true, "felt:h3_index": 644747067382683209, "STATEFP": 6, "PLACEFP": 51560, "PLACENS": 2411265, "GEOID": 651560, "NAME": "Norco", "NAMELSAD": "Norco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35890351, "AWATER": 569467, "INTPTLAT": 33.9255186, "INTPTLON": -117.5519578, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -117.553711, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 115, "felt:has_geometry": true, "felt:h3_index": 644747067680746824, "STATEFP": 6, "PLACEFP": 58072, "PLACENS": 2411454, "GEOID": 658072, "NAME": "Pomona", "NAMELSAD": "Pomona city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59529294, "AWATER": 26188, "INTPTLAT": 34.0584937, "INTPTLON": -117.7610909, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -117.762451, 34.057211 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 452, "felt:has_geometry": true, "felt:h3_index": 644747067814318305, "STATEFP": 6, "PLACEFP": 66070, "PLACENS": 2411784, "GEOID": 666070, "NAME": "San Dimas", "NAMELSAD": "San Dimas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38937385, "AWATER": 1009641, "INTPTLAT": 34.1079574, "INTPTLON": -117.8085286, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -117.806396, 34.107256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 330, "felt:has_geometry": true, "felt:h3_index": 644747067958717867, "STATEFP": 6, "PLACEFP": 48788, "PLACENS": 2411141, "GEOID": 648788, "NAME": "Montclair", "NAMELSAD": "Montclair city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14325101, "AWATER": 0, "INTPTLAT": 34.0714926, "INTPTLON": -117.6980798, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -117.696533, 34.070862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 16, "felt:has_geometry": true, "felt:h3_index": 644747068317644611, "STATEFP": 6, "PLACEFP": 83332, "PLACENS": 2412173, "GEOID": 683332, "NAME": "Walnut", "NAMELSAD": "Walnut city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23281857, "AWATER": 9650, "INTPTLAT": 34.0371955, "INTPTLON": -117.8556059, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -117.855835, 34.039005 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 117, "felt:has_geometry": true, "felt:h3_index": 644747068372046986, "STATEFP": 6, "PLACEFP": 19192, "PLACENS": 2410334, "GEOID": 619192, "NAME": "Diamond Bar", "NAMELSAD": "Diamond Bar city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38533548, "AWATER": 13084, "INTPTLAT": 34.0015725, "INTPTLON": -117.8176013, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -117.817383, 34.002581 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1207, "felt:has_geometry": true, "felt:h3_index": 644747068844882610, "STATEFP": 6, "PLACEFP": 52379, "PLACENS": 2408951, "GEOID": 652379, "NAME": "North Tustin", "NAMELSAD": "North Tustin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17044859, "AWATER": 0, "INTPTLAT": 33.7635438, "INTPTLON": -117.7947169, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -117.795410, 33.765449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 231, "felt:has_geometry": true, "felt:h3_index": 644747068915210334, "STATEFP": 6, "PLACEFP": 80854, "PLACENS": 2412117, "GEOID": 680854, "NAME": "Tustin", "NAMELSAD": "Tustin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28810199, "AWATER": 0, "INTPTLAT": 33.7309205, "INTPTLON": -117.8105981, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -117.811890, 33.728908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 187, "felt:has_geometry": true, "felt:h3_index": 644747069294401651, "STATEFP": 6, "PLACEFP": 36770, "PLACENS": 2410116, "GEOID": 636770, "NAME": "Irvine", "NAMELSAD": "Irvine city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 169930134, "AWATER": 802010, "INTPTLAT": 33.6783986, "INTPTLON": -117.7712541, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -117.773438, 33.678640 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 239, "felt:has_geometry": true, "felt:h3_index": 644747069609429270, "STATEFP": 6, "PLACEFP": 39496, "PLACENS": 2411602, "GEOID": 639496, "NAME": "Lake Forest", "NAMELSAD": "Lake Forest city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 43288926, "AWATER": 202929, "INTPTLAT": 33.6549461, "INTPTLON": -117.6758479, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -117.674561, 33.655781 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 256, "felt:has_geometry": true, "felt:h3_index": 644747069863937115, "STATEFP": 6, "PLACEFP": 29000, "PLACENS": 2410568, "GEOID": 629000, "NAME": "Garden Grove", "NAMELSAD": "Garden Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 46498892, "AWATER": 31066, "INTPTLAT": 33.7787816, "INTPTLON": -117.9604719, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -117.960205, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 258, "felt:has_geometry": true, "felt:h3_index": 644747070114474419, "STATEFP": 6, "PLACEFP": 53980, "PLACENS": 2411325, "GEOID": 653980, "NAME": "Orange", "NAMELSAD": "Orange city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 66477990, "AWATER": 386916, "INTPTLAT": 33.7869711, "INTPTLON": -117.8612654, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -117.861328, 33.788279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 235, "felt:has_geometry": true, "felt:h3_index": 644747070384125553, "STATEFP": 6, "PLACEFP": 25380, "PLACENS": 2410537, "GEOID": 625380, "NAME": "Fountain Valley", "NAMELSAD": "Fountain Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23493866, "AWATER": 33638, "INTPTLAT": 33.7105823, "INTPTLON": -117.951129, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 33.710632 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 189, "felt:has_geometry": true, "felt:h3_index": 644747070505442577, "STATEFP": 6, "PLACEFP": 73962, "PLACENS": 2411969, "GEOID": 673962, "NAME": "Stanton", "NAMELSAD": "Stanton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8035789, "AWATER": 0, "INTPTLAT": 33.8002333, "INTPTLON": -117.9934493, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 33.801974 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 262, "felt:has_geometry": true, "felt:h3_index": 644747070515243433, "STATEFP": 6, "PLACEFP": 84550, "PLACENS": 2412236, "GEOID": 684550, "NAMELSAD": "Westminster city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26001396, "AWATER": 0, "INTPTLAT": 33.7522916, "INTPTLON": -117.9938679, "NAME": "Westminster,Midway City", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 33.751748 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 261, "felt:has_geometry": true, "felt:h3_index": 644747070590462032, "STATEFP": 6, "PLACEFP": 69000, "PLACENS": 2411814, "GEOID": 669000, "NAME": "Santa Ana", "NAMELSAD": "Santa Ana city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 70904555, "AWATER": 79932, "INTPTLAT": 33.7363317, "INTPTLON": -117.8828997, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 33.738045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 793, "felt:has_geometry": true, "felt:h3_index": 644747071172589648, "STATEFP": 6, "PLACEFP": 21810, "PLACENS": 2408053, "GEOID": 621810, "NAME": "El Cerrito", "NAMELSAD": "El Cerrito CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6738599, "AWATER": 558502, "INTPTLAT": 33.8381856, "INTPTLON": -117.522205, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -117.520752, 33.838483 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 101, "felt:has_geometry": true, "felt:h3_index": 644747071256568086, "STATEFP": 6, "PLACEFP": 16350, "PLACENS": 2410232, "GEOID": 616350, "NAME": "Corona", "NAMELSAD": "Corona city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103320711, "AWATER": 53926, "INTPTLAT": 33.8619689, "INTPTLON": -117.5654945, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -117.564697, 33.861293 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1405, "felt:has_geometry": true, "felt:h3_index": 644747071405494698, "STATEFP": 6, "PLACEFP": 71918, "PLACENS": 2805252, "GEOID": 671918, "NAME": "Silverado", "NAMELSAD": "Silverado CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14812702, "AWATER": 0, "INTPTLAT": 33.7481762, "INTPTLON": -117.6284789, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -117.630615, 33.747180 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1571, "felt:has_geometry": true, "felt:h3_index": 644747071474133585, "STATEFP": 6, "PLACEFP": 85587, "PLACENS": 2812659, "GEOID": 685587, "NAME": "Williams Canyon", "NAMELSAD": "Williams Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1465500, "AWATER": 0, "INTPTLAT": 33.7289126, "INTPTLON": -117.6394381, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 33.728908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1357, "felt:has_geometry": true, "felt:h3_index": 644747073577834850, "STATEFP": 6, "PLACEFP": 64056, "PLACENS": 2812661, "GEOID": 664056, "NAME": "Sage", "NAMELSAD": "Sage CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 176786860, "AWATER": 15601, "INTPTLAT": 33.594066, "INTPTLON": -116.9103847, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -116.911011, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 895, "felt:has_geometry": true, "felt:h3_index": 644747074075142700, "STATEFP": 6, "PLACEFP": 30944, "PLACENS": 2630600, "GEOID": 630944, "NAME": "Green Acres", "NAMELSAD": "Green Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3633842, "AWATER": 0, "INTPTLAT": 33.7349718, "INTPTLON": -117.0782441, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -117.075806, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1576, "felt:has_geometry": true, "felt:h3_index": 644747074141280538, "STATEFP": 6, "PLACEFP": 85894, "PLACENS": 2409606, "GEOID": 685894, "NAME": "Winchester", "NAMELSAD": "Winchester CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20773790, "AWATER": 0, "INTPTLAT": 33.71463, "INTPTLON": -117.0773979, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -117.075806, 33.715202 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 932, "felt:has_geometry": true, "felt:h3_index": 644747074286051486, "STATEFP": 6, "PLACEFP": 34316, "PLACENS": 2408399, "GEOID": 634316, "NAME": "Homeland", "NAMELSAD": "Homeland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11060967, "AWATER": 0, "INTPTLAT": 33.7458815, "INTPTLON": -117.1132414, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 33.747180 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1342, "felt:has_geometry": true, "felt:h3_index": 644747074300905248, "STATEFP": 6, "PLACEFP": 62756, "PLACENS": 2409205, "GEOID": 662756, "NAME": "Romoland", "NAMELSAD": "Romoland CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6890933, "AWATER": 0, "INTPTLAT": 33.7648062, "INTPTLON": -117.1571071, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 33.765449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 104, "felt:has_geometry": true, "felt:h3_index": 644747074353846796, "STATEFP": 6, "PLACEFP": 33182, "PLACENS": 2410738, "GEOID": 633182, "NAME": "Hemet", "NAMELSAD": "Hemet city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 75787408, "AWATER": 0, "INTPTLAT": 33.7340679, "INTPTLON": -116.9968083, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -116.998901, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 946, "felt:has_geometry": true, "felt:h3_index": 644747075151599266, "STATEFP": 6, "PLACEFP": 36203, "PLACENS": 2408414, "GEOID": 636203, "NAME": "Idyllwild-Pine Cove", "NAMELSAD": "Idyllwild-Pine Cove CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35541508, "AWATER": 26090, "INTPTLAT": 33.7442086, "INTPTLON": -116.7306896, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -116.729736, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1167, "felt:has_geometry": true, "felt:h3_index": 644747075217654699, "STATEFP": 6, "PLACEFP": 49544, "PLACENS": 2629133, "GEOID": 649544, "NAME": "Mountain Center", "NAMELSAD": "Mountain Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4880669, "AWATER": 4439, "INTPTLAT": 33.7107493, "INTPTLON": -116.7233115, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -116.724243, 33.710632 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 103, "felt:has_geometry": true, "felt:h3_index": 644747076412385956, "STATEFP": 6, "PLACEFP": 4758, "PLACENS": 2409805, "GEOID": 604758, "NAME": "Beaumont", "NAMELSAD": "Beaumont city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78560690, "AWATER": 35531, "INTPTLAT": 33.8767216, "INTPTLON": -116.9530089, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -116.954956, 33.874976 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 769, "felt:has_geometry": true, "felt:h3_index": 644747076834795843, "STATEFP": 6, "PLACEFP": 20697, "PLACENS": 2408708, "GEOID": 620697, "NAME": "East Hemet", "NAMELSAD": "East Hemet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13464992, "AWATER": 0, "INTPTLAT": 33.7301141, "INTPTLON": -116.9410012, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -116.938477, 33.728908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1603, "felt:has_geometry": true, "felt:h3_index": 644747076862430301, "STATEFP": 6, "PLACEFP": 81708, "PLACENS": 2409393, "GEOID": 681708, "NAME": "Valle Vista", "NAMELSAD": "Valle Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17860487, "AWATER": 453010, "INTPTLAT": 33.7433625, "INTPTLON": -116.888783, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -116.889038, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 107, "felt:has_geometry": true, "felt:h3_index": 644747076980868185, "STATEFP": 6, "PLACEFP": 67112, "PLACENS": 2411788, "GEOID": 667112, "NAME": "San Jacinto", "NAMELSAD": "San Jacinto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67011568, "AWATER": 416801, "INTPTLAT": 33.7988642, "INTPTLON": -116.9959145, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -116.993408, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1020, "felt:has_geometry": true, "felt:h3_index": 644747077596899179, "STATEFP": 6, "PLACEFP": 39715, "PLACENS": 2583052, "GEOID": 639715, "NAME": "Lake Riverside", "NAMELSAD": "Lake Riverside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18888592, "AWATER": 216496, "INTPTLAT": 33.518735, "INTPTLON": -116.8121026, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -116.812134, 33.518499 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 488, "felt:has_geometry": true, "felt:h3_index": 644747078104684645, "STATEFP": 6, "PLACEFP": 464, "PLACENS": 2582929, "GEOID": 600464, "NAME": "Aguanga", "NAMELSAD": "Aguanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35222110, "AWATER": 0, "INTPTLAT": 33.4522463, "INTPTLON": -116.8554705, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -116.856079, 33.454360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 862, "felt:has_geometry": true, "felt:h3_index": 644747078611887798, "STATEFP": 6, "PLACEFP": 26067, "PLACENS": 2583019, "GEOID": 626067, "NAME": "French Valley", "NAMELSAD": "French Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28156302, "AWATER": 15910, "INTPTLAT": 33.5994608, "INTPTLON": -117.1064951, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -117.108765, 33.600894 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 212, "felt:has_geometry": true, "felt:h3_index": 644747078997646037, "STATEFP": 6, "PLACEFP": 78120, "PLACENS": 2412044, "GEOID": 678120, "NAME": "Temecula", "NAMELSAD": "Temecula city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 96288271, "AWATER": 24829, "INTPTLAT": 33.4930728, "INTPTLON": -117.1317341, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -117.130737, 33.491017 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 514, "felt:has_geometry": true, "felt:h3_index": 644747079546123337, "STATEFP": 6, "PLACEFP": 2294, "PLACENS": 2582935, "GEOID": 602294, "NAME": "Anza", "NAMELSAD": "Anza CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71470883, "AWATER": 212166, "INTPTLAT": 33.5615903, "INTPTLON": -116.6960661, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -116.696777, 33.559707 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1050, "felt:has_geometry": true, "felt:h3_index": 644747092349047627, "STATEFP": 6, "PLACEFP": 41208, "PLACENS": 2583056, "GEOID": 641208, "NAME": "Leona Valley", "NAMELSAD": "Leona Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 48155344, "AWATER": 70714, "INTPTLAT": 34.608144, "INTPTLON": -118.3013217, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 34.606085 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1012, "felt:has_geometry": true, "felt:h3_index": 644747093450220424, "STATEFP": 6, "PLACEFP": 39556, "PLACENS": 2583050, "GEOID": 639556, "NAME": "Lake Hughes", "NAMELSAD": "Lake Hughes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27506574, "AWATER": 154600, "INTPTLAT": 34.682415399999999, "INTPTLON": -118.4519379, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -118.454590, 34.682911 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 804, "felt:has_geometry": true, "felt:h3_index": 644747093738219625, "STATEFP": 6, "PLACEFP": 21964, "PLACENS": 2583006, "GEOID": 621964, "NAME": "Elizabeth Lake", "NAMELSAD": "Elizabeth Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16066199, "AWATER": 768664, "INTPTLAT": 34.6564882, "INTPTLON": -118.379847, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -118.377686, 34.655804 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 898, "felt:has_geometry": true, "felt:h3_index": 644747094204509040, "STATEFP": 6, "PLACEFP": 31092, "PLACENS": 2583029, "GEOID": 631092, "NAME": "Green Valley", "NAMELSAD": "Green Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33175008, "AWATER": 497, "INTPTLAT": 34.6174149, "INTPTLON": -118.4050226, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -118.405151, 34.619647 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 13, "felt:has_geometry": true, "felt:h3_index": 644747094663775622, "STATEFP": 6, "PLACEFP": 69088, "PLACENS": 2411819, "GEOID": 669088, "NAME": "Santa Clarita", "NAMELSAD": "Santa Clarita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 183251253, "AWATER": 159487, "INTPTLAT": 34.4140833, "INTPTLON": -118.4947294, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -118.493042, 34.415973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1, "felt:has_geometry": true, "felt:h3_index": 644747095056321830, "STATEFP": 6, "PLACEFP": 66140, "PLACENS": 2411785, "GEOID": 666140, "NAME": "San Fernando", "NAMELSAD": "San Fernando city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6149607, "AWATER": 0, "INTPTLAT": 34.2886523, "INTPTLON": -118.4362428, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -118.438110, 34.288992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1521, "felt:has_geometry": true, "felt:h3_index": 644747095689222760, "STATEFP": 6, "PLACEFP": 81967, "PLACENS": 2409388, "GEOID": 681967, "NAME": "Val Verde", "NAMELSAD": "Val Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6644174, "AWATER": 0, "INTPTLAT": 34.4504231, "INTPTLON": -118.6717843, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -118.674316, 34.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 917, "felt:has_geometry": true, "felt:h3_index": 644747095730856149, "STATEFP": 6, "PLACEFP": 32385, "PLACENS": 2583032, "GEOID": 632385, "NAME": "Hasley Canyon", "NAMELSAD": "Hasley Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14865474, "AWATER": 3128, "INTPTLAT": 34.4815987, "INTPTLON": -118.6666891, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -118.668823, 34.479392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 646, "felt:has_geometry": true, "felt:h3_index": 644747095977308468, "STATEFP": 6, "PLACEFP": 11796, "PLACENS": 2582966, "GEOID": 611796, "NAME": "Castaic", "NAMELSAD": "Castaic CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18807882, "AWATER": 44614, "INTPTLAT": 34.4775443, "INTPTLON": -118.6264003, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -118.624878, 34.479392 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1440, "felt:has_geometry": true, "felt:h3_index": 644747096375322634, "STATEFP": 6, "PLACEFP": 74130, "PLACENS": 2583151, "GEOID": 674130, "NAME": "Stevenson Ranch", "NAMELSAD": "Stevenson Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16607592, "AWATER": 2399, "INTPTLAT": 34.38772, "INTPTLON": -118.5843591, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -118.586426, 34.388779 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 487, "felt:has_geometry": true, "felt:h3_index": 644747096810914953, "STATEFP": 6, "PLACEFP": 450, "PLACENS": 2582928, "GEOID": 600450, "NAME": "Agua Dulce", "NAMELSAD": "Agua Dulce CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 59181047, "AWATER": 14646, "INTPTLAT": 34.5016784, "INTPTLON": -118.3206796, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -118.322754, 34.502030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1019, "felt:has_geometry": true, "felt:h3_index": 644747100381466922, "STATEFP": 6, "PLACEFP": 39696, "PLACENS": 2408548, "GEOID": 639696, "NAME": "Lake of the Woods", "NAMELSAD": "Lake of the Woods CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9166577, "AWATER": 1509, "INTPTLAT": 34.8271377, "INTPTLON": -118.997304, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -118.998413, 34.827332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 857, "felt:has_geometry": true, "felt:h3_index": 644747100484128148, "STATEFP": 6, "PLACEFP": 25534, "PLACENS": 2408257, "GEOID": 625534, "NAME": "Frazier Park", "NAMELSAD": "Frazier Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13509638, "AWATER": 4209, "INTPTLAT": 34.8141933, "INTPTLON": -118.9549611, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -118.954468, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1041, "felt:has_geometry": true, "felt:h3_index": 644747100688967177, "STATEFP": 6, "PLACEFP": 40956, "PLACENS": 2408595, "GEOID": 640956, "NAME": "Lebec", "NAMELSAD": "Lebec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39689131, "AWATER": 760, "INTPTLAT": 34.8446143, "INTPTLON": -118.8992375, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -118.899536, 34.845367 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1458, "felt:has_geometry": true, "felt:h3_index": 644747107957582123, "STATEFP": 6, "PLACEFP": 77308, "PLACENS": 2583157, "GEOID": 677308, "NAME": "Sun Village", "NAMELSAD": "Sun Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27981975, "AWATER": 1222, "INTPTLAT": 34.5595244, "INTPTLON": -117.9567582, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -117.954712, 34.560859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1061, "felt:has_geometry": true, "felt:h3_index": 644747107979897752, "STATEFP": 6, "PLACEFP": 41880, "PLACENS": 2408620, "GEOID": 641880, "NAME": "Littlerock", "NAMELSAD": "Littlerock CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4772931, "AWATER": 3763, "INTPTLAT": 34.525126, "INTPTLON": -117.9816314, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -117.982178, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 138, "felt:has_geometry": true, "felt:h3_index": 644747109159475888, "STATEFP": 6, "PLACEFP": 40130, "PLACENS": 2411620, "GEOID": 640130, "NAME": "Lancaster", "NAMELSAD": "Lancaster city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244189279, "AWATER": 651713, "INTPTLAT": 34.693558, "INTPTLON": -118.1753054, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -118.174438, 34.691945 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1304, "felt:has_geometry": true, "felt:h3_index": 644747109189632521, "STATEFP": 6, "PLACEFP": 59052, "PLACENS": 2409114, "GEOID": 659052, "NAME": "Quartz Hill", "NAMELSAD": "Quartz Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9743175, "AWATER": 896, "INTPTLAT": 34.6519876, "INTPTLON": -118.2159454, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -118.218384, 34.651285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1015, "felt:has_geometry": true, "felt:h3_index": 644747110137651232, "STATEFP": 6, "PLACEFP": 39612, "PLACENS": 2408541, "GEOID": 639612, "NAME": "Lake Los Angeles", "NAMELSAD": "Lake Los Angeles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 25229336, "AWATER": 125676, "INTPTLAT": 34.609839, "INTPTLON": -117.8303369, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -117.828369, 34.610606 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 742, "felt:has_geometry": true, "felt:h3_index": 644747112917918427, "STATEFP": 6, "PLACEFP": 19052, "PLACENS": 2408666, "GEOID": 619052, "NAME": "Desert View Highlands", "NAMELSAD": "Desert View Highlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1142187, "AWATER": 0, "INTPTLAT": 34.5902628, "INTPTLON": -118.1535367, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -118.152466, 34.592520 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 10, "felt:has_geometry": true, "felt:h3_index": 644747113151905155, "STATEFP": 6, "PLACEFP": 55156, "PLACENS": 2411359, "GEOID": 655156, "NAME": "Palmdale", "NAMELSAD": "Palmdale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 274705334, "AWATER": 629569, "INTPTLAT": 34.5910383, "INTPTLON": -118.1054031, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -118.103027, 34.592520 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 485, "felt:has_geometry": true, "felt:h3_index": 644747113398709264, "STATEFP": 6, "PLACEFP": 212, "PLACENS": 2407697, "GEOID": 600212, "NAME": "Acton", "NAMELSAD": "Acton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 101679451, "AWATER": 60418, "INTPTLAT": 34.4960703, "INTPTLON": -118.183897, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -118.185425, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1343, "felt:has_geometry": true, "felt:h3_index": 644747116795790004, "STATEFP": 6, "PLACEFP": 62826, "PLACENS": 2409208, "GEOID": 662826, "NAME": "Rosamond", "NAMELSAD": "Rosamond CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 134995228, "AWATER": 551690, "INTPTLAT": 34.8656273, "INTPTLON": -118.2147671, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.863398 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1149, "felt:has_geometry": true, "felt:h3_index": 644747118822955717, "STATEFP": 6, "PLACEFP": 48452, "PLACENS": 2408853, "GEOID": 648452, "NAME": "Mojave", "NAMELSAD": "Mojave CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 151185016, "AWATER": 207337, "INTPTLAT": 35.0149951, "INTPTLON": -118.1902086, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 35.016501 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1490, "felt:has_geometry": true, "felt:h3_index": 644747124543605603, "STATEFP": 6, "PLACEFP": 78960, "PLACENS": 2583164, "GEOID": 678960, "NAME": "Topanga", "NAMELSAD": "Topanga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49538336, "AWATER": 19528, "INTPTLAT": 34.0967768, "INTPTLON": -118.6060209, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 34.098159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 19, "felt:has_geometry": true, "felt:h3_index": 644747124682556080, "STATEFP": 6, "PLACEFP": 9598, "PLACENS": 2409955, "GEOID": 609598, "NAME": "Calabasas", "NAMELSAD": "Calabasas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35502601, "AWATER": 90645, "INTPTLAT": 34.1342518, "INTPTLON": -118.6664552, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -118.668823, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 432, "felt:has_geometry": true, "felt:h3_index": 644747124724687755, "STATEFP": 6, "PLACEFP": 33518, "PLACENS": 2410756, "GEOID": 633518, "NAME": "Hidden Hills", "NAMELSAD": "Hidden Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4372993, "AWATER": 0, "INTPTLAT": 34.1637443, "INTPTLON": -118.6612099, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -118.663330, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1212, "felt:has_geometry": true, "felt:h3_index": 644747125647071019, "STATEFP": 6, "PLACEFP": 53116, "PLACENS": 2408964, "GEOID": 653116, "NAME": "Oak Park", "NAMELSAD": "Oak Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13713403, "AWATER": 0, "INTPTLAT": 34.1849839, "INTPTLON": -118.7669403, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -118.767700, 34.184542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 409, "felt:has_geometry": true, "felt:h3_index": 644747125723925686, "STATEFP": 6, "PLACEFP": 394, "PLACENS": 2409666, "GEOID": 600394, "NAME": "Agoura Hills", "NAMELSAD": "Agoura Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20191601, "AWATER": 55687, "INTPTLAT": 34.1489422, "INTPTLON": -118.7639301, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -118.762207, 34.148181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1023, "felt:has_geometry": true, "felt:h3_index": 644747126377620781, "STATEFP": 6, "PLACEFP": 39735, "PLACENS": 2585428, "GEOID": 639735, "NAME": "Lake Sherwood", "NAMELSAD": "Lake Sherwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8125833, "AWATER": 547804, "INTPTLAT": 34.131803, "INTPTLON": -118.884714, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -118.883057, 34.129995 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 129, "felt:has_geometry": true, "felt:h3_index": 644747126388233124, "STATEFP": 6, "PLACEFP": 84438, "PLACENS": 2412235, "GEOID": 684438, "NAME": "Westlake Village", "NAMELSAD": "Westlake Village city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13434930, "AWATER": 828670, "INTPTLAT": 34.1366751, "INTPTLON": -118.8173674, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1379, "felt:has_geometry": true, "felt:h3_index": 644747128465883906, "STATEFP": 6, "PLACEFP": 70140, "PLACENS": 2585445, "GEOID": 670140, "NAME": "Santa Susana", "NAMELSAD": "Santa Susana CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3250193, "AWATER": 0, "INTPTLAT": 34.2585666, "INTPTLON": -118.6643529, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -118.663330, 34.257216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 548, "felt:has_geometry": true, "felt:h3_index": 644747128505920270, "STATEFP": 6, "PLACEFP": 4938, "PLACENS": 2585403, "GEOID": 604938, "NAME": "Bell Canyon", "NAMELSAD": "Bell Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9424351, "AWATER": 0, "INTPTLAT": 34.2081484, "INTPTLON": -118.6875736, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -118.685303, 34.207259 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1261, "felt:has_geometry": true, "felt:h3_index": 644747130228595736, "STATEFP": 6, "PLACEFP": 56598, "PLACENS": 2805260, "GEOID": 656598, "NAME": "Pepperdine University", "NAMELSAD": "Pepperdine University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1393957, "AWATER": 0, "INTPTLAT": 34.0422775, "INTPTLON": -118.709182, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -118.707275, 34.043557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 137, "felt:has_geometry": true, "felt:h3_index": 644747130385608098, "STATEFP": 6, "PLACEFP": 45246, "PLACENS": 2410913, "GEOID": 645246, "NAME": "Malibu", "NAMELSAD": "Malibu city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51403234, "AWATER": 205274314, "INTPTLAT": 34.0258601, "INTPTLON": -118.7596429, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -118.762207, 34.025348 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 45, "felt:has_geometry": true, "felt:h3_index": 644747131027237789, "STATEFP": 6, "PLACEFP": 44000, "PLACENS": 2410877, "GEOID": 644000, "NAME": "Los Angeles", "NAMELSAD": "Los Angeles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1218634998, "AWATER": 80417875, "INTPTLAT": 34.0193936, "INTPTLON": -118.4108248, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 34.020795 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 998, "felt:has_geometry": true, "felt:h3_index": 644747131324165390, "STATEFP": 6, "PLACEFP": 39108, "PLACENS": 2408521, "GEOID": 639108, "NAME": "Ladera Heights", "NAMELSAD": "Ladera Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7679969, "AWATER": 276, "INTPTLAT": 33.9967756, "INTPTLON": -118.370028, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -118.372192, 33.998027 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 153, "felt:has_geometry": true, "felt:h3_index": 644747131341771619, "STATEFP": 6, "PLACEFP": 17568, "PLACENS": 2410276, "GEOID": 617568, "NAME": "Culver City", "NAMELSAD": "Culver City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13239286, "AWATER": 71360, "INTPTLAT": 34.0058204, "INTPTLON": -118.3967807, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -118.394165, 34.007135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 42, "felt:has_geometry": true, "felt:h3_index": 644747131427669805, "STATEFP": 6, "PLACEFP": 6308, "PLACENS": 2409840, "GEOID": 606308, "NAME": "Beverly Hills", "NAMELSAD": "Beverly Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14784194, "AWATER": 2279, "INTPTLAT": 34.07923, "INTPTLON": -118.4024374, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -118.405151, 34.079962 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1109, "felt:has_geometry": true, "felt:h3_index": 644747131572210081, "STATEFP": 6, "PLACEFP": 45806, "PLACENS": 2408179, "GEOID": 645806, "NAME": "Marina del Rey", "NAMELSAD": "Marina del Rey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2221336, "AWATER": 1546421, "INTPTLAT": 33.9763728, "INTPTLON": -118.4508879, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -118.449097, 33.975253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 435, "felt:has_geometry": true, "felt:h3_index": 644747131694930644, "STATEFP": 6, "PLACEFP": 70000, "PLACENS": 2411825, "GEOID": 670000, "NAME": "Santa Monica", "NAMELSAD": "Santa Monica city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21779158, "AWATER": 22696935, "INTPTLAT": 34.0109107, "INTPTLON": -118.4982446, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -118.498535, 34.011689 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 31, "felt:has_geometry": true, "felt:h3_index": 644747133490056433, "STATEFP": 6, "PLACEFP": 24092, "PLACENS": 2410504, "GEOID": 624092, "NAME": "Fillmore", "NAMELSAD": "Fillmore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8553766, "AWATER": 0, "INTPTLAT": 34.3989578, "INTPTLON": -118.9174598, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 34.397845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1280, "felt:has_geometry": true, "felt:h3_index": 644747135884366873, "STATEFP": 6, "PLACEFP": 57372, "PLACENS": 2409077, "GEOID": 657372, "NAME": "Piru", "NAMELSAD": "Piru CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8233997, "AWATER": 40401, "INTPTLAT": 34.4056778, "INTPTLON": -118.80509670000001, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -118.806152, 34.406910 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1418, "felt:has_geometry": true, "felt:h3_index": 644747137630910901, "STATEFP": 6, "PLACEFP": 72632, "PLACENS": 2807036, "GEOID": 672632, "NAME": "Somis", "NAMELSAD": "Somis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8683406, "AWATER": 0, "INTPTLAT": 34.2652625, "INTPTLON": -118.9984062, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -118.998413, 34.266296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 26, "felt:has_geometry": true, "felt:h3_index": 644747137748173861, "STATEFP": 6, "PLACEFP": 49138, "PLACENS": 2411157, "GEOID": 649138, "NAME": "Moorpark", "NAMELSAD": "Moorpark city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31796168, "AWATER": 488806, "INTPTLAT": 34.285942, "INTPTLON": -118.8770396, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -118.877563, 34.284453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1378, "felt:has_geometry": true, "felt:h3_index": 644747137781898082, "STATEFP": 6, "PLACEFP": 70130, "PLACENS": 2585444, "GEOID": 670130, "NAME": "Santa Rosa Valley", "NAMELSAD": "Santa Rosa Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18685063, "AWATER": 0, "INTPTLAT": 34.2459031, "INTPTLON": -118.9017842, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -118.899536, 34.248136 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 640, "felt:has_geometry": true, "felt:h3_index": 644747138005393675, "STATEFP": 6, "PLACEFP": 11656, "PLACENS": 2407978, "GEOID": 611656, "NAME": "Casa Conejo", "NAMELSAD": "Casa Conejo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1221471, "AWATER": 0, "INTPTLAT": 34.184731, "INTPTLON": -118.9445166, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -118.943481, 34.184542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 30, "felt:has_geometry": true, "felt:h3_index": 644747138103846309, "STATEFP": 6, "PLACEFP": 10046, "PLACENS": 2409966, "GEOID": 610046, "NAME": "Camarillo", "NAMELSAD": "Camarillo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50986168, "AWATER": 42884, "INTPTLAT": 34.2218233, "INTPTLON": -119.0321535, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -119.031372, 34.220887 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 192, "felt:has_geometry": true, "felt:h3_index": 644747138335401093, "STATEFP": 6, "PLACEFP": 78582, "PLACENS": 2412065, "GEOID": 678582, "NAME": "Thousand Oaks", "NAMELSAD": "Thousand Oaks city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 143115867, "AWATER": 375961, "INTPTLAT": 34.1932896, "INTPTLON": -118.874235, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 34.193630 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 272, "felt:has_geometry": true, "felt:h3_index": 644747139012551940, "STATEFP": 6, "PLACEFP": 70042, "PLACENS": 2411826, "GEOID": 670042, "NAME": "Santa Paula", "NAMELSAD": "Santa Paula city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14323012, "AWATER": 423953, "INTPTLAT": 34.35495, "INTPTLON": -119.0662804, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -119.064331, 34.357042 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1383, "felt:has_geometry": true, "felt:h3_index": 644747139090582170, "STATEFP": 6, "PLACEFP": 70322, "PLACENS": 2585446, "GEOID": 670322, "NAME": "Saticoy", "NAMELSAD": "Saticoy CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 968248, "AWATER": 796, "INTPTLAT": 34.2824692, "INTPTLON": -119.1428442, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -119.141235, 34.284453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 813, "felt:has_geometry": true, "felt:h3_index": 644747139121448274, "STATEFP": 6, "PLACEFP": 22370, "PLACENS": 2408061, "GEOID": 622370, "NAME": "El Rio", "NAMELSAD": "El Rio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5263067, "AWATER": 0, "INTPTLAT": 34.245279, "INTPTLON": -119.1568658, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -119.157715, 34.243595 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 191, "felt:has_geometry": true, "felt:h3_index": 644747140464139555, "STATEFP": 6, "PLACEFP": 72016, "PLACENS": 2411904, "GEOID": 672016, "NAME": "Simi Valley", "NAMELSAD": "Simi Valley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 107601139, "AWATER": 1831566, "INTPTLAT": 34.2668875, "INTPTLON": -118.7484575, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -118.745728, 34.266296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 504, "felt:has_geometry": true, "felt:h3_index": 644747141745695387, "STATEFP": 6, "PLACEFP": 1290, "PLACENS": 2407732, "GEOID": 601290, "NAME": "Altadena", "NAMELSAD": "Altadena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21924372, "AWATER": 40734, "INTPTLAT": 34.1922117, "INTPTLON": -118.1355893, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -118.135986, 34.193630 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 126, "felt:has_geometry": true, "felt:h3_index": 644747142268297243, "STATEFP": 6, "PLACEFP": 68224, "PLACENS": 2411799, "GEOID": 668224, "NAME": "San Marino", "NAMELSAD": "San Marino city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9753267, "AWATER": 16339, "INTPTLAT": 34.1226714, "INTPTLON": -118.1129107, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -118.114014, 34.120900 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1374, "felt:has_geometry": true, "felt:h3_index": 644747142289105504, "STATEFP": 6, "PLACEFP": 68308, "PLACENS": 2629291, "GEOID": 668308, "NAME": "San Pasqual", "NAMELSAD": "San Pasqual CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 659665, "AWATER": 0, "INTPTLAT": 34.1392218, "INTPTLON": -118.102524, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -118.103027, 34.139088 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 18, "felt:has_geometry": true, "felt:h3_index": 644747142346755468, "STATEFP": 6, "PLACEFP": 73220, "PLACENS": 2411940, "GEOID": 673220, "NAME": "South Pasadena", "NAMELSAD": "South Pasadena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8828904, "AWATER": 25721, "INTPTLAT": 34.1089567, "INTPTLON": -118.1566154, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -118.157959, 34.107256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 434, "felt:has_geometry": true, "felt:h3_index": 644747142494357794, "STATEFP": 6, "PLACEFP": 56000, "PLACENS": 2411379, "GEOID": 656000, "NAME": "Pasadena", "NAMELSAD": "Pasadena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 59466031, "AWATER": 366889, "INTPTLAT": 34.1606016, "INTPTLON": -118.1379537, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -118.135986, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 17, "felt:has_geometry": true, "felt:h3_index": 644747142573379811, "STATEFP": 6, "PLACEFP": 71806, "PLACENS": 2411897, "GEOID": 671806, "NAME": "Sierra Madre", "NAMELSAD": "Sierra Madre city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7643252, "AWATER": 10258, "INTPTLAT": 34.1687705, "INTPTLON": -118.0502158, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -118.048096, 34.170908 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 776, "felt:has_geometry": true, "felt:h3_index": 644747142614124832, "STATEFP": 6, "PLACEFP": 20984, "PLACENS": 2408716, "GEOID": 620984, "NAME": "East Pasadena", "NAMELSAD": "East Pasadena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3411833, "AWATER": 13187, "INTPTLAT": 34.1367984, "INTPTLON": -118.0775355, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -118.075562, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 119, "felt:has_geometry": true, "felt:h3_index": 644747142634627778, "STATEFP": 6, "PLACEFP": 2462, "PLACENS": 2409722, "GEOID": 602462, "NAME": "Arcadia", "NAMELSAD": "Arcadia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28300614, "AWATER": 540015, "INTPTLAT": 34.1326887, "INTPTLON": -118.0363467, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 34.134542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 127, "felt:has_geometry": true, "felt:h3_index": 644747143423834323, "STATEFP": 6, "PLACEFP": 8954, "PLACENS": 2409939, "GEOID": 608954, "NAME": "Burbank", "NAMELSAD": "Burbank city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 44848115, "AWATER": 94723, "INTPTLAT": 34.1900793, "INTPTLON": -118.3264045, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -118.328247, 34.189086 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 995, "felt:has_geometry": true, "felt:h3_index": 644747143617877316, "STATEFP": 6, "PLACEFP": 39045, "PLACENS": 2408503, "GEOID": 639045, "NAME": "La Crescenta-Montrose", "NAMELSAD": "La Crescenta-Montrose CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8878978, "AWATER": 28793, "INTPTLAT": 34.233016, "INTPTLON": -118.2357737, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -118.234863, 34.234512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 8, "felt:has_geometry": true, "felt:h3_index": 644747143697214734, "STATEFP": 6, "PLACEFP": 39003, "PLACENS": 2411565, "GEOID": 639003, "NAME": "La Cañada Flintridge", "NAMELSAD": "La Cañada Flintridge city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22354266, "AWATER": 42498, "INTPTLAT": 34.2096899, "INTPTLON": -118.2001386, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -118.201904, 34.211802 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1425, "felt:has_geometry": true, "felt:h3_index": 644747146064096371, "STATEFP": 6, "PLACEFP": 73276, "PLACENS": 2408771, "GEOID": 673276, "NAME": "South San Gabriel", "NAMELSAD": "South San Gabriel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2160330, "AWATER": 685, "INTPTLAT": 34.0477943, "INTPTLON": -118.095678, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -118.097534, 34.048108 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 141, "felt:has_geometry": true, "felt:h3_index": 644747146100299470, "STATEFP": 6, "PLACEFP": 48816, "PLACENS": 2411144, "GEOID": 648816, "NAME": "Montebello", "NAMELSAD": "Montebello city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21569294, "AWATER": 104147, "INTPTLAT": 34.0154437, "INTPTLON": -118.1110124, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -118.108521, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 139, "felt:has_geometry": true, "felt:h3_index": 644747146190761301, "STATEFP": 6, "PLACEFP": 884, "PLACENS": 2409681, "GEOID": 600884, "NAME": "Alhambra", "NAMELSAD": "Alhambra city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19764463, "AWATER": 1730, "INTPTLAT": 34.0835711, "INTPTLON": -118.1364436, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -118.135986, 34.084512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 121, "felt:has_geometry": true, "felt:h3_index": 644747146219342531, "STATEFP": 6, "PLACEFP": 48914, "PLACENS": 2411146, "GEOID": 648914, "NAME": "Monterey Park", "NAMELSAD": "Monterey Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19870660, "AWATER": 155185, "INTPTLAT": 34.0483796, "INTPTLON": -118.1331646, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -118.130493, 34.048108 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 120, "felt:has_geometry": true, "felt:h3_index": 644747146297436835, "STATEFP": 6, "PLACEFP": 72996, "PLACENS": 2411934, "GEOID": 672996, "NAME": "South El Monte", "NAMELSAD": "South El Monte city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7364933, "AWATER": 14107, "INTPTLAT": 34.0503775, "INTPTLON": -118.048384, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -118.048096, 34.048108 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 530, "felt:has_geometry": true, "felt:h3_index": 644747146388466398, "STATEFP": 6, "PLACEFP": 3344, "PLACENS": 2407785, "GEOID": 603344, "NAME": "Avocado Heights", "NAMELSAD": "Avocado Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5828913, "AWATER": 6069, "INTPTLAT": 34.0390386, "INTPTLON": -117.9981669, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -117.998657, 34.039005 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 145, "felt:has_geometry": true, "felt:h3_index": 644747146431773787, "STATEFP": 6, "PLACEFP": 67042, "PLACENS": 2411787, "GEOID": 667042, "NAME": "San Gabriel", "NAMELSAD": "San Gabriel city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10732387, "AWATER": 1750, "INTPTLAT": 34.0946359, "INTPTLON": -118.0984687, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -118.097534, 34.093610 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 47, "felt:has_geometry": true, "felt:h3_index": 644747146450575756, "STATEFP": 6, "PLACEFP": 78148, "PLACENS": 2412047, "GEOID": 678148, "NAME": "Temple City", "NAMELSAD": "Temple City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10370555, "AWATER": 0, "INTPTLAT": 34.1021583, "INTPTLON": -118.0579673, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -118.059082, 34.102708 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 781, "felt:has_geometry": true, "felt:h3_index": 644747146467787788, "STATEFP": 6, "PLACEFP": 21096, "PLACENS": 2408037, "GEOID": 621096, "NAME": "East San Gabriel", "NAMELSAD": "East San Gabriel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5641695, "AWATER": 35252, "INTPTLAT": 34.1161886, "INTPTLON": -118.0798859, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 34.116352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 140, "felt:has_geometry": true, "felt:h3_index": 644747146484036000, "STATEFP": 6, "PLACEFP": 62896, "PLACENS": 2410998, "GEOID": 662896, "NAME": "Rosemead", "NAMELSAD": "Rosemead city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13368558, "AWATER": 35463, "INTPTLAT": 34.0688796, "INTPTLON": -118.0826804, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 34.070862 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 149, "felt:has_geometry": true, "felt:h3_index": 644747146589438262, "STATEFP": 6, "PLACEFP": 56924, "PLACENS": 2411417, "GEOID": 656924, "NAME": "Pico Rivera", "NAMELSAD": "Pico Rivera city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21536859, "AWATER": 1518068, "INTPTLAT": 33.9895238, "INTPTLON": -118.0892952, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -118.092041, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 147, "felt:has_geometry": true, "felt:h3_index": 644747146627671699, "STATEFP": 6, "PLACEFP": 19766, "PLACENS": 2410352, "GEOID": 619766, "NAME": "Downey", "NAMELSAD": "Downey city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 32139788, "AWATER": 414730, "INTPTLAT": 33.9382375, "INTPTLON": -118.1308561, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -118.130493, 33.938803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 417, "felt:has_geometry": true, "felt:h3_index": 644747146635948588, "STATEFP": 6, "PLACEFP": 4996, "PLACENS": 2409817, "GEOID": 604996, "NAME": "Bell Gardens", "NAMELSAD": "Bell Gardens city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6368687, "AWATER": 14400, "INTPTLAT": 33.9643785, "INTPTLON": -118.1544369, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -118.152466, 33.966142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 770, "felt:has_geometry": true, "felt:h3_index": 644747146735274539, "STATEFP": 6, "PLACEFP": 20802, "PLACENS": 2408711, "GEOID": 620802, "NAME": "East Los Angeles", "NAMELSAD": "East Los Angeles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19303560, "AWATER": 11013, "INTPTLAT": 34.0315059, "INTPTLON": -118.1685666, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 34.029900 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 450, "felt:has_geometry": true, "felt:h3_index": 644747146780877936, "STATEFP": 6, "PLACEFP": 46492, "PLACENS": 2411054, "GEOID": 646492, "NAME": "Maywood", "NAMELSAD": "Maywood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3034744, "AWATER": 0, "INTPTLAT": 33.9885475, "INTPTLON": -118.1877074, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -118.185425, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 419, "felt:has_geometry": true, "felt:h3_index": 644747146793199956, "STATEFP": 6, "PLACEFP": 14974, "PLACENS": 2410209, "GEOID": 614974, "NAME": "Commerce", "NAMELSAD": "Commerce city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16923940, "AWATER": 3306, "INTPTLAT": 33.9945234, "INTPTLON": -118.1499518, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -118.152466, 33.993473 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1345, "felt:has_geometry": true, "felt:h3_index": 644747146872339478, "STATEFP": 6, "PLACEFP": 62860, "PLACENS": 2583098, "GEOID": 662860, "NAME": "Rose Hills", "NAMELSAD": "Rose Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1128791, "AWATER": 0, "INTPTLAT": 34.0090124, "INTPTLON": -118.041909, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -118.042603, 34.007135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1564, "felt:has_geometry": true, "felt:h3_index": 644747146907812582, "STATEFP": 6, "PLACEFP": 84921, "PLACENS": 2409570, "GEOID": 684921, "NAME": "West Whittier-Los Nietos", "NAMELSAD": "West Whittier-Los Nietos CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6527742, "AWATER": 0, "INTPTLAT": 33.975998, "INTPTLON": -118.0689295, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -118.070068, 33.975253 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 148, "felt:has_geometry": true, "felt:h3_index": 644747146919889064, "STATEFP": 6, "PLACEFP": 85292, "PLACENS": 2412260, "GEOID": 685292, "NAME": "Whittier", "NAMELSAD": "Whittier city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37940444, "AWATER": 31326, "INTPTLAT": 33.9668274, "INTPTLON": -118.0201222, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -118.020630, 33.966142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 43, "felt:has_geometry": true, "felt:h3_index": 644747147539074405, "STATEFP": 6, "PLACEFP": 30000, "PLACENS": 2410597, "GEOID": 630000, "NAME": "Glendale", "NAMELSAD": "Glendale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 78940369, "AWATER": 330542, "INTPTLAT": 34.1813929, "INTPTLON": -118.2458301, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -118.245850, 34.179998 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 122, "felt:has_geometry": true, "felt:h3_index": 644747147783517546, "STATEFP": 6, "PLACEFP": 84410, "PLACENS": 2412221, "GEOID": 684410, "NAME": "West Hollywood", "NAMELSAD": "West Hollywood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4888800, "AWATER": 0, "INTPTLAT": 34.0882676, "INTPTLON": -118.3718315, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -118.372192, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1528, "felt:has_geometry": true, "felt:h3_index": 644747148233723293, "STATEFP": 6, "PLACEFP": 82815, "PLACENS": 2409516, "GEOID": 682815, "NAME": "Vincent", "NAMELSAD": "Vincent CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3814588, "AWATER": 0, "INTPTLAT": 34.0982678, "INTPTLON": -117.9238011, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -117.921753, 34.098159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 451, "felt:has_geometry": true, "felt:h3_index": 644747148296010002, "STATEFP": 6, "PLACEFP": 48648, "PLACENS": 2411138, "GEOID": 648648, "NAMELSAD": "Monrovia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 35306882, "AWATER": 282054, "INTPTLAT": 34.1639844, "INTPTLON": -117.9846459, "NAME": "Monrovia,Bradbury", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -117.982178, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 118, "felt:has_geometry": true, "felt:h3_index": 644747148341490203, "STATEFP": 6, "PLACEFP": 19990, "PLACENS": 2410361, "GEOID": 619990, "NAME": "Duarte", "NAMELSAD": "Duarte city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17376217, "AWATER": 0, "INTPTLAT": 34.1609674, "INTPTLON": -117.9504474, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -117.949219, 34.161818 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 5, "felt:has_geometry": true, "felt:h3_index": 644747148491540618, "STATEFP": 6, "PLACEFP": 30014, "PLACENS": 2410601, "GEOID": 630014, "NAME": "Glendora", "NAMELSAD": "Glendora city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50531741, "AWATER": 400123, "INTPTLAT": 34.1449643, "INTPTLON": -117.8478035, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -117.850342, 34.143635 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 663, "felt:has_geometry": true, "felt:h3_index": 644747148495176849, "STATEFP": 6, "PLACEFP": 12734, "PLACENS": 2408014, "GEOID": 612734, "NAME": "Charter Oak", "NAMELSAD": "Charter Oak CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2402920, "AWATER": 0, "INTPTLAT": 34.1024918, "INTPTLON": -117.8562824, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -117.855835, 34.102708 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 674, "felt:has_geometry": true, "felt:h3_index": 644747148522535499, "STATEFP": 6, "PLACEFP": 13560, "PLACENS": 2407624, "GEOID": 613560, "NAME": "Citrus", "NAMELSAD": "Citrus CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2268958, "AWATER": 3901, "INTPTLAT": 34.1134378, "INTPTLON": -117.8913011, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -117.888794, 34.111805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 128, "felt:has_geometry": true, "felt:h3_index": 644747148639192686, "STATEFP": 6, "PLACEFP": 3386, "PLACENS": 2409768, "GEOID": 603386, "NAME": "Azusa", "NAMELSAD": "Azusa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25022011, "AWATER": 32168, "INTPTLAT": 34.1385241, "INTPTLON": -117.912253, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -117.910767, 34.139088 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1561, "felt:has_geometry": true, "felt:h3_index": 644747148707437168, "STATEFP": 6, "PLACEFP": 84774, "PLACENS": 2409564, "GEOID": 684774, "NAME": "West Puente Valley", "NAMELSAD": "West Puente Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4842002, "AWATER": 2700, "INTPTLAT": 34.0522802, "INTPTLON": -117.9667167, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -117.965698, 34.052659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 44, "felt:has_geometry": true, "felt:h3_index": 644747148764514884, "STATEFP": 6, "PLACEFP": 40340, "PLACENS": 2411581, "GEOID": 640340, "NAMELSAD": "La Puente city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9009253, "AWATER": 1746, "INTPTLAT": 34.0323333, "INTPTLON": -117.9535204, "NAME": "La Puente,Industry", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -117.954712, 34.034453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1513, "felt:has_geometry": true, "felt:h3_index": 644747148798251203, "STATEFP": 6, "PLACEFP": 81638, "PLACENS": 2409392, "GEOID": 681638, "NAME": "Valinda", "NAMELSAD": "Valinda CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5213065, "AWATER": 0, "INTPTLAT": 34.0400329, "INTPTLON": -117.9300568, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -117.932739, 34.039005 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1198, "felt:has_geometry": true, "felt:h3_index": 644747148860459248, "STATEFP": 6, "PLACEFP": 51820, "PLACENS": 2408938, "GEOID": 651820, "NAME": "North El Monte", "NAMELSAD": "North El Monte CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1101654, "AWATER": 0, "INTPTLAT": 34.1029266, "INTPTLON": -118.0238624, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -118.026123, 34.102708 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 125, "felt:has_geometry": true, "felt:h3_index": 644747148870141328, "STATEFP": 6, "PLACEFP": 36826, "PLACENS": 2410119, "GEOID": 636826, "NAME": "Irwindale", "NAMELSAD": "Irwindale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22853908, "AWATER": 2037701, "INTPTLAT": 34.111855, "INTPTLON": -117.963614, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -117.965698, 34.111805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1423, "felt:has_geometry": true, "felt:h3_index": 644747148885649816, "STATEFP": 6, "PLACEFP": 73167, "PLACENS": 2629294, "GEOID": 673167, "NAMELSAD": "South Monrovia Island CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1419511, "AWATER": 0, "INTPTLAT": 34.123421, "INTPTLON": -117.9958636, "NAME": "South Monrovia Island,Mayflower Village", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -117.993164, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 421, "felt:has_geometry": true, "felt:h3_index": 644747148924037018, "STATEFP": 6, "PLACEFP": 22230, "PLACENS": 2410413, "GEOID": 622230, "NAME": "El Monte", "NAMELSAD": "El Monte city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24752904, "AWATER": 221652, "INTPTLAT": 34.0746329, "INTPTLON": -118.0291358, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -118.031616, 34.075412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 41, "felt:has_geometry": true, "felt:h3_index": 644747148944885665, "STATEFP": 6, "PLACEFP": 3666, "PLACENS": 2409777, "GEOID": 603666, "NAME": "Baldwin Park", "NAMELSAD": "Baldwin Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17177101, "AWATER": 400505, "INTPTLAT": 34.0828245, "INTPTLON": -117.9712858, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -117.971191, 34.084512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 447, "felt:has_geometry": true, "felt:h3_index": 644747149015418564, "STATEFP": 6, "PLACEFP": 16742, "PLACENS": 2410251, "GEOID": 616742, "NAME": "Covina", "NAMELSAD": "Covina city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18220783, "AWATER": 32773, "INTPTLAT": 34.0904746, "INTPTLON": -117.8821434, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -117.883301, 34.089061 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 123, "felt:has_geometry": true, "felt:h3_index": 644747149049254317, "STATEFP": 6, "PLACEFP": 84200, "PLACENS": 2412219, "GEOID": 684200, "NAME": "West Covina", "NAMELSAD": "West Covina city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 41534189, "AWATER": 124504, "INTPTLAT": 34.0559412, "INTPTLON": -117.9099372, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -117.910767, 34.057211 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 968, "felt:has_geometry": true, "felt:h3_index": 644747194024372355, "STATEFP": 6, "PLACEFP": 37554, "PLACENS": 2408454, "GEOID": 637554, "NAME": "Joshua Tree", "NAMELSAD": "Joshua Tree CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 93463461, "AWATER": 0, "INTPTLAT": 34.1236329, "INTPTLON": -116.3128622, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -116.312256, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 933, "felt:has_geometry": true, "felt:h3_index": 644747194572775696, "STATEFP": 6, "PLACEFP": 34392, "PLACENS": 2629366, "GEOID": 634392, "NAME": "Homestead Valley", "NAMELSAD": "Homestead Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 87686964, "AWATER": 0, "INTPTLAT": 34.2730035, "INTPTLON": -116.4145486, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -116.416626, 34.270836 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 358, "felt:has_geometry": true, "felt:h3_index": 644747196022577172, "STATEFP": 6, "PLACEFP": 80994, "PLACENS": 2412119, "GEOID": 680994, "NAME": "Twentynine Palms", "NAMELSAD": "Twentynine Palms city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 152157672, "AWATER": 0, "INTPTLAT": 34.1478175, "INTPTLON": -116.0659586, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -116.065063, 34.148181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 361, "felt:has_geometry": true, "felt:h3_index": 644747198802471755, "STATEFP": 6, "PLACEFP": 87056, "PLACENS": 2413524, "GEOID": 687056, "NAME": "Yucca Valley", "NAMELSAD": "Yucca Valley town", "LSAD": 43, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 103161847, "AWATER": 0, "INTPTLAT": 34.1233473, "INTPTLON": -116.4215573, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -116.422119, 34.125448 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 963, "felt:has_geometry": true, "felt:h3_index": 644747236764377309, "STATEFP": 6, "PLACEFP": 37400, "PLACENS": 2408446, "GEOID": 637400, "NAMELSAD": "Johannesburg CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6354495, "AWATER": 0, "INTPTLAT": 35.3718756, "INTPTLON": -117.6418025, "NAME": "Johannesburg,Randsburg", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -117.641602, 35.371135 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 284, "felt:has_geometry": true, "felt:h3_index": 644747239564182225, "STATEFP": 6, "PLACEFP": 60704, "PLACENS": 2410944, "GEOID": 660704, "NAME": "Ridgecrest", "NAMELSAD": "Ridgecrest city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 54029088, "AWATER": 1671951, "INTPTLAT": 35.6285421, "INTPTLON": -117.6639923, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -117.663574, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 853, "felt:has_geometry": true, "felt:h3_index": 644747245305307165, "STATEFP": 6, "PLACEFP": 25114, "PLACENS": 2628733, "GEOID": 625114, "NAME": "Fort Irwin", "NAMELSAD": "Fort Irwin CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18040432, "AWATER": 0, "INTPTLAT": 35.2477015, "INTPTLON": -116.6834115, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -116.685791, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1408, "felt:has_geometry": true, "felt:h3_index": 644747264891429038, "STATEFP": 6, "PLACEFP": 71964, "PLACENS": 2583143, "GEOID": 671964, "NAME": "Silver Lakes", "NAMELSAD": "Silver Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13552756, "AWATER": 1165902, "INTPTLAT": 34.7478201, "INTPTLON": -117.3449658, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 34.746126 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 364, "felt:has_geometry": true, "felt:h3_index": 644747266452686109, "STATEFP": 6, "PLACEFP": 296, "PLACENS": 2409663, "GEOID": 600296, "NAME": "Adelanto", "NAMELSAD": "Adelanto city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 136923866, "AWATER": 41151, "INTPTLAT": 34.5809017, "INTPTLON": -117.4394577, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -117.438354, 34.578952 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 275, "felt:has_geometry": true, "felt:h3_index": 644747266610574700, "STATEFP": 6, "PLACEFP": 82590, "PLACENS": 2412156, "GEOID": 682590, "NAME": "Victorville", "NAMELSAD": "Victorville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 190908178, "AWATER": 744967, "INTPTLAT": 34.5277346, "INTPTLON": -117.3535789, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -117.355957, 34.529187 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1174, "felt:has_geometry": true, "felt:h3_index": 644747267111201923, "STATEFP": 6, "PLACEFP": 49684, "PLACENS": 2408883, "GEOID": 649684, "NAME": "Mountain View Acres", "NAMELSAD": "Mountain View Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4114534, "AWATER": 0, "INTPTLAT": 34.4975579, "INTPTLON": -117.3471727, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -117.344971, 34.497503 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1197, "felt:has_geometry": true, "felt:h3_index": 644747270804527410, "STATEFP": 6, "PLACEFP": 51812, "PLACENS": 2408937, "GEOID": 651812, "NAME": "North Edwards", "NAMELSAD": "North Edwards CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33012003, "AWATER": 0, "INTPTLAT": 35.0473324, "INTPTLON": -117.8093616, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -117.811890, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 584, "felt:has_geometry": true, "felt:h3_index": 644747270943253810, "STATEFP": 6, "PLACEFP": 7568, "PLACENS": 2407886, "GEOID": 607568, "NAME": "Boron", "NAMELSAD": "Boron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35516742, "AWATER": 24136, "INTPTLAT": 35.0197799, "INTPTLON": -117.6659382, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -117.663574, 35.021000 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 366, "felt:has_geometry": true, "felt:h3_index": 644747274542948770, "STATEFP": 6, "PLACEFP": 9780, "PLACENS": 2409960, "GEOID": 609780, "NAME": "California City", "NAMELSAD": "California City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 527395596, "AWATER": 174458, "INTPTLAT": 35.1465903, "INTPTLON": -117.8693463, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -117.866821, 35.146863 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 790, "felt:has_geometry": true, "felt:h3_index": 644747276044088179, "STATEFP": 6, "PLACEFP": 21600, "PLACENS": 2408048, "GEOID": 621600, "NAME": "Edwards AFB", "NAMELSAD": "Edwards AFB CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44377479, "AWATER": 1729, "INTPTLAT": 34.9024079, "INTPTLON": -117.9218689, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -117.921753, 34.903953 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1049, "felt:has_geometry": true, "felt:h3_index": 644747280253347606, "STATEFP": 6, "PLACEFP": 41194, "PLACENS": 2408601, "GEOID": 641194, "NAME": "Lenwood", "NAMELSAD": "Lenwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5389420, "AWATER": 0, "INTPTLAT": 34.8860557, "INTPTLON": -117.1077727, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -117.108765, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 57, "felt:has_geometry": true, "felt:h3_index": 644747280593375522, "STATEFP": 6, "PLACEFP": 4030, "PLACENS": 2409790, "GEOID": 604030, "NAME": "Barstow", "NAMELSAD": "Barstow city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 106964252, "AWATER": 112301, "INTPTLAT": 34.8669866, "INTPTLON": -117.0430349, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -117.042847, 34.867905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1587, "felt:has_geometry": true, "felt:h3_index": 644747281532308337, "STATEFP": 6, "PLACEFP": 86720, "PLACENS": 2805257, "GEOID": 686720, "NAME": "Yermo", "NAMELSAD": "Yermo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1680240, "AWATER": 12788, "INTPTLAT": 34.9066556, "INTPTLON": -116.8232743, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -116.823120, 34.908458 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 342, "felt:has_geometry": true, "felt:h3_index": 644747298923432365, "STATEFP": 6, "PLACEFP": 58520, "PLACENS": 2411480, "GEOID": 658520, "NAME": "Poway", "NAMELSAD": "Poway city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 101210495, "AWATER": 223435, "INTPTLAT": 32.9876765, "INTPTLON": -117.0218144, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -117.020874, 32.985628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 482, "felt:has_geometry": true, "felt:h3_index": 644747299395028361, "STATEFP": 6, "PLACEFP": 70224, "PLACENS": 2411830, "GEOID": 670224, "NAME": "Santee", "NAMELSAD": "Santee city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42831663, "AWATER": 470863, "INTPTLAT": 32.8549903, "INTPTLON": -116.9860556, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -116.987915, 32.856518 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 372, "felt:has_geometry": true, "felt:h3_index": 644747299588038765, "STATEFP": 6, "PLACEFP": 72506, "PLACENS": 2411923, "GEOID": 672506, "NAME": "Solana Beach", "NAMELSAD": "Solana Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8841642, "AWATER": 270081, "INTPTLAT": 32.9913002, "INTPTLON": -117.2580617, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 339, "felt:has_geometry": true, "felt:h3_index": 644747299725936744, "STATEFP": 6, "PLACEFP": 22678, "PLACENS": 2410440, "GEOID": 622678, "NAME": "Encinitas", "NAMELSAD": "Encinitas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 49353552, "AWATER": 2854559, "INTPTLAT": 33.0506323, "INTPTLON": -117.2636163, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -117.262573, 33.050112 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 822, "felt:has_geometry": true, "felt:h3_index": 644747299910195546, "STATEFP": 6, "PLACEFP": 23150, "PLACENS": 2408101, "GEOID": 623150, "NAME": "Fairbanks Ranch", "NAMELSAD": "Fairbanks Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13195969, "AWATER": 12376, "INTPTLAT": 32.9915955, "INTPTLON": -117.186611, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -117.185669, 32.990236 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1315, "felt:has_geometry": true, "felt:h3_index": 644747300032824901, "STATEFP": 6, "PLACEFP": 59584, "PLACENS": 2409138, "GEOID": 659584, "NAME": "Rancho Santa Fe", "NAMELSAD": "Rancho Santa Fe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17384981, "AWATER": 188500, "INTPTLAT": 33.025814, "INTPTLON": -117.198148, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -117.196655, 33.027088 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 412, "felt:has_geometry": true, "felt:h3_index": 644747300151053218, "STATEFP": 6, "PLACEFP": 18506, "PLACENS": 2410314, "GEOID": 618506, "NAME": "Del Mar", "NAMELSAD": "Del Mar city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4446743, "AWATER": 141302, "INTPTLAT": 32.9639446, "INTPTLON": -117.2598039, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -117.257080, 32.962586 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 302, "felt:has_geometry": true, "felt:h3_index": 644747300973930090, "STATEFP": 6, "PLACEFP": 16378, "PLACENS": 2410233, "GEOID": 616378, "NAME": "Coronado", "NAMELSAD": "Coronado city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20215844, "AWATER": 63957492, "INTPTLAT": 32.6576246, "INTPTLON": -117.1565392, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -117.158203, 32.657876 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 318, "felt:has_geometry": true, "felt:h3_index": 644747302892672018, "STATEFP": 6, "PLACEFP": 41124, "PLACENS": 2410818, "GEOID": 641124, "NAME": "Lemon Grove", "NAMELSAD": "Lemon Grove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10045731, "AWATER": 0, "INTPTLAT": 32.7330712, "INTPTLON": -117.0344134, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -117.031860, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 320, "felt:has_geometry": true, "felt:h3_index": 644747302935828405, "STATEFP": 6, "PLACEFP": 66000, "PLACENS": 2411782, "GEOID": 666000, "NAME": "San Diego", "NAMELSAD": "San Diego city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 844031824, "AWATER": 120532755, "INTPTLAT": 32.814977, "INTPTLON": -117.1355615, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 32.814978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 340, "felt:has_geometry": true, "felt:h3_index": 644747303065095330, "STATEFP": 6, "PLACEFP": 40004, "PLACENS": 2411576, "GEOID": 640004, "NAME": "La Mesa", "NAMELSAD": "La Mesa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23546769, "AWATER": 12381, "INTPTLAT": 32.7694947, "INTPTLON": -117.0219232, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -117.020874, 32.768800 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 641, "felt:has_geometry": true, "felt:h3_index": 644747303090461707, "STATEFP": 6, "PLACEFP": 11691, "PLACENS": 2407979, "GEOID": 611691, "NAME": "Casa de Oro-Mount Helix", "NAMELSAD": "Casa de Oro-Mount Helix CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17743954, "AWATER": 0, "INTPTLAT": 32.763962, "INTPTLON": -116.9688085, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -116.971436, 32.764181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 481, "felt:has_geometry": true, "felt:h3_index": 644747303393477936, "STATEFP": 6, "PLACEFP": 50398, "PLACENS": 2411216, "GEOID": 650398, "NAME": "National City", "NAMELSAD": "National City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19030794, "AWATER": 4772029, "INTPTLAT": 32.6658617, "INTPTLON": -117.097361, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -117.097778, 32.667125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1031, "felt:has_geometry": true, "felt:h3_index": 644747303627811586, "STATEFP": 6, "PLACEFP": 40326, "PLACENS": 2408510, "GEOID": 640326, "NAME": "La Presa", "NAMELSAD": "La Presa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14238420, "AWATER": 1349731, "INTPTLAT": 32.7123147, "INTPTLON": -117.0037099, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -117.004395, 32.713355 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 579, "felt:has_geometry": true, "felt:h3_index": 644747303664156829, "STATEFP": 6, "PLACEFP": 7414, "PLACENS": 2407882, "GEOID": 607414, "NAME": "Bonita", "NAMELSAD": "Bonita CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12993682, "AWATER": 359832, "INTPTLAT": 32.673217, "INTPTLON": -117.0061014, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -117.004395, 32.671749 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 629, "felt:has_geometry": true, "felt:h3_index": 644747307116790155, "STATEFP": 6, "PLACEFP": 10561, "PLACENS": 2407947, "GEOID": 610561, "NAME": "Camp Pendleton South", "NAMELSAD": "Camp Pendleton South CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17965903, "AWATER": 1062655, "INTPTLAT": 33.2318244, "INTPTLON": -117.391998, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -117.394409, 33.234093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 341, "felt:has_geometry": true, "felt:h3_index": 644747307456168565, "STATEFP": 6, "PLACEFP": 53322, "PLACENS": 2411301, "GEOID": 653322, "NAME": "Oceanside", "NAMELSAD": "Oceanside city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 106883484, "AWATER": 2297570, "INTPTLAT": 33.2246006, "INTPTLON": -117.3062909, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -117.306519, 33.224903 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 501, "felt:has_geometry": true, "felt:h3_index": 644747314123622017, "STATEFP": 6, "PLACEFP": 1192, "PLACENS": 2407726, "GEOID": 601192, "NAME": "Alpine", "NAMELSAD": "Alpine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69374324, "AWATER": 1475, "INTPTLAT": 32.842487, "INTPTLON": -116.7559106, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -116.757202, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1310, "felt:has_geometry": true, "felt:h3_index": 644747315001812819, "STATEFP": 6, "PLACEFP": 59346, "PLACENS": 2409128, "GEOID": 659346, "NAME": "Ramona", "NAMELSAD": "Ramona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 99548576, "AWATER": 49343, "INTPTLAT": 33.0458112, "INTPTLON": -116.8775465, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -116.878052, 33.045508 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1367, "felt:has_geometry": true, "felt:h3_index": 644747317368534028, "STATEFP": 6, "PLACEFP": 66004, "PLACENS": 2409252, "GEOID": 666004, "NAME": "San Diego Country Estates", "NAMELSAD": "San Diego Country Estates CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43471183, "AWATER": 0, "INTPTLAT": 33.0093755, "INTPTLON": -116.7873141, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -116.784668, 33.008663 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1609, "felt:has_geometry": true, "felt:h3_index": 644747318909765468, "STATEFP": 6, "PLACEFP": 85992, "PLACENS": 2409614, "GEOID": 685992, "NAME": "Winter Gardens", "NAMELSAD": "Winter Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11447561, "AWATER": 1027, "INTPTLAT": 32.8375118, "INTPTLON": -116.9265552, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -116.927490, 32.838058 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1025, "felt:has_geometry": true, "felt:h3_index": 644747318946116194, "STATEFP": 6, "PLACEFP": 39766, "PLACENS": 2408562, "GEOID": 639766, "NAME": "Lakeside", "NAMELSAD": "Lakeside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17944759, "AWATER": 894360, "INTPTLAT": 32.856617, "INTPTLON": -116.9042369, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -116.905518, 32.856518 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 890, "felt:has_geometry": true, "felt:h3_index": 644747318960499820, "STATEFP": 6, "PLACEFP": 30703, "PLACENS": 2408320, "GEOID": 630703, "NAME": "Granite Hills", "NAMELSAD": "Granite Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7233804, "AWATER": 0, "INTPTLAT": 32.8032801, "INTPTLON": -116.9056101, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -116.905518, 32.801128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 821, "felt:has_geometry": true, "felt:h3_index": 644747319026607748, "STATEFP": 6, "PLACEFP": 23000, "PLACENS": 2628813, "GEOID": 623000, "NAME": "Eucalyptus Hills", "NAMELSAD": "Eucalyptus Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12324306, "AWATER": 38920, "INTPTLAT": 32.8851767, "INTPTLON": -116.9449826, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -116.943970, 32.884200 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 912, "felt:has_geometry": true, "felt:h3_index": 644747319251122776, "STATEFP": 6, "PLACEFP": 32044, "PLACENS": 2408350, "GEOID": 632044, "NAME": "Harbison Canyon", "NAMELSAD": "Harbison Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26085235, "AWATER": 0, "INTPTLAT": 32.8272739, "INTPTLON": -116.8380698, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -116.839600, 32.828827 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1314, "felt:has_geometry": true, "felt:h3_index": 644747319495804516, "STATEFP": 6, "PLACEFP": 59550, "PLACENS": 2409137, "GEOID": 659550, "NAME": "Rancho San Diego", "NAMELSAD": "Rancho San Diego CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22523642, "AWATER": 0, "INTPTLAT": 32.762405, "INTPTLON": -116.9196906, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -116.921997, 32.764181 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 338, "felt:has_geometry": true, "felt:h3_index": 644747319627887118, "STATEFP": 6, "PLACEFP": 21712, "PLACENS": 2410406, "GEOID": 621712, "NAME": "El Cajon", "NAMELSAD": "El Cajon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37579662, "AWATER": 0, "INTPTLAT": 32.8016733, "INTPTLON": -116.9604685, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -116.960449, 32.801128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 587, "felt:has_geometry": true, "felt:h3_index": 644747319662707601, "STATEFP": 6, "PLACEFP": 7624, "PLACENS": 2407889, "GEOID": 607624, "NAME": "Bostonia", "NAMELSAD": "Bostonia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4989175, "AWATER": 0, "INTPTLAT": 32.8189845, "INTPTLON": -116.942264, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -116.943970, 32.819595 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 711, "felt:has_geometry": true, "felt:h3_index": 644747319712212869, "STATEFP": 6, "PLACEFP": 17106, "PLACENS": 2407680, "GEOID": 617106, "NAME": "Crest", "NAMELSAD": "Crest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16913607, "AWATER": 0, "INTPTLAT": 32.8000203, "INTPTLON": -116.8670776, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -116.867065, 32.801128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 737, "felt:has_geometry": true, "felt:h3_index": 644747320189325364, "STATEFP": 6, "PLACEFP": 18940, "PLACENS": 2582992, "GEOID": 618940, "NAME": "Descanso", "NAMELSAD": "Descanso CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49613062, "AWATER": 0, "INTPTLAT": 32.8695654, "INTPTLON": -116.6278783, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -116.625366, 32.870360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1277, "felt:has_geometry": true, "felt:h3_index": 644747320310638465, "STATEFP": 6, "PLACEFP": 57260, "PLACENS": 2409070, "GEOID": 657260, "NAME": "Pine Valley", "NAMELSAD": "Pine Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18555854, "AWATER": 0, "INTPTLAT": 32.841513, "INTPTLON": -116.5107062, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -116.510010, 32.842674 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1608, "felt:has_geometry": true, "felt:h3_index": 644747322470885632, "STATEFP": 6, "PLACEFP": 81736, "PLACENS": 2409396, "GEOID": 681736, "NAME": "Valley Center", "NAMELSAD": "Valley Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 71083460, "AWATER": 0, "INTPTLAT": 33.2329944, "INTPTLON": -117.015763, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -117.015381, 33.234093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 923, "felt:has_geometry": true, "felt:h3_index": 644747322880239104, "STATEFP": 6, "PLACEFP": 33532, "PLACENS": 2408381, "GEOID": 633532, "NAME": "Hidden Meadows", "NAMELSAD": "Hidden Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17061107, "AWATER": 0, "INTPTLAT": 33.2236343, "INTPTLON": -117.1198258, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -117.119751, 33.224903 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 828, "felt:has_geometry": true, "felt:h3_index": 644747323583501577, "STATEFP": 6, "PLACEFP": 23462, "PLACENS": 2408113, "GEOID": 623462, "NAME": "Fallbrook", "NAMELSAD": "Fallbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 45429891, "AWATER": 47337, "INTPTLAT": 33.3742351, "INTPTLON": -117.2203748, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -117.218628, 33.376412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 628, "felt:has_geometry": true, "felt:h3_index": 644747323880117952, "STATEFP": 6, "PLACEFP": 10554, "PLACENS": 2407946, "GEOID": 610554, "NAME": "Camp Pendleton Mainside", "NAMELSAD": "Camp Pendleton Mainside CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27834793, "AWATER": 525021, "INTPTLAT": 33.3072088, "INTPTLON": -117.3310482, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -117.328491, 33.307577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 581, "felt:has_geometry": true, "felt:h3_index": 644747323985629586, "STATEFP": 6, "PLACEFP": 7498, "PLACENS": 2407884, "GEOID": 607498, "NAME": "Bonsall", "NAMELSAD": "Bonsall CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35286264, "AWATER": 451966, "INTPTLAT": 33.2748761, "INTPTLON": -117.1918628, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -117.191162, 33.275435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1240, "felt:has_geometry": true, "felt:h3_index": 644747325903749669, "STATEFP": 6, "PLACEFP": 55058, "PLACENS": 2585656, "GEOID": 655058, "NAME": "Pala", "NAMELSAD": "Pala CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14449444, "AWATER": 0, "INTPTLAT": 33.3639256, "INTPTLON": -117.0677853, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -117.070312, 33.362650 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1308, "felt:has_geometry": true, "felt:h3_index": 644747326050231120, "STATEFP": 6, "PLACEFP": 59248, "PLACENS": 2409123, "GEOID": 659248, "NAME": "Rainbow", "NAMELSAD": "Rainbow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28633080, "AWATER": 0, "INTPTLAT": 33.4098728, "INTPTLON": -117.1394401, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -117.141724, 33.408517 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 914, "felt:has_geometry": true, "felt:h3_index": 644747326632756579, "STATEFP": 6, "PLACEFP": 32212, "PLACENS": 2813413, "GEOID": 632212, "NAME": "Harmony Grove", "NAMELSAD": "Harmony Grove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7980769, "AWATER": 0, "INTPTLAT": 33.1007172, "INTPTLON": -117.1379923, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -117.136230, 33.100745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 303, "felt:has_geometry": true, "felt:h3_index": 644747326829808690, "STATEFP": 6, "PLACEFP": 22804, "PLACENS": 2410455, "GEOID": 622804, "NAME": "Escondido", "NAMELSAD": "Escondido city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 96726218, "AWATER": 276445, "INTPTLAT": 33.1330533, "INTPTLON": -117.074043, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -117.075806, 33.132951 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 796, "felt:has_geometry": true, "felt:h3_index": 644747327091146763, "STATEFP": 6, "PLACEFP": 21916, "PLACENS": 2813412, "GEOID": 621916, "NAME": "Elfin Forest", "NAMELSAD": "Elfin Forest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5243843, "AWATER": 0, "INTPTLAT": 33.0812315, "INTPTLON": -117.1774428, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -117.180176, 33.082337 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 802, "felt:has_geometry": true, "felt:h3_index": 644747327105748266, "STATEFP": 6, "PLACEFP": 18422, "PLACENS": 2813414, "GEOID": 618422, "NAME": "Del Dios", "NAMELSAD": "Del Dios CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1061683, "AWATER": 0, "INTPTLAT": 33.0756817, "INTPTLON": -117.1190364, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -117.119751, 33.077734 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 343, "felt:has_geometry": true, "felt:h3_index": 644747327819540016, "STATEFP": 6, "PLACEFP": 68196, "PLACENS": 2411797, "GEOID": 668196, "NAME": "San Marcos", "NAMELSAD": "San Marcos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 63624545, "AWATER": 52493, "INTPTLAT": 33.1325674, "INTPTLON": -117.1698921, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -117.169189, 33.132951 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 349, "felt:has_geometry": true, "felt:h3_index": 644747327971027348, "STATEFP": 6, "PLACEFP": 82996, "PLACENS": 2412161, "GEOID": 682996, "NAME": "Vista", "NAMELSAD": "Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48551300, "AWATER": 0, "INTPTLAT": 33.1896819, "INTPTLON": -117.2385799, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -117.240601, 33.188134 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 480, "felt:has_geometry": true, "felt:h3_index": 644747328246928626, "STATEFP": 6, "PLACEFP": 11194, "PLACENS": 2409984, "GEOID": 611194, "NAME": "Carlsbad", "NAMELSAD": "Carlsbad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 97932263, "AWATER": 3378580, "INTPTLAT": 33.1292841, "INTPTLON": -117.2841831, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -117.284546, 33.128351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1021, "felt:has_geometry": true, "felt:h3_index": 644747328301214488, "STATEFP": 6, "PLACEFP": 39724, "PLACENS": 2408550, "GEOID": 639724, "NAME": "Lake San Marcos", "NAMELSAD": "Lake San Marcos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4420806, "AWATER": 266467, "INTPTLAT": 33.1223616, "INTPTLON": -117.2085756, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -117.207642, 33.123751 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 319, "felt:has_geometry": true, "felt:h3_index": 644747349465553050, "STATEFP": 6, "PLACEFP": 13392, "PLACENS": 2409461, "GEOID": 613392, "NAME": "Chula Vista", "NAMELSAD": "Chula Vista city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 128560729, "AWATER": 6360807, "INTPTLAT": 32.6276701, "INTPTLON": -117.0151696, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -117.015381, 32.625497 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 304, "felt:has_geometry": true, "felt:h3_index": 644747349727826304, "STATEFP": 6, "PLACEFP": 36294, "PLACENS": 2410098, "GEOID": 636294, "NAME": "Imperial Beach", "NAMELSAD": "Imperial Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11112520, "AWATER": 304504, "INTPTLAT": 32.5691398, "INTPTLON": -117.1149206, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -117.114258, 32.569963 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1607, "felt:has_geometry": true, "felt:h3_index": 644747351250961776, "STATEFP": 6, "PLACEFP": 73696, "PLACENS": 2408796, "GEOID": 673696, "NAME": "Spring Valley", "NAMELSAD": "Spring Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19015909, "AWATER": 88959, "INTPTLAT": 32.7299478, "INTPTLON": -116.9764015, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -116.976929, 32.731841 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 960, "felt:has_geometry": true, "felt:h3_index": 644747351573707558, "STATEFP": 6, "PLACEFP": 37120, "PLACENS": 2408438, "GEOID": 637120, "NAME": "Jamul", "NAMELSAD": "Jamul CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43597950, "AWATER": 0, "INTPTLAT": 32.71841, "INTPTLON": -116.870862, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -116.872559, 32.717977 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 415, "felt:has_geometry": true, "felt:h3_index": 644747371654271030, "STATEFP": 6, "PLACEFP": 3274, "PLACENS": 2409763, "GEOID": 603274, "NAME": "Avalon", "NAMELSAD": "Avalon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7473920, "AWATER": 12349954, "INTPTLAT": 33.3433354, "INTPTLON": -118.3176149, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -118.317261, 33.344296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 236, "felt:has_geometry": true, "felt:h3_index": 644747384394364529, "STATEFP": 6, "PLACEFP": 39178, "PLACENS": 2411595, "GEOID": 639178, "NAME": "Laguna Beach", "NAMELSAD": "Laguna Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23037592, "AWATER": 2512773, "INTPTLAT": 33.54337, "INTPTLON": -117.7618013, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -117.762451, 33.541395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 238, "felt:has_geometry": true, "felt:h3_index": 644747384789207693, "STATEFP": 6, "PLACEFP": 39259, "PLACENS": 2411598, "GEOID": 639259, "NAME": "Laguna Woods", "NAMELSAD": "Laguna Woods city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8655356, "AWATER": 2375, "INTPTLAT": 33.6120583, "INTPTLON": -117.7303193, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -117.729492, 33.610045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 229, "felt:has_geometry": true, "felt:h3_index": 644747384853764881, "STATEFP": 6, "PLACEFP": 947, "PLACENS": 2409683, "GEOID": 600947, "NAME": "Aliso Viejo", "NAMELSAD": "Aliso Viejo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17937313, "AWATER": 0, "INTPTLAT": 33.57921, "INTPTLON": -117.7288978, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -117.729492, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 237, "felt:has_geometry": true, "felt:h3_index": 644747384899657043, "STATEFP": 6, "PLACEFP": 39220, "PLACENS": 2411596, "GEOID": 639220, "NAME": "Laguna Hills", "NAMELSAD": "Laguna Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16960505, "AWATER": 63580, "INTPTLAT": 33.5912164, "INTPTLON": -117.6976212, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -117.696533, 33.591743 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 257, "felt:has_geometry": true, "felt:h3_index": 644747385239448646, "STATEFP": 6, "PLACEFP": 39248, "PLACENS": 2411597, "GEOID": 639248, "NAME": "Laguna Niguel", "NAMELSAD": "Laguna Niguel city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38165700, "AWATER": 133550, "INTPTLAT": 33.5286538, "INTPTLON": -117.7012525, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -117.702026, 33.527658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 233, "felt:has_geometry": true, "felt:h3_index": 644747385268395213, "STATEFP": 6, "PLACEFP": 17946, "PLACENS": 2410293, "GEOID": 617946, "NAME": "Dana Point", "NAMELSAD": "Dana Point city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16797929, "AWATER": 691793, "INTPTLAT": 33.475452, "INTPTLON": -117.6930873, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -117.691040, 33.477272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 253, "felt:has_geometry": true, "felt:h3_index": 644747385956222806, "STATEFP": 6, "PLACEFP": 16532, "PLACENS": 2410239, "GEOID": 616532, "NAME": "Costa Mesa", "NAMELSAD": "Costa Mesa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 40937010, "AWATER": 24554, "INTPTLAT": 33.6659055, "INTPTLON": -117.9123358, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -117.910767, 33.664925 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 473, "felt:has_geometry": true, "felt:h3_index": 644747386286516806, "STATEFP": 6, "PLACEFP": 51182, "PLACENS": 2411250, "GEOID": 651182, "NAME": "Newport Beach", "NAMELSAD": "Newport Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 61634972, "AWATER": 75434150, "INTPTLAT": 33.597332, "INTPTLON": -117.890352, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -117.888794, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1552, "felt:has_geometry": true, "felt:h3_index": 644747391002831275, "STATEFP": 6, "PLACEFP": 84144, "PLACENS": 2409546, "GEOID": 684144, "NAME": "West Carson", "NAMELSAD": "West Carson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5868539, "AWATER": 33313, "INTPTLAT": 33.8231392, "INTPTLON": -118.2936849, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -118.295288, 33.824794 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 448, "felt:has_geometry": true, "felt:h3_index": 644747391035825066, "STATEFP": 6, "PLACEFP": 42468, "PLACENS": 2410859, "GEOID": 642468, "NAME": "Lomita", "NAMELSAD": "Lomita city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4952726, "AWATER": 0, "INTPTLAT": 33.7933059, "INTPTLON": -118.3174546, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -118.317261, 33.792844 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 135, "felt:has_geometry": true, "felt:h3_index": 644747391127717476, "STATEFP": 6, "PLACEFP": 71876, "PLACENS": 2411899, "GEOID": 671876, "NAME": "Signal Hill", "NAMELSAD": "Signal Hill city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5670582, "AWATER": 4445, "INTPTLAT": 33.803461, "INTPTLON": -118.1697347, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.801974 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 134, "felt:has_geometry": true, "felt:h3_index": 644747391194404497, "STATEFP": 6, "PLACEFP": 43000, "PLACENS": 2410866, "GEOID": 643000, "NAME": "Long Beach", "NAMELSAD": "Long Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 131239999, "AWATER": 70390689, "INTPTLAT": 33.7807912, "INTPTLON": -118.1681803, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 317, "felt:has_geometry": true, "felt:h3_index": 644747391231408362, "STATEFP": 6, "PLACEFP": 11530, "PLACENS": 2409399, "GEOID": 611530, "NAME": "Carson", "NAMELSAD": "Carson city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48513002, "AWATER": 612009, "INTPTLAT": 33.840367, "INTPTLON": -118.2495736, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -118.251343, 33.838483 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 12, "felt:has_geometry": true, "felt:h3_index": 644747391507016790, "STATEFP": 6, "PLACEFP": 62602, "PLACENS": 2410986, "GEOID": 662602, "NAME": "Rolling Hills", "NAMELSAD": "Rolling Hills city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7744892, "AWATER": 0, "INTPTLAT": 33.7600164, "INTPTLON": -118.3471684, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -118.344727, 33.760882 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 20, "felt:has_geometry": true, "felt:h3_index": 644747391560882420, "STATEFP": 6, "PLACEFP": 62644, "PLACENS": 2410987, "GEOID": 662644, "NAME": "Rolling Hills Estates", "NAMELSAD": "Rolling Hills Estates city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9263829, "AWATER": 94012, "INTPTLAT": 33.7784423, "INTPTLON": -118.3274319, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -118.328247, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 431, "felt:has_geometry": true, "felt:h3_index": 644747391939978161, "STATEFP": 6, "PLACEFP": 33364, "PLACENS": 2410749, "GEOID": 633364, "NAME": "Hermosa Beach", "NAMELSAD": "Hermosa Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3692737, "AWATER": 12981958, "INTPTLAT": 33.8698189, "INTPTLON": -118.4052955, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -118.405151, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 499, "felt:has_geometry": true, "felt:h3_index": 644747392208083680, "STATEFP": 6, "PLACEFP": 1150, "PLACENS": 2407724, "GEOID": 601150, "NAME": "Alondra Park", "NAMELSAD": "Alondra Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2861316, "AWATER": 93791, "INTPTLAT": 33.8901549, "INTPTLON": -118.3356779, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -118.333740, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 95, "felt:has_geometry": true, "felt:h3_index": 644747392223055168, "STATEFP": 6, "PLACEFP": 40886, "PLACENS": 2411637, "GEOID": 640886, "NAME": "Lawndale", "NAMELSAD": "Lawndale city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5107874, "AWATER": 0, "INTPTLAT": 33.8884347, "INTPTLON": -118.3531433, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -118.355713, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 174, "felt:has_geometry": true, "felt:h3_index": 644747392263300426, "STATEFP": 6, "PLACEFP": 60018, "PLACENS": 2411535, "GEOID": 660018, "NAME": "Redondo Beach", "NAMELSAD": "Redondo Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16051999, "AWATER": 18487297, "INTPTLAT": 33.8495382, "INTPTLON": -118.400755, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -118.399658, 33.847608 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 429, "felt:has_geometry": true, "felt:h3_index": 644747392312425654, "STATEFP": 6, "PLACEFP": 22412, "PLACENS": 2410417, "GEOID": 622412, "NAME": "El Segundo", "NAMELSAD": "El Segundo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14113054, "AWATER": 13722008, "INTPTLAT": 33.9103673, "INTPTLON": -118.4250795, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -118.427124, 33.911454 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 449, "felt:has_geometry": true, "felt:h3_index": 644747392390463787, "STATEFP": 6, "PLACEFP": 45400, "PLACENS": 2411020, "GEOID": 645400, "NAME": "Manhattan Beach", "NAMELSAD": "Manhattan Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10189493, "AWATER": 16389932, "INTPTLAT": 33.900869899999999, "INTPTLON": -118.4207152, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -118.421631, 33.902336 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 11, "felt:has_geometry": true, "felt:h3_index": 644747392549282996, "STATEFP": 6, "PLACEFP": 55380, "PLACENS": 2411363, "GEOID": 655380, "NAME": "Palos Verdes Estates", "NAMELSAD": "Palos Verdes Estates city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12369151, "AWATER": 33350007, "INTPTLAT": 33.774271, "INTPTLON": -118.4257542, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -118.427124, 33.774581 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 175, "felt:has_geometry": true, "felt:h3_index": 644747392745152580, "STATEFP": 6, "PLACEFP": 80000, "PLACENS": 2412087, "GEOID": 680000, "NAME": "Torrance", "NAMELSAD": "Torrance city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 53136568, "AWATER": 10607454, "INTPTLAT": 33.8304529, "INTPTLON": -118.3566183, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -118.355713, 33.829357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 410, "felt:has_geometry": true, "felt:h3_index": 644747392977549932, "STATEFP": 6, "PLACEFP": 2896, "PLACENS": 2409735, "GEOID": 602896, "NAME": "Artesia", "NAMELSAD": "Artesia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4196986, "AWATER": 0, "INTPTLAT": 33.8675912, "INTPTLON": -118.0806338, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 33.865854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 446, "felt:has_geometry": true, "felt:h3_index": 644747393020254636, "STATEFP": 6, "PLACEFP": 12552, "PLACENS": 2409431, "GEOID": 612552, "NAME": "Cerritos", "NAMELSAD": "Cerritos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22602736, "AWATER": 338649, "INTPTLAT": 33.867745, "INTPTLON": -118.069471, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -118.070068, 33.865854 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 143, "felt:has_geometry": true, "felt:h3_index": 644747393065919553, "STATEFP": 6, "PLACEFP": 39892, "PLACENS": 2411613, "GEOID": 639892, "NAME": "Lakewood", "NAMELSAD": "Lakewood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24330780, "AWATER": 133080, "INTPTLAT": 33.8471353, "INTPTLON": -118.121894, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -118.119507, 33.847608 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 46, "felt:has_geometry": true, "felt:h3_index": 644747393191424750, "STATEFP": 6, "PLACEFP": 55618, "PLACENS": 2411369, "GEOID": 655618, "NAME": "Paramount", "NAMELSAD": "Paramount city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12240740, "AWATER": 283684, "INTPTLAT": 33.8988835, "INTPTLON": -118.1666294, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.897777 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 416, "felt:has_geometry": true, "felt:h3_index": 644747393217452248, "STATEFP": 6, "PLACEFP": 4982, "PLACENS": 2409822, "GEOID": 604982, "NAME": "Bellflower", "NAMELSAD": "Bellflower city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15843604, "AWATER": 130868, "INTPTLAT": 33.8878214, "INTPTLON": -118.1272504, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -118.125000, 33.888658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 9, "felt:has_geometry": true, "felt:h3_index": 644747393297385361, "STATEFP": 6, "PLACEFP": 40032, "PLACENS": 2411577, "GEOID": 640032, "NAME": "La Mirada", "NAMELSAD": "La Mirada city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20262797, "AWATER": 44394, "INTPTLAT": 33.9020453, "INTPTLON": -118.0089608, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -118.009644, 33.902336 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 232, "felt:has_geometry": true, "felt:h3_index": 644747393313095734, "STATEFP": 6, "PLACEFP": 8786, "PLACENS": 2409932, "GEOID": 608786, "NAME": "Buena Park", "NAMELSAD": "Buena Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 27264655, "AWATER": 65428, "INTPTLAT": 33.8573527, "INTPTLON": -118.0073733, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -118.009644, 33.856732 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 14, "felt:has_geometry": true, "felt:h3_index": 644747393419727128, "STATEFP": 6, "PLACEFP": 69154, "PLACENS": 2411823, "GEOID": 669154, "NAME": "Santa Fe Springs", "NAMELSAD": "Santa Fe Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22942025, "AWATER": 101085, "INTPTLAT": 33.9335648, "INTPTLON": -118.0626113, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -118.064575, 33.934245 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 146, "felt:has_geometry": true, "felt:h3_index": 644747393444904986, "STATEFP": 6, "PLACEFP": 52526, "PLACENS": 2411281, "GEOID": 652526, "NAME": "Norwalk", "NAMELSAD": "Norwalk city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25141960, "AWATER": 98075, "INTPTLAT": 33.9076003, "INTPTLON": -118.0834525, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 33.906896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 254, "felt:has_geometry": true, "felt:h3_index": 644747393783649610, "STATEFP": 6, "PLACEFP": 17750, "PLACENS": 2410282, "GEOID": 617750, "NAME": "Cypress", "NAMELSAD": "Cypress city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17130355, "AWATER": 22347, "INTPTLAT": 33.8184768, "INTPTLON": -118.0383074, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 33.820230 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 430, "felt:has_geometry": true, "felt:h3_index": 644747393795185462, "STATEFP": 6, "PLACEFP": 32506, "PLACENS": 2410716, "GEOID": 632506, "NAME": "Hawaiian Gardens", "NAMELSAD": "Hawaiian Gardens city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2447971, "AWATER": 30331, "INTPTLAT": 33.8304821, "INTPTLON": -118.0734509, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -118.075562, 33.829357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 221, "felt:has_geometry": true, "felt:h3_index": 644747393835422349, "STATEFP": 6, "PLACEFP": 40256, "PLACENS": 2411578, "GEOID": 640256, "NAME": "La Palma", "NAMELSAD": "La Palma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4611591, "AWATER": 61544, "INTPTLAT": 33.8506159, "INTPTLON": -118.0395647, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -118.037109, 33.852170 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 222, "felt:has_geometry": true, "felt:h3_index": 644747393876282694, "STATEFP": 6, "PLACEFP": 43224, "PLACENS": 2410875, "GEOID": 643224, "NAME": "Los Alamitos", "NAMELSAD": "Los Alamitos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 10380819, "AWATER": 161830, "INTPTLAT": 33.7969112, "INTPTLON": -118.061244, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -118.059082, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1562, "felt:has_geometry": true, "felt:h3_index": 644747394123115086, "STATEFP": 6, "PLACEFP": 84780, "PLACENS": 2409548, "GEOID": 684780, "NAME": "West Rancho Dominguez", "NAMELSAD": "West Rancho Dominguez CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10284759, "AWATER": 13545, "INTPTLAT": 33.9043316, "INTPTLON": -118.2677765, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -118.267822, 33.902336 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1550, "felt:has_geometry": true, "felt:h3_index": 644747394142299509, "STATEFP": 6, "PLACEFP": 84116, "PLACENS": 2409544, "GEOID": 684116, "NAME": "West Athens", "NAMELSAD": "West Athens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3462635, "AWATER": 0, "INTPTLAT": 33.923453, "INTPTLON": -118.3033012, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1572, "felt:has_geometry": true, "felt:h3_index": 644747394159926670, "STATEFP": 6, "PLACEFP": 85614, "PLACENS": 2409601, "GEOID": 685614, "NAME": "Willowbrook", "NAMELSAD": "Willowbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4341865, "AWATER": 7356, "INTPTLAT": 33.9208339, "INTPTLON": -118.236915, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -118.234863, 33.920572 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1526, "felt:has_geometry": true, "felt:h3_index": 644747394208558448, "STATEFP": 6, "PLACEFP": 82667, "PLACENS": 2409512, "GEOID": 682667, "NAME": "View Park-Windsor Hills", "NAMELSAD": "View Park-Windsor Hills CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4768647, "AWATER": 1987, "INTPTLAT": 33.9944725, "INTPTLON": -118.3477617, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -118.350220, 33.993473 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 152, "felt:has_geometry": true, "felt:h3_index": 644747394329006921, "STATEFP": 6, "PLACEFP": 73080, "PLACENS": 2411935, "GEOID": 673080, "NAME": "South Gate", "NAMELSAD": "South Gate city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 18744410, "AWATER": 303434, "INTPTLAT": 33.9441585, "INTPTLON": -118.1927614, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1538, "felt:has_geometry": true, "felt:h3_index": 644747394335378821, "STATEFP": 6, "PLACEFP": 83402, "PLACENS": 2409528, "GEOID": 683402, "NAME": "Walnut Park", "NAMELSAD": "Walnut Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1940966, "AWATER": 0, "INTPTLAT": 33.9682327, "INTPTLON": -118.2219479, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -118.223877, 33.966142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 420, "felt:has_geometry": true, "felt:h3_index": 644747394359435626, "STATEFP": 6, "PLACEFP": 17498, "PLACENS": 2410272, "GEOID": 617498, "NAME": "Cudahy", "NAMELSAD": "Cudahy city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3046449, "AWATER": 131179, "INTPTLAT": 33.9640029, "INTPTLON": -118.1825614, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.966142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 150, "felt:has_geometry": true, "felt:h3_index": 644747394370061864, "STATEFP": 6, "PLACEFP": 4870, "PLACENS": 2409816, "GEOID": 604870, "NAME": "Bell", "NAMELSAD": "Bell city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6496979, "AWATER": 307162, "INTPTLAT": 33.9797042, "INTPTLON": -118.1792494, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 24, "felt:has_geometry": true, "felt:h3_index": 644747394390735084, "STATEFP": 6, "PLACEFP": 44574, "PLACENS": 2410901, "GEOID": 644574, "NAME": "Lynwood", "NAMELSAD": "Lynwood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12537268, "AWATER": 0, "INTPTLAT": 33.923959, "INTPTLON": -118.2016551, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -118.201904, 33.925130 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 15, "felt:has_geometry": true, "felt:h3_index": 644747394496411456, "STATEFP": 6, "PLACEFP": 82422, "PLACENS": 2412150, "GEOID": 682422, "NAME": "Vernon", "NAMELSAD": "Vernon city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12882252, "AWATER": 476377, "INTPTLAT": 34.001123, "INTPTLON": -118.2108689, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.002581 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 838, "felt:has_geometry": true, "felt:h3_index": 644747394525651986, "STATEFP": 6, "PLACEFP": 24477, "PLACENS": 2408218, "GEOID": 624477, "NAME": "Florence-Graham", "NAMELSAD": "Florence-Graham CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9089172, "AWATER": 0, "INTPTLAT": 33.9681594, "INTPTLON": -118.2446671, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -118.245850, 33.966142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 151, "felt:has_geometry": true, "felt:h3_index": 644747394558929321, "STATEFP": 6, "PLACEFP": 36056, "PLACENS": 2410079, "GEOID": 636056, "NAME": "Huntington Park", "NAMELSAD": "Huntington Park city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7788887, "AWATER": 8354, "INTPTLAT": 33.9792475, "INTPTLON": -118.217438, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -118.218384, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 142, "felt:has_geometry": true, "felt:h3_index": 644747394604597965, "STATEFP": 6, "PLACEFP": 28168, "PLACENS": 2410570, "GEOID": 628168, "NAME": "Gardena", "NAMELSAD": "Gardena city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15097437, "AWATER": 93629, "INTPTLAT": 33.8944169, "INTPTLON": -118.307522, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -118.306274, 33.893217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1048, "felt:has_geometry": true, "felt:h3_index": 644747394734962224, "STATEFP": 6, "PLACEFP": 41180, "PLACENS": 2408600, "GEOID": 641180, "NAME": "Lennox", "NAMELSAD": "Lennox CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2831941, "AWATER": 0, "INTPTLAT": 33.9380681, "INTPTLON": -118.3585399, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -118.361206, 33.938803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1558, "felt:has_geometry": true, "felt:h3_index": 644747394755913550, "STATEFP": 6, "PLACEFP": 84592, "PLACENS": 2409575, "GEOID": 684592, "NAME": "Westmont", "NAMELSAD": "Westmont CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4784057, "AWATER": 0, "INTPTLAT": 33.9416817, "INTPTLON": -118.3018339, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -118.300781, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 7, "felt:has_geometry": true, "felt:h3_index": 644747394770706948, "STATEFP": 6, "PLACEFP": 36546, "PLACENS": 2410106, "GEOID": 636546, "NAME": "Inglewood", "NAMELSAD": "Inglewood city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 23484488, "AWATER": 63501, "INTPTLAT": 33.9560678, "INTPTLON": -118.3442743, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -118.344727, 33.957030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 728, "felt:has_geometry": true, "felt:h3_index": 644747394804722374, "STATEFP": 6, "PLACEFP": 18352, "PLACENS": 2408648, "GEOID": 618352, "NAMELSAD": "Del Aire CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2611524, "AWATER": 0, "INTPTLAT": 33.9167378, "INTPTLON": -118.3692899, "NAME": "Del Aire,Hawthorne", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -118.366699, 33.916013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 144, "felt:has_geometry": true, "felt:h3_index": 644747394863290888, "STATEFP": 6, "PLACEFP": 15044, "PLACENS": 2410213, "GEOID": 615044, "NAME": "Compton", "NAMELSAD": "Compton city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25971194, "AWATER": 230555, "INTPTLAT": 33.8940467, "INTPTLON": -118.2274687, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -118.229370, 33.893217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 779, "felt:has_geometry": true, "felt:h3_index": 644747394894878306, "STATEFP": 6, "PLACEFP": 21034, "PLACENS": 2408704, "GEOID": 621034, "NAME": "East Rancho Dominguez", "NAMELSAD": "East Rancho Dominguez CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2127127, "AWATER": 0, "INTPTLAT": 33.8948406, "INTPTLON": -118.1955862, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -118.196411, 33.893217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 136, "felt:has_geometry": true, "felt:h3_index": 644747396703175478, "STATEFP": 6, "PLACEFP": 59514, "PLACENS": 2411516, "GEOID": 659514, "NAME": "Rancho Palos Verdes", "NAMELSAD": "Rancho Palos Verdes city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34893929, "AWATER": 67929785, "INTPTLAT": 33.7385168, "INTPTLON": -118.3696845, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -118.372192, 33.738045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 230, "felt:has_geometry": true, "felt:h3_index": 644747397645512960, "STATEFP": 6, "PLACEFP": 36000, "PLACENS": 2410811, "GEOID": 636000, "NAME": "Huntington Beach", "NAMELSAD": "Huntington Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69882014, "AWATER": 3455277, "INTPTLAT": 33.6980069, "INTPTLON": -118.0038344, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -118.004150, 33.696923 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 227, "felt:has_geometry": true, "felt:h3_index": 644747397679615026, "STATEFP": 6, "PLACEFP": 70686, "PLACENS": 2411851, "GEOID": 670686, "NAME": "Seal Beach", "NAMELSAD": "Seal Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 29278826, "AWATER": 1340063, "INTPTLAT": 33.7543992, "INTPTLON": -118.0713198, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -118.070068, 33.756315 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1347, "felt:has_geometry": true, "felt:h3_index": 644747397724214389, "STATEFP": 6, "PLACEFP": 63050, "PLACENS": 2409214, "GEOID": 663050, "NAME": "Rossmoor", "NAMELSAD": "Rossmoor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4038884, "AWATER": 0, "INTPTLAT": 33.7886914, "INTPTLON": -118.0803257, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 33.788279 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 741, "felt:has_geometry": true, "felt:h3_index": 644747433847119077, "STATEFP": 6, "PLACEFP": 19024, "PLACENS": 2408665, "GEOID": 619024, "NAME": "Desert Shores", "NAMELSAD": "Desert Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1809312, "AWATER": 294345, "INTPTLAT": 33.4038032, "INTPTLON": -116.0392059, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -116.037598, 33.403931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1361, "felt:has_geometry": true, "felt:h3_index": 644747434590840730, "STATEFP": 6, "PLACEFP": 64308, "PLACENS": 2409243, "GEOID": 664308, "NAME": "Salton Sea Beach", "NAMELSAD": "Salton Sea Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 780215, "AWATER": 0, "INTPTLAT": 33.3758448, "INTPTLON": -116.0113755, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -116.010132, 33.376412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1217, "felt:has_geometry": true, "felt:h3_index": 644747435151144662, "STATEFP": 6, "PLACEFP": 53224, "PLACENS": 2630708, "GEOID": 653224, "NAME": "Oasis", "NAMELSAD": "Oasis CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 50832299, "AWATER": 0, "INTPTLAT": 33.5275314, "INTPTLON": -116.12611389999999, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -116.125488, 33.527658 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1206, "felt:has_geometry": true, "felt:h3_index": 644747435951268661, "STATEFP": 6, "PLACEFP": 52302, "PLACENS": 2583097, "GEOID": 652302, "NAME": "North Shore", "NAMELSAD": "North Shore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28952350, "AWATER": 13989, "INTPTLAT": 33.5145756, "INTPTLON": -115.9109591, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -115.911255, 33.513919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1123, "felt:has_geometry": true, "felt:h3_index": 644747437084350486, "STATEFP": 6, "PLACEFP": 46660, "PLACENS": 2408811, "GEOID": 646660, "NAME": "Mecca", "NAMELSAD": "Mecca CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18042180, "AWATER": 0, "INTPTLAT": 33.5767084, "INTPTLON": -116.0645275, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -116.065063, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1480, "felt:has_geometry": true, "felt:h3_index": 644747437216367403, "STATEFP": 6, "PLACEFP": 78456, "PLACENS": 2583161, "GEOID": 678456, "NAME": "Thermal", "NAMELSAD": "Thermal CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24307854, "AWATER": 0, "INTPTLAT": 33.6261951, "INTPTLON": -116.1308336, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -116.130981, 33.628342 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1360, "felt:has_geometry": true, "felt:h3_index": 644747440964263009, "STATEFP": 6, "PLACEFP": 64294, "PLACENS": 2409242, "GEOID": 664294, "NAME": "Salton City", "NAMELSAD": "Salton City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55521880, "AWATER": 0, "INTPTLAT": 33.299426, "INTPTLON": -115.9609466, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -115.960693, 33.298395 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 108, "felt:has_geometry": true, "felt:h3_index": 644747442472890388, "STATEFP": 6, "PLACEFP": 55184, "PLACENS": 2411356, "GEOID": 655184, "NAME": "Palm Desert", "NAMELSAD": "Palm Desert city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 69352308, "AWATER": 528740, "INTPTLAT": 33.7376353, "INTPTLON": -116.3641448, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -116.361694, 33.738045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 211, "felt:has_geometry": true, "felt:h3_index": 644747442571460748, "STATEFP": 6, "PLACEFP": 59500, "PLACENS": 2411515, "GEOID": 659500, "NAME": "Rancho Mirage", "NAMELSAD": "Rancho Mirage city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 65518114, "AWATER": 1008457, "INTPTLAT": 33.7638377, "INTPTLON": -116.4303875, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -116.433105, 33.765449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 554, "felt:has_geometry": true, "felt:h3_index": 644747442747446932, "STATEFP": 6, "PLACEFP": 6028, "PLACENS": 2407831, "GEOID": 606028, "NAME": "Bermuda Dunes", "NAMELSAD": "Bermuda Dunes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639830, "AWATER": 0, "INTPTLAT": 33.7434898, "INTPTLON": -116.2873354, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -116.284790, 33.742613 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1482, "felt:has_geometry": true, "felt:h3_index": 644747442812498717, "STATEFP": 6, "PLACEFP": 78596, "PLACENS": 2409313, "GEOID": 678596, "NAME": "Thousand Palms", "NAMELSAD": "Thousand Palms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61175435, "AWATER": 0, "INTPTLAT": 33.8150058, "INTPTLON": -116.3544809, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.815666 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 203, "felt:has_geometry": true, "felt:h3_index": 644747443212399126, "STATEFP": 6, "PLACEFP": 36434, "PLACENS": 2410100, "GEOID": 636434, "NAME": "Indian Wells", "NAMELSAD": "Indian Wells city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 37039262, "AWATER": 679921, "INTPTLAT": 33.7034648, "INTPTLON": -116.3258978, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -116.323242, 33.701493 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 214, "felt:has_geometry": true, "felt:h3_index": 644747443548210560, "STATEFP": 6, "PLACEFP": 55254, "PLACENS": 2411357, "GEOID": 655254, "NAME": "Palm Springs", "NAMELSAD": "Palm Springs city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 244855729, "AWATER": 358065, "INTPTLAT": 33.8033613, "INTPTLON": -116.5382801, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -116.537476, 33.801974 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 106, "felt:has_geometry": true, "felt:h3_index": 644747443814965976, "STATEFP": 6, "PLACEFP": 12048, "PLACENS": 2409412, "GEOID": 612048, "NAME": "Cathedral City", "NAMELSAD": "Cathedral City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 58212517, "AWATER": 665524, "INTPTLAT": 33.8354871, "INTPTLON": -116.4631031, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -116.460571, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 951, "felt:has_geometry": true, "felt:h3_index": 644747444529407400, "STATEFP": 6, "PLACEFP": 36452, "PLACENS": 2583039, "GEOID": 636452, "NAME": "Indio Hills", "NAMELSAD": "Indio Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56620987, "AWATER": 0, "INTPTLAT": 33.8410604, "INTPTLON": -116.2484731, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -116.246338, 33.843045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 740, "felt:has_geometry": true, "felt:h3_index": 644747445260133184, "STATEFP": 6, "PLACEFP": 19022, "PLACENS": 2629131, "GEOID": 619022, "NAME": "Desert Palms", "NAMELSAD": "Desert Palms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6927150, "AWATER": 2271, "INTPTLAT": 33.7791438, "INTPTLON": -116.2982193, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -116.295776, 33.779147 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 739, "felt:has_geometry": true, "felt:h3_index": 644747445796426793, "STATEFP": 6, "PLACEFP": 18986, "PLACENS": 2582994, "GEOID": 618986, "NAME": "Desert Edge", "NAMELSAD": "Desert Edge CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5872955, "AWATER": 0, "INTPTLAT": 33.9222888, "INTPTLON": -116.4400922, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -116.438599, 33.920572 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 873, "felt:has_geometry": true, "felt:h3_index": 644747446318371098, "STATEFP": 6, "PLACEFP": 29112, "PLACENS": 2629132, "GEOID": 629112, "NAME": "Garnet", "NAMELSAD": "Garnet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20397318, "AWATER": 0, "INTPTLAT": 33.9178924, "INTPTLON": -116.479609, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -116.477051, 33.916013 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1410, "felt:has_geometry": true, "felt:h3_index": 644747446444233025, "STATEFP": 6, "PLACEFP": 72156, "PLACENS": 2583145, "GEOID": 672156, "NAME": "Sky Valley", "NAMELSAD": "Sky Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 62985642, "AWATER": 0, "INTPTLAT": 33.8912372, "INTPTLON": -116.3550396, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.893217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 202, "felt:has_geometry": true, "felt:h3_index": 644747449139910869, "STATEFP": 6, "PLACEFP": 14260, "PLACENS": 2409493, "GEOID": 614260, "NAME": "Coachella", "NAMELSAD": "Coachella city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 77484255, "AWATER": 0, "INTPTLAT": 33.6903799, "INTPTLON": -116.1431282, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -116.141968, 33.692352 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 281, "felt:has_geometry": true, "felt:h3_index": 644747449238602998, "STATEFP": 6, "PLACEFP": 36448, "PLACENS": 2410101, "GEOID": 636448, "NAME": "Indio", "NAMELSAD": "Indio city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 85944832, "AWATER": 20661, "INTPTLAT": 33.7316388, "INTPTLON": -116.2359705, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -116.235352, 33.733477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1532, "felt:has_geometry": true, "felt:h3_index": 644747449382634130, "STATEFP": 6, "PLACEFP": 83085, "PLACENS": 2583177, "GEOID": 683085, "NAME": "Vista Santa Rosa", "NAMELSAD": "Vista Santa Rosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 41657100, "AWATER": 32133, "INTPTLAT": 33.6214513, "INTPTLON": -116.2088163, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -116.207886, 33.619194 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 204, "felt:has_geometry": true, "felt:h3_index": 644747449581397654, "STATEFP": 6, "PLACEFP": 40354, "PLACENS": 2411582, "GEOID": 640354, "NAME": "La Quinta", "NAMELSAD": "La Quinta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 91409861, "AWATER": 1101656, "INTPTLAT": 33.6460833, "INTPTLON": -116.275297, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -116.273804, 33.646636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 577, "felt:has_geometry": true, "felt:h3_index": 644747456934429382, "STATEFP": 6, "PLACEFP": 7372, "PLACENS": 2407878, "GEOID": 607372, "NAME": "Bombay Beach", "NAMELSAD": "Bombay Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1719105, "AWATER": 0, "INTPTLAT": 33.3556097, "INTPTLON": -115.7269018, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -115.724487, 33.353473 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1178, "felt:has_geometry": true, "felt:h3_index": 644747474043667859, "STATEFP": 6, "PLACEFP": 49810, "PLACENS": 2628763, "GEOID": 649810, "NAME": "Mount Laguna", "NAMELSAD": "Mount Laguna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4395332, "AWATER": 0, "INTPTLAT": 32.871105, "INTPTLON": -116.4246869, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -116.422119, 32.870360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 970, "felt:has_geometry": true, "felt:h3_index": 644747481633020677, "STATEFP": 6, "PLACEFP": 37582, "PLACENS": 2408455, "GEOID": 637582, "NAME": "Julian", "NAMELSAD": "Julian CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20424527, "AWATER": 0, "INTPTLAT": 33.0735017, "INTPTLON": -116.588883, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -116.586914, 33.073131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 586, "felt:has_geometry": true, "felt:h3_index": 644747483273028443, "STATEFP": 6, "PLACEFP": 7596, "PLACENS": 2407888, "GEOID": 607596, "NAME": "Borrego Springs", "NAMELSAD": "Borrego Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 112422778, "AWATER": 0, "INTPTLAT": 33.2409651, "INTPTLON": -116.3571189, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -116.356201, 33.238688 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1191, "felt:has_geometry": true, "felt:h3_index": 644747487865806163, "STATEFP": 6, "PLACEFP": 51392, "PLACENS": 2408926, "GEOID": 651392, "NAME": "Niland", "NAMELSAD": "Niland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1040220, "AWATER": 0, "INTPTLAT": 33.2387079, "INTPTLON": -115.5144396, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -115.515747, 33.238688 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 250, "felt:has_geometry": true, "felt:h3_index": 644747488324637332, "STATEFP": 6, "PLACEFP": 9878, "PLACENS": 2409962, "GEOID": 609878, "NAME": "Calipatria", "NAMELSAD": "Calipatria city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9579219, "AWATER": 0, "INTPTLAT": 33.1688054, "INTPTLON": -115.4856694, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -115.488281, 33.169744 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 440, "felt:has_geometry": true, "felt:h3_index": 644747492481485891, "STATEFP": 6, "PLACEFP": 84606, "PLACENS": 2412239, "GEOID": 684606, "NAME": "Westmorland", "NAMELSAD": "Westmorland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1528294, "AWATER": 0, "INTPTLAT": 33.038922, "INTPTLON": -115.6223136, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -115.620117, 33.040903 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 428, "felt:has_geometry": true, "felt:h3_index": 644747492590805858, "STATEFP": 6, "PLACEFP": 8058, "PLACENS": 2409893, "GEOID": 608058, "NAME": "Brawley", "NAMELSAD": "Brawley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 21024324, "AWATER": 0, "INTPTLAT": 32.9783547, "INTPTLON": -115.5286723, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -115.526733, 32.976412 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1047, "felt:has_geometry": true, "felt:h3_index": 644747572466202214, "STATEFP": 6, "PLACEFP": 41166, "PLACENS": 2408599, "GEOID": 641166, "NAME": "Lemoore Station", "NAMELSAD": "Lemoore Station CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10965026, "AWATER": 0, "INTPTLAT": 36.2632777, "INTPTLON": -119.9048364, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -119.904785, 36.261992 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1446, "felt:has_geometry": true, "felt:h3_index": 644747573154620105, "STATEFP": 6, "PLACEFP": 75252, "PLACENS": 2410009, "GEOID": 675252, "NAME": "Stratford", "NAMELSAD": "Stratford CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805595, "AWATER": 0, "INTPTLAT": 36.1884644, "INTPTLON": -119.8222466, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -119.822388, 36.186659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 519, "felt:has_geometry": true, "felt:h3_index": 644747574496057734, "STATEFP": 6, "PLACEFP": 2700, "PLACENS": 2407762, "GEOID": 602700, "NAME": "Armona", "NAMELSAD": "Armona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5317203, "AWATER": 0, "INTPTLAT": 36.3166068, "INTPTLON": -119.7053798, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.315125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 888, "felt:has_geometry": true, "felt:h3_index": 644747574617122230, "STATEFP": 6, "PLACEFP": 30686, "PLACENS": 2628734, "GEOID": 630686, "NAME": "Grangeville", "NAMELSAD": "Grangeville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1657009, "AWATER": 0, "INTPTLAT": 36.3438978, "INTPTLON": -119.707467, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.346103 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 240, "felt:has_geometry": true, "felt:h3_index": 644747574722896102, "STATEFP": 6, "PLACEFP": 31960, "PLACENS": 2410696, "GEOID": 631960, "NAME": "Hanford", "NAMELSAD": "Hanford city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 45249771, "AWATER": 0, "INTPTLAT": 36.3275118, "INTPTLON": -119.6550178, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -119.657593, 36.328403 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 930, "felt:has_geometry": true, "felt:h3_index": 644747574792003737, "STATEFP": 6, "PLACEFP": 34281, "PLACENS": 2408397, "GEOID": 634281, "NAME": "Home Garden", "NAMELSAD": "Home Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1144547, "AWATER": 0, "INTPTLAT": 36.3028319, "INTPTLON": -119.637073, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -119.635620, 36.301845 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 234, "felt:has_geometry": true, "felt:h3_index": 644747575125298613, "STATEFP": 6, "PLACEFP": 41152, "PLACENS": 2410819, "GEOID": 641152, "NAME": "Lemoore", "NAMELSAD": "Lemoore city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22828779, "AWATER": 0, "INTPTLAT": 36.2949219, "INTPTLON": -119.7983331, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -119.800415, 36.292991 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 986, "felt:has_geometry": true, "felt:h3_index": 644747577347466051, "STATEFP": 6, "PLACEFP": 38394, "PLACENS": 2408476, "GEOID": 638394, "NAME": "Kettleman City", "NAMELSAD": "Kettleman City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 546646, "AWATER": 0, "INTPTLAT": 36.0089852, "INTPTLON": -119.9628518, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -119.965210, 36.009117 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 363, "felt:has_geometry": true, "felt:h3_index": 644747577859302684, "STATEFP": 6, "PLACEFP": 16224, "PLACENS": 2410227, "GEOID": 616224, "NAME": "Corcoran", "NAMELSAD": "Corcoran city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 19315232, "AWATER": 0, "INTPTLAT": 36.084057, "INTPTLON": -119.5612683, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -119.558716, 36.084621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1543, "felt:has_geometry": true, "felt:h3_index": 644747578083830861, "STATEFP": 6, "PLACEFP": 83724, "PLACENS": 2585463, "GEOID": 683724, "NAME": "Waukena", "NAMELSAD": "Waukena CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 907531, "AWATER": 0, "INTPTLAT": 36.1391038, "INTPTLON": -119.5109733, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -119.509277, 36.137875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1029, "felt:has_geometry": true, "felt:h3_index": 644747580186125331, "STATEFP": 6, "PLACEFP": 40116, "PLACENS": 2408570, "GEOID": 640116, "NAME": "Lanare", "NAMELSAD": "Lanare CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5232743, "AWATER": 0, "INTPTLAT": 36.4377234, "INTPTLON": -119.9321988, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -119.932251, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1563, "felt:has_geometry": true, "felt:h3_index": 644747580572327337, "STATEFP": 6, "PLACEFP": 84863, "PLACENS": 2628800, "GEOID": 684863, "NAME": "Westside", "NAMELSAD": "Westside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5740778, "AWATER": 0, "INTPTLAT": 36.4042015, "INTPTLON": -120.1343258, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 36.403600 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 800, "felt:has_geometry": true, "felt:h3_index": 644747581565594317, "STATEFP": 6, "PLACEFP": 10816, "PLACENS": 2407954, "GEOID": 610816, "NAME": "Cantua Creek", "NAMELSAD": "Cantua Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9832915, "AWATER": 0, "INTPTLAT": 36.5000453, "INTPTLON": -120.3163615, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -120.316772, 36.500805 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 801, "felt:has_geometry": true, "felt:h3_index": 644747581985458390, "STATEFP": 6, "PLACEFP": 11614, "PLACENS": 2407976, "GEOID": 611614, "NAME": "Caruthers", "NAMELSAD": "Caruthers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5238364, "AWATER": 0, "INTPTLAT": 36.5399071, "INTPTLON": -119.8450271, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -119.844360, 36.540536 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 291, "felt:has_geometry": true, "felt:h3_index": 644747584730061441, "STATEFP": 6, "PLACEFP": 36084, "PLACENS": 2410081, "GEOID": 636084, "NAME": "Huron", "NAMELSAD": "Huron city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4302328, "AWATER": 0, "INTPTLAT": 36.2042339, "INTPTLON": -120.0953108, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -120.097046, 36.204391 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1332, "felt:has_geometry": true, "felt:h3_index": 644747586678671960, "STATEFP": 6, "PLACEFP": 61096, "PLACENS": 2409186, "GEOID": 661096, "NAME": "Riverdale", "NAMELSAD": "Riverdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10164976, "AWATER": 0, "INTPTLAT": 36.4304021, "INTPTLON": -119.8671785, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -119.866333, 36.430122 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 406, "felt:has_geometry": true, "felt:h3_index": 644747588564558930, "STATEFP": 6, "PLACEFP": 23616, "PLACENS": 2410485, "GEOID": 623616, "NAME": "Farmersville", "NAMELSAD": "Farmersville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5860074, "AWATER": 0, "INTPTLAT": 36.3047394, "INTPTLON": -119.2086052, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -119.207153, 36.306272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1057, "felt:has_geometry": true, "felt:h3_index": 644747588578951500, "STATEFP": 6, "PLACEFP": 41740, "PLACENS": 2585430, "GEOID": 641740, "NAME": "Linnell Camp", "NAMELSAD": "Linnell Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 303368, "AWATER": 0, "INTPTLAT": 36.3088874, "INTPTLON": -119.2225832, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 36.310699 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 944, "felt:has_geometry": true, "felt:h3_index": 644747588607780620, "STATEFP": 6, "PLACEFP": 36135, "PLACENS": 2805906, "GEOID": 636135, "NAME": "Hypericum", "NAMELSAD": "Hypericum CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80755, "AWATER": 0, "INTPTLAT": 36.2561675, "INTPTLON": -119.2169328, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -119.218140, 36.257563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1488, "felt:has_geometry": true, "felt:h3_index": 644747588676380354, "STATEFP": 6, "PLACEFP": 78932, "PLACENS": 2585461, "GEOID": 678932, "NAME": "Tonyville", "NAMELSAD": "Tonyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 130784, "AWATER": 0, "INTPTLAT": 36.247382, "INTPTLON": -119.0903523, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 36.248703 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 405, "felt:has_geometry": true, "felt:h3_index": 644747588809938028, "STATEFP": 6, "PLACEFP": 23126, "PLACENS": 2410472, "GEOID": 623126, "NAME": "Exeter", "NAMELSAD": "Exeter city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6373810, "AWATER": 0, "INTPTLAT": 36.2940725, "INTPTLON": -119.1459536, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -119.146729, 36.292991 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1489, "felt:has_geometry": true, "felt:h3_index": 644747588902402793, "STATEFP": 6, "PLACEFP": 78949, "PLACENS": 2585462, "GEOID": 678949, "NAME": "Tooleville", "NAMELSAD": "Tooleville CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 172928, "AWATER": 0, "INTPTLAT": 36.2877535, "INTPTLON": -119.115435, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -119.113770, 36.288563 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 784, "felt:has_geometry": true, "felt:h3_index": 644747589158480278, "STATEFP": 6, "PLACEFP": 21210, "PLACENS": 2585408, "GEOID": 621210, "NAME": "East Tulare Villa", "NAMELSAD": "East Tulare Villa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 731424, "AWATER": 0, "INTPTLAT": 36.2037626, "INTPTLON": -119.2803352, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -119.278564, 36.204391 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 407, "felt:has_geometry": true, "felt:h3_index": 644747589237869779, "STATEFP": 6, "PLACEFP": 41712, "PLACENS": 2410839, "GEOID": 641712, "NAME": "Lindsay", "NAMELSAD": "Lindsay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7055435, "AWATER": 0, "INTPTLAT": 36.2081916, "INTPTLON": -119.0897031, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -119.091797, 36.208823 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 176, "felt:has_geometry": true, "felt:h3_index": 644747589504949646, "STATEFP": 6, "PLACEFP": 82954, "PLACENS": 2412160, "GEOID": 682954, "NAME": "Visalia", "NAMELSAD": "Visalia city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 98720318, "AWATER": 51434, "INTPTLAT": 36.3280297, "INTPTLON": -119.3285195, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -119.328003, 36.328403 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 886, "felt:has_geometry": true, "felt:h3_index": 644747589693055857, "STATEFP": 6, "PLACEFP": 30476, "PLACENS": 2408310, "GEOID": 630476, "NAME": "Goshen", "NAMELSAD": "Goshen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7292688, "AWATER": 0, "INTPTLAT": 36.3492658, "INTPTLON": -119.4206215, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -119.421387, 36.350527 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1253, "felt:has_geometry": true, "felt:h3_index": 644747589917098704, "STATEFP": 6, "PLACEFP": 56120, "PLACENS": 2585436, "GEOID": 656120, "NAME": "Patterson Tract", "NAMELSAD": "Patterson Tract CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3744512, "AWATER": 0, "INTPTLAT": 36.3795209, "INTPTLON": -119.2956042, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -119.295044, 36.381490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1045, "felt:has_geometry": true, "felt:h3_index": 644747590710743209, "STATEFP": 6, "PLACEFP": 41110, "PLACENS": 2408598, "GEOID": 641110, "NAME": "Lemon Cove", "NAMELSAD": "Lemon Cove CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3457953, "AWATER": 0, "INTPTLAT": 36.38088, "INTPTLON": -119.0284596, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -119.025879, 36.381490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1055, "felt:has_geometry": true, "felt:h3_index": 644747590765331821, "STATEFP": 6, "PLACEFP": 41656, "PLACENS": 2585429, "GEOID": 641656, "NAME": "Lindcove", "NAMELSAD": "Lindcove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 295046, "AWATER": 0, "INTPTLAT": 36.3580266, "INTPTLON": -119.0645837, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -119.064331, 36.359375 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 957, "felt:has_geometry": true, "felt:h3_index": 644747591710840683, "STATEFP": 6, "PLACEFP": 36910, "PLACENS": 2408434, "GEOID": 636910, "NAME": "Ivanhoe", "NAMELSAD": "Ivanhoe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3392302, "AWATER": 0, "INTPTLAT": 36.3834389, "INTPTLON": -119.220088, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -119.218140, 36.381490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 357, "felt:has_geometry": true, "felt:h3_index": 644747591885081987, "STATEFP": 6, "PLACEFP": 86300, "PLACENS": 2412299, "GEOID": 686300, "NAME": "Woodlake", "NAMELSAD": "Woodlake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7379538, "AWATER": 1178472, "INTPTLAT": 36.4128277, "INTPTLON": -119.1007177, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -119.102783, 36.412442 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1582, "felt:has_geometry": true, "felt:h3_index": 644747592708875594, "STATEFP": 6, "PLACEFP": 86482, "PLACENS": 2409628, "GEOID": 686482, "NAME": "Woodville", "NAMELSAD": "Woodville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2584379, "AWATER": 0, "INTPTLAT": 36.0926804, "INTPTLON": -119.2012255, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.093499 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1583, "felt:has_geometry": true, "felt:h3_index": 644747592732424484, "STATEFP": 6, "PLACEFP": 86489, "PLACENS": 2813334, "GEOID": 686489, "NAME": "Woodville Farm Labor Camp", "NAMELSAD": "Woodville Farm Labor Camp CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 491823, "AWATER": 0, "INTPTLAT": 36.0831506, "INTPTLON": -119.1479227, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -119.146729, 36.084621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1291, "felt:has_geometry": true, "felt:h3_index": 644747592798965994, "STATEFP": 6, "PLACEFP": 58191, "PLACENS": 2409089, "GEOID": 658191, "NAME": "Poplar-Cotton Center", "NAMELSAD": "Poplar-Cotton Center CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6151505, "AWATER": 0, "INTPTLAT": 36.057716, "INTPTLON": -119.1501806, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -119.152222, 36.057981 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1282, "felt:has_geometry": true, "felt:h3_index": 644747593096158564, "STATEFP": 6, "PLACEFP": 57568, "PLACENS": 2585439, "GEOID": 657568, "NAME": "Plainview", "NAMELSAD": "Plainview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 591714, "AWATER": 0, "INTPTLAT": 36.1430275, "INTPTLON": -119.1353398, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -119.135742, 36.142311 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1114, "felt:has_geometry": true, "felt:h3_index": 644747593825062285, "STATEFP": 6, "PLACEFP": 46223, "PLACENS": 2585433, "GEOID": 646223, "NAME": "Matheny", "NAMELSAD": "Matheny CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1109244, "AWATER": 0, "INTPTLAT": 36.1706457, "INTPTLON": -119.3516084, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -119.349976, 36.168923 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 208, "felt:has_geometry": true, "felt:h3_index": 644747594249747697, "STATEFP": 6, "PLACEFP": 80644, "PLACENS": 2412107, "GEOID": 680644, "NAME": "Tulare", "NAMELSAD": "Tulare city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 53407652, "AWATER": 197854, "INTPTLAT": 36.1993663, "INTPTLON": -119.3419206, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -119.344482, 36.199958 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 812, "felt:has_geometry": true, "felt:h3_index": 644747595000689689, "STATEFP": 6, "PLACEFP": 22360, "PLACENS": 2585422, "GEOID": 622360, "NAME": "El Rancho", "NAMELSAD": "El Rancho CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 55904, "AWATER": 0, "INTPTLAT": 36.2206835, "INTPTLON": -119.0683571, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -119.069824, 36.222119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1447, "felt:has_geometry": true, "felt:h3_index": 644747595521508660, "STATEFP": 6, "PLACEFP": 75280, "PLACENS": 2410010, "GEOID": 675280, "NAME": "Strathmore", "NAMELSAD": "Strathmore CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3655054, "AWATER": 0, "INTPTLAT": 36.1461167, "INTPTLON": -119.064341, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -119.064331, 36.146747 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 460, "felt:has_geometry": true, "felt:h3_index": 644747597079579664, "STATEFP": 6, "PLACEFP": 38562, "PLACENS": 2411548, "GEOID": 638562, "NAME": "Kingsburg", "NAMELSAD": "Kingsburg city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9627176, "AWATER": 0, "INTPTLAT": 36.5251925, "INTPTLON": -119.5665645, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -119.564209, 36.527295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 470, "felt:has_geometry": true, "felt:h3_index": 644747597212359372, "STATEFP": 6, "PLACEFP": 70882, "PLACENS": 2411863, "GEOID": 670882, "NAME": "Selma", "NAMELSAD": "Selma city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15041784, "AWATER": 0, "INTPTLAT": 36.5715478, "INTPTLON": -119.6142675, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -119.613647, 36.571424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 809, "felt:has_geometry": true, "felt:h3_index": 644747597358436958, "STATEFP": 6, "PLACEFP": 22235, "PLACENS": 2805242, "GEOID": 622235, "NAME": "El Monte Mobile Village", "NAMELSAD": "El Monte Mobile Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18565, "AWATER": 0, "INTPTLAT": 36.547075, "INTPTLON": -119.4250492, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -119.426880, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 467, "felt:has_geometry": true, "felt:h3_index": 644747597413788188, "STATEFP": 6, "PLACEFP": 55856, "PLACENS": 2411376, "GEOID": 655856, "NAME": "Parlier", "NAMELSAD": "Parlier city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6238407, "AWATER": 0, "INTPTLAT": 36.608693, "INTPTLON": -119.5433673, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -119.542236, 36.606709 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 729, "felt:has_geometry": true, "felt:h3_index": 644747597828172160, "STATEFP": 6, "PLACEFP": 18450, "PLACENS": 2585407, "GEOID": 618450, "NAME": "Delft Colony", "NAMELSAD": "Delft Colony CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 344432, "AWATER": 0, "INTPTLAT": 36.5138094, "INTPTLON": -119.446522, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -119.448853, 36.514051 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1072, "felt:has_geometry": true, "felt:h3_index": 644747597903365891, "STATEFP": 6, "PLACEFP": 42566, "PLACENS": 2408122, "GEOID": 642566, "NAME": "London", "NAMELSAD": "London CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2115155, "AWATER": 0, "INTPTLAT": 36.4804797, "INTPTLON": -119.4449403, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 36.478724 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 459, "felt:has_geometry": true, "felt:h3_index": 644747598104416946, "STATEFP": 6, "PLACEFP": 25436, "PLACENS": 2410538, "GEOID": 625436, "NAME": "Fowler", "NAMELSAD": "Fowler city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 6924931, "AWATER": 0, "INTPTLAT": 36.6241197, "INTPTLON": -119.6746987, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -119.674072, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 774, "felt:has_geometry": true, "felt:h3_index": 644747598277946656, "STATEFP": 6, "PLACEFP": 20928, "PLACENS": 2408041, "GEOID": 620928, "NAME": "Easton", "NAMELSAD": "Easton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7799485, "AWATER": 0, "INTPTLAT": 36.6523908, "INTPTLON": -119.790786, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -119.789429, 36.650793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1151, "felt:has_geometry": true, "felt:h3_index": 644747598616454195, "STATEFP": 6, "PLACEFP": 48592, "PLACENS": 2628758, "GEOID": 648592, "NAME": "Monmouth", "NAMELSAD": "Monmouth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 797858, "AWATER": 0, "INTPTLAT": 36.5656206, "INTPTLON": -119.7404754, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -119.739990, 36.567012 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 799, "felt:has_geometry": true, "felt:h3_index": 644747598763255132, "STATEFP": 6, "PLACEFP": 7750, "PLACENS": 2407895, "GEOID": 607750, "NAME": "Bowles", "NAMELSAD": "Bowles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 985992, "AWATER": 0, "INTPTLAT": 36.6088734, "INTPTLON": -119.7525639, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -119.750977, 36.606709 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 466, "felt:has_geometry": true, "felt:h3_index": 644747599237693969, "STATEFP": 6, "PLACEFP": 54008, "PLACENS": 2411327, "GEOID": 654008, "NAME": "Orange Cove", "NAMELSAD": "Orange Cove city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4640753, "AWATER": 0, "INTPTLAT": 36.6211449, "INTPTLON": -119.3187498, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -119.317017, 36.619937 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 468, "felt:has_geometry": true, "felt:h3_index": 644747599899282065, "STATEFP": 6, "PLACEFP": 60242, "PLACENS": 2410920, "GEOID": 660242, "NAME": "Reedley", "NAMELSAD": "Reedley city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14429457, "AWATER": 185397, "INTPTLAT": 36.5983642, "INTPTLON": -119.4466866, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -119.448853, 36.597889 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 469, "felt:has_geometry": true, "felt:h3_index": 644747600295446035, "STATEFP": 6, "PLACEFP": 67056, "PLACENS": 2411811, "GEOID": 667056, "NAME": "Sanger", "NAMELSAD": "Sanger city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 14937115, "AWATER": 0, "INTPTLAT": 36.6989667, "INTPTLON": -119.5574831, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -119.558716, 36.699255 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1141, "felt:has_geometry": true, "felt:h3_index": 644747600480617499, "STATEFP": 6, "PLACEFP": 47822, "PLACENS": 2583082, "GEOID": 647822, "NAME": "Minkler", "NAMELSAD": "Minkler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15166528, "AWATER": 0, "INTPTLAT": 36.7276241, "INTPTLON": -119.4588496, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -119.459839, 36.725677 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 658, "felt:has_geometry": true, "felt:h3_index": 644747600492608720, "STATEFP": 6, "PLACEFP": 12412, "PLACENS": 2582972, "GEOID": 612412, "NAME": "Centerville", "NAMELSAD": "Centerville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21012392, "AWATER": 0, "INTPTLAT": 36.7361168, "INTPTLON": -119.496006, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -119.498291, 36.734482 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 733, "felt:has_geometry": true, "felt:h3_index": 644747600957454509, "STATEFP": 6, "PLACEFP": 18674, "PLACENS": 2408651, "GEOID": 618674, "NAME": "Del Rey", "NAMELSAD": "Del Rey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3456848, "AWATER": 0, "INTPTLAT": 36.6564641, "INTPTLON": -119.5981349, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -119.597168, 36.655200 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1495, "felt:has_geometry": true, "felt:h3_index": 644747601725891606, "STATEFP": 6, "PLACEFP": 80280, "PLACENS": 2409348, "GEOID": 680280, "NAME": "Traver", "NAMELSAD": "Traver CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1735180, "AWATER": 0, "INTPTLAT": 36.4541114, "INTPTLON": -119.4837296, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -119.481812, 36.452218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1553, "felt:has_geometry": true, "felt:h3_index": 644747602129605221, "STATEFP": 6, "PLACEFP": 84345, "PLACENS": 2627938, "GEOID": 684345, "NAME": "West Goshen", "NAMELSAD": "West Goshen CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1734524, "AWATER": 0, "INTPTLAT": 36.3491827, "INTPTLON": -119.4573743, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -119.459839, 36.350527 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1038, "felt:has_geometry": true, "felt:h3_index": 644747602419724299, "STATEFP": 6, "PLACEFP": 40746, "PLACENS": 2408585, "GEOID": 640746, "NAME": "Laton", "NAMELSAD": "Laton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6545990, "AWATER": 0, "INTPTLAT": 36.4314103, "INTPTLON": -119.6975968, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -119.696045, 36.430122 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 913, "felt:has_geometry": true, "felt:h3_index": 644747602896963982, "STATEFP": 6, "PLACEFP": 32156, "PLACENS": 2628738, "GEOID": 632156, "NAME": "Hardwick", "NAMELSAD": "Hardwick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 359343, "AWATER": 0, "INTPTLAT": 36.4025959, "INTPTLON": -119.7207704, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -119.723511, 36.403600 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1154, "felt:has_geometry": true, "felt:h3_index": 644747603462808452, "STATEFP": 6, "PLACEFP": 48676, "PLACENS": 2585434, "GEOID": 648676, "NAME": "Monson", "NAMELSAD": "Monson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 523997, "AWATER": 0, "INTPTLAT": 36.4924201, "INTPTLON": -119.3361205, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -119.333496, 36.491973 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 404, "felt:has_geometry": true, "felt:h3_index": 644747603618660723, "STATEFP": 6, "PLACEFP": 19318, "PLACENS": 2410342, "GEOID": 619318, "NAME": "Dinuba", "NAMELSAD": "Dinuba city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16892332, "AWATER": 0, "INTPTLAT": 36.5453259, "INTPTLON": -119.3986439, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -119.399414, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1588, "felt:has_geometry": true, "felt:h3_index": 644747603801825306, "STATEFP": 6, "PLACEFP": 86734, "PLACENS": 2585465, "GEOID": 686734, "NAME": "Yettem", "NAMELSAD": "Yettem CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 284865, "AWATER": 0, "INTPTLAT": 36.4856842, "INTPTLON": -119.2556893, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -119.256592, 36.487557 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1235, "felt:has_geometry": true, "felt:h3_index": 644747603868199494, "STATEFP": 6, "PLACEFP": 54372, "PLACENS": 2409000, "GEOID": 654372, "NAME": "Orosi", "NAMELSAD": "Orosi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6672042, "AWATER": 0, "INTPTLAT": 36.5432708, "INTPTLON": -119.2914187, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -119.289551, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1452, "felt:has_geometry": true, "felt:h3_index": 644747603887851874, "STATEFP": 6, "PLACEFP": 75672, "PLACENS": 2585453, "GEOID": 675672, "NAME": "Sultana", "NAMELSAD": "Sultana CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 972824, "AWATER": 0, "INTPTLAT": 36.5455109, "INTPTLON": -119.3377357, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -119.338989, 36.544949 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1081, "felt:has_geometry": true, "felt:h3_index": 644747612084539746, "STATEFP": 6, "PLACEFP": 44280, "PLACENS": 2408143, "GEOID": 644280, "NAME": "Lost Hills", "NAMELSAD": "Lost Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14378327, "AWATER": 30536, "INTPTLAT": 35.6327212, "INTPTLON": -119.6778893, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -119.679565, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 225, "felt:has_geometry": true, "felt:h3_index": 644747614544475188, "STATEFP": 6, "PLACEFP": 3302, "PLACENS": 2409764, "GEOID": 603302, "NAME": "Avenal", "NAMELSAD": "Avenal city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 50459974, "AWATER": 0, "INTPTLAT": 36.0311072, "INTPTLON": -120.1161739, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 36.031332 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 457, "felt:has_geometry": true, "felt:h3_index": 644747615712534694, "STATEFP": 6, "PLACEFP": 14274, "PLACENS": 2409495, "GEOID": 614274, "NAME": "Coalinga", "NAMELSAD": "Coalinga city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 17734580, "AWATER": 79727, "INTPTLAT": 36.1330557, "INTPTLON": -120.3390286, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -120.338745, 36.133438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 497, "felt:has_geometry": true, "felt:h3_index": 644747622956296557, "STATEFP": 6, "PLACEFP": 1010, "PLACENS": 2585402, "GEOID": 601010, "NAME": "Allensworth", "NAMELSAD": "Allensworth CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8035085, "AWATER": 0, "INTPTLAT": 35.8498779, "INTPTLON": -119.389209, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -119.388428, 35.848987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 305, "felt:has_geometry": true, "felt:h3_index": 644747623669054852, "STATEFP": 6, "PLACEFP": 18394, "PLACENS": 2410317, "GEOID": 618394, "NAME": "Delano", "NAMELSAD": "Delano city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 38114812, "AWATER": 135325, "INTPTLAT": 35.7664302, "INTPTLON": -119.2642212, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -119.262085, 35.764343 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 500, "felt:has_geometry": true, "felt:h3_index": 644747623936866486, "STATEFP": 6, "PLACEFP": 1164, "PLACENS": 2407725, "GEOID": 601164, "NAME": "Alpaugh", "NAMELSAD": "Alpaugh CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1082836, "AWATER": 0, "INTPTLAT": 35.8890372, "INTPTLON": -119.4858089, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -119.487305, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 765, "felt:has_geometry": true, "felt:h3_index": 644747625667123280, "STATEFP": 6, "PLACEFP": 20438, "PLACENS": 2408701, "GEOID": 620438, "NAME": "Earlimart", "NAMELSAD": "Earlimart CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7519391, "AWATER": 0, "INTPTLAT": 35.8913541, "INTPTLON": -119.2720916, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -119.273071, 35.893500 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1485, "felt:has_geometry": true, "felt:h3_index": 644747626384819344, "STATEFP": 6, "PLACEFP": 78750, "PLACENS": 2409325, "GEOID": 678750, "NAME": "Tipton", "NAMELSAD": "Tipton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4471210, "AWATER": 0, "INTPTLAT": 36.0572328, "INTPTLON": -119.3135247, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 36.057981 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1281, "felt:has_geometry": true, "felt:h3_index": 644747626833840880, "STATEFP": 6, "PLACEFP": 57512, "PLACENS": 2409079, "GEOID": 657512, "NAME": "Pixley", "NAMELSAD": "Pixley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13597489, "AWATER": 56590, "INTPTLAT": 35.976823, "INTPTLON": -119.3001904, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -119.300537, 35.978006 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1479, "felt:has_geometry": true, "felt:h3_index": 644747626851345653, "STATEFP": 6, "PLACEFP": 78336, "PLACENS": 2585460, "GEOID": 678336, "NAME": "Teviston", "NAMELSAD": "Teviston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5657720, "AWATER": 0, "INTPTLAT": 35.9288721, "INTPTLON": -119.2783324, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -119.278564, 35.929093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 306, "felt:has_geometry": true, "felt:h3_index": 644747627426563821, "STATEFP": 6, "PLACEFP": 44826, "PLACENS": 2411062, "GEOID": 644826, "NAME": "McFarland", "NAMELSAD": "McFarland city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7875289, "AWATER": 0, "INTPTLAT": 35.6705643, "INTPTLON": -119.231681, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -119.229126, 35.670685 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 322, "felt:has_geometry": true, "felt:h3_index": 644747627683405902, "STATEFP": 6, "PLACEFP": 83542, "PLACENS": 2412185, "GEOID": 683542, "NAME": "Wasco", "NAMELSAD": "Wasco city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24313382, "AWATER": 0, "INTPTLAT": 35.5937849, "INTPTLON": -119.3671006, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -119.366455, 35.594786 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 969, "felt:has_geometry": true, "felt:h3_index": 644747629431316765, "STATEFP": 6, "PLACEFP": 37568, "PLACENS": 2805908, "GEOID": 637568, "NAME": "Jovista", "NAMELSAD": "Jovista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260300, "AWATER": 0, "INTPTLAT": 35.7940141, "INTPTLON": -119.18957, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -119.190674, 35.795538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1325, "felt:has_geometry": true, "felt:h3_index": 644747629488099461, "STATEFP": 6, "PLACEFP": 60606, "PLACENS": 2409166, "GEOID": 660606, "NAME": "Richgrove", "NAMELSAD": "Richgrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1170649, "AWATER": 0, "INTPTLAT": 35.7966117, "INTPTLON": -119.1069032, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -119.108276, 35.795538 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1339, "felt:has_geometry": true, "felt:h3_index": 644747629608566958, "STATEFP": 6, "PLACEFP": 62496, "PLACENS": 2585443, "GEOID": 662496, "NAME": "Rodriguez Camp", "NAMELSAD": "Rodriguez Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 682112, "AWATER": 0, "INTPTLAT": 35.8089861, "INTPTLON": -119.1388223, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -119.141235, 35.808904 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1496, "felt:has_geometry": true, "felt:h3_index": 644747653026284737, "STATEFP": 6, "PLACEFP": 80364, "PLACENS": 2583166, "GEOID": 680364, "NAME": "Tres Pinos", "NAMELSAD": "Tres Pinos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9327895, "AWATER": 0, "INTPTLAT": 36.7903815, "INTPTLON": -121.3105643, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -121.311035, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 445, "felt:has_geometry": true, "felt:h3_index": 644747654188651234, "STATEFP": 6, "PLACEFP": 34120, "PLACENS": 2410778, "GEOID": 634120, "NAME": "Hollister", "NAMELSAD": "Hollister city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20622323, "AWATER": 0, "INTPTLAT": 36.8555992, "INTPTLON": -121.3985978, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -121.398926, 36.857648 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1604, "felt:has_geometry": true, "felt:h3_index": 644747654733703281, "STATEFP": 6, "PLACEFP": 60706, "PLACENS": 2409168, "GEOID": 660706, "NAME": "Ridgemark", "NAMELSAD": "Ridgemark CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6656246, "AWATER": 0, "INTPTLAT": 36.8082406, "INTPTLON": -121.3622802, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -121.360474, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 465, "felt:has_geometry": true, "felt:h3_index": 644747657149768426, "STATEFP": 6, "PLACEFP": 46828, "PLACENS": 2411078, "GEOID": 646828, "NAME": "Mendota", "NAMELSAD": "Mendota city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8788278, "AWATER": 8333, "INTPTLAT": 36.7575951, "INTPTLON": -120.3804737, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -120.382690, 36.756490 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 458, "felt:has_geometry": true, "felt:h3_index": 644747660894821784, "STATEFP": 6, "PLACEFP": 24134, "PLACENS": 2410507, "GEOID": 624134, "NAME": "Firebaugh", "NAMELSAD": "Firebaugh city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9109030, "AWATER": 143103, "INTPTLAT": 36.8537446, "INTPTLON": -120.4537457, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -120.454102, 36.853252 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1483, "felt:has_geometry": true, "felt:h3_index": 644747662055020099, "STATEFP": 6, "PLACEFP": 78652, "PLACENS": 2583162, "GEOID": 678652, "NAME": "Three Rocks", "NAMELSAD": "Three Rocks CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1941449, "AWATER": 0, "INTPTLAT": 36.5051483, "INTPTLON": -120.3935343, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -120.393677, 36.505221 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1494, "felt:has_geometry": true, "felt:h3_index": 644747663648924314, "STATEFP": 6, "PLACEFP": 80266, "PLACENS": 2409347, "GEOID": 680266, "NAME": "Tranquillity", "NAMELSAD": "Tranquillity CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1599152, "AWATER": 0, "INTPTLAT": 36.6480071, "INTPTLON": -120.2525415, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -120.250854, 36.646385 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 220, "felt:has_geometry": true, "felt:h3_index": 644747664457569548, "STATEFP": 6, "PLACEFP": 67126, "PLACENS": 2411789, "GEOID": 667126, "NAME": "San Joaquin", "NAMELSAD": "San Joaquin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3101203, "AWATER": 0, "INTPTLAT": 36.6055688, "INTPTLON": -120.1899215, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -120.190430, 36.606709 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 198, "felt:has_geometry": true, "felt:h3_index": 644747665924608198, "STATEFP": 6, "PLACEFP": 44028, "PLACENS": 2410878, "GEOID": 644028, "NAME": "Los Banos", "NAMELSAD": "Los Banos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25891767, "AWATER": 320639, "INTPTLAT": 37.0631841, "INTPTLON": -120.8403045, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -120.838623, 37.063944 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1534, "felt:has_geometry": true, "felt:h3_index": 644747666886413670, "STATEFP": 6, "PLACEFP": 83108, "PLACENS": 2583179, "GEOID": 683108, "NAME": "Volta", "NAMELSAD": "Volta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11318388, "AWATER": 165270, "INTPTLAT": 37.0823527, "INTPTLON": -120.9144798, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -120.915527, 37.081476 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1377, "felt:has_geometry": true, "felt:h3_index": 644747667509871857, "STATEFP": 6, "PLACEFP": 70028, "PLACENS": 2583129, "GEOID": 670028, "NAME": "Santa Nella", "NAMELSAD": "Santa Nella CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12128897, "AWATER": 0, "INTPTLAT": 37.1012188, "INTPTLON": -121.0156971, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -121.014404, 37.103384 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 810, "felt:has_geometry": true, "felt:h3_index": 644747668223271726, "STATEFP": 6, "PLACEFP": 22286, "PLACENS": 2583007, "GEOID": 622286, "NAME": "El Nido", "NAMELSAD": "El Nido CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8525668, "AWATER": 0, "INTPTLAT": 37.1323764, "INTPTLON": -120.4985513, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 37.134045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 754, "felt:has_geometry": true, "felt:h3_index": 644747668483560090, "STATEFP": 6, "PLACEFP": 19654, "PLACENS": 2582998, "GEOID": 619654, "NAME": "Dos Palos Y", "NAMELSAD": "Dos Palos Y CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4054329, "AWATER": 0, "INTPTLAT": 37.0468402, "INTPTLON": -120.6394732, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -120.640869, 37.046409 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 86, "felt:has_geometry": true, "felt:h3_index": 644747672347326621, "STATEFP": 6, "PLACEFP": 19612, "PLACENS": 2410348, "GEOID": 619612, "NAME": "Dos Palos", "NAMELSAD": "Dos Palos city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 3494393, "AWATER": 0, "INTPTLAT": 36.9854237, "INTPTLON": -120.6338446, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -120.635376, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1422, "felt:has_geometry": true, "felt:h3_index": 644747672872620166, "STATEFP": 6, "PLACEFP": 72954, "PLACENS": 2408762, "GEOID": 672954, "NAME": "South Dos Palos", "NAMELSAD": "South Dos Palos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3984072, "AWATER": 0, "INTPTLAT": 36.9707011, "INTPTLON": -120.6467311, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -120.646362, 36.971838 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 356, "felt:has_geometry": true, "felt:h3_index": 644747675028637091, "STATEFP": 6, "PLACEFP": 38520, "PLACENS": 2411544, "GEOID": 638520, "NAME": "King City", "NAMELSAD": "King City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9833874, "AWATER": 342510, "INTPTLAT": 36.2162833, "INTPTLON": -121.1319616, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -121.129761, 36.217687 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 293, "felt:has_geometry": true, "felt:h3_index": 644747675861780150, "STATEFP": 6, "PLACEFP": 30994, "PLACENS": 2410657, "GEOID": 630994, "NAME": "Greenfield", "NAMELSAD": "Greenfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7548415, "AWATER": 98210, "INTPTLAT": 36.3245614, "INTPTLON": -121.2426579, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -121.245117, 36.323977 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1370, "felt:has_geometry": true, "felt:h3_index": 644747679034789924, "STATEFP": 6, "PLACEFP": 68140, "PLACENS": 2409261, "GEOID": 668140, "NAME": "San Lucas", "NAMELSAD": "San Lucas CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1020818, "AWATER": 0, "INTPTLAT": 36.1283492, "INTPTLON": -121.0217318, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -121.019897, 36.129002 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1271, "felt:has_geometry": true, "felt:h3_index": 644747679985378393, "STATEFP": 6, "PLACEFP": 57070, "PLACENS": 2583113, "GEOID": 657070, "NAME": "Pine Canyon", "NAMELSAD": "Pine Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8639261, "AWATER": 2301, "INTPTLAT": 36.1720725, "INTPTLON": -121.1430132, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -121.140747, 36.173357 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 292, "felt:has_geometry": true, "felt:h3_index": 644747682967826784, "STATEFP": 6, "PLACEFP": 30392, "PLACENS": 2410617, "GEOID": 630392, "NAME": "Gonzales", "NAMELSAD": "Gonzales city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4955568, "AWATER": 98218, "INTPTLAT": 36.505979, "INTPTLON": -121.442918, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 36.505221 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1430, "felt:has_geometry": true, "felt:h3_index": 644747684091471524, "STATEFP": 6, "PLACEFP": 73612, "PLACENS": 2408789, "GEOID": 673612, "NAME": "Spreckels", "NAMELSAD": "Spreckels CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 316377, "AWATER": 0, "INTPTLAT": 36.6247156, "INTPTLON": -121.646487, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -121.646118, 36.624345 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 673, "felt:has_geometry": true, "felt:h3_index": 644747684305611873, "STATEFP": 6, "PLACEFP": 13364, "PLACENS": 2407612, "GEOID": 613364, "NAME": "Chualar", "NAMELSAD": "Chualar CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1621710, "AWATER": 0, "INTPTLAT": 36.5711128, "INTPTLON": -121.5102955, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -121.508789, 36.571424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 311, "felt:has_geometry": true, "felt:h3_index": 644747689997471765, "STATEFP": 6, "PLACEFP": 72520, "PLACENS": 2411924, "GEOID": 672520, "NAME": "Soledad", "NAMELSAD": "Soledad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 11551909, "AWATER": 492321, "INTPTLAT": 36.4345222, "INTPTLON": -121.31775879999999, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -121.316528, 36.434542 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 948, "felt:has_geometry": true, "felt:h3_index": 644747731397256489, "STATEFP": 6, "PLACEFP": 36350, "PLACENS": 2408418, "GEOID": 636350, "NAME": "Independence", "NAMELSAD": "Independence CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12590232, "AWATER": 7190, "INTPTLAT": 36.8303101, "INTPTLON": -118.207855, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -118.207397, 36.831272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 563, "felt:has_geometry": true, "felt:h3_index": 644747734461914507, "STATEFP": 6, "PLACEFP": 6616, "PLACENS": 2407843, "GEOID": 606616, "NAME": "Big Pine", "NAMELSAD": "Big Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7636605, "AWATER": 4831, "INTPTLAT": 37.1655071, "INTPTLON": -118.2962618, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -118.295288, 37.164694 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 337, "felt:has_geometry": true, "felt:h3_index": 644747737800824493, "STATEFP": 6, "PLACEFP": 6798, "PLACENS": 2409852, "GEOID": 606798, "NAME": "Bishop", "NAMELSAD": "Bishop city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4827233, "AWATER": 122068, "INTPTLAT": 37.3663813, "INTPTLON": -118.3958082, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -118.394165, 37.365791 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1570, "felt:has_geometry": true, "felt:h3_index": 644747738387940234, "STATEFP": 6, "PLACEFP": 85551, "PLACENS": 2409595, "GEOID": 685551, "NAME": "Wilkerson", "NAMELSAD": "Wilkerson CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14833037, "AWATER": 1906, "INTPTLAT": 37.2773387, "INTPTLON": -118.3915877, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -118.394165, 37.278424 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1611, "felt:has_geometry": true, "felt:h3_index": 644747744295196939, "STATEFP": 6, "PLACEFP": 78638, "PLACENS": 2409316, "GEOID": 678638, "NAME": "Three Rivers", "NAMELSAD": "Three Rivers CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 80245468, "AWATER": 268932, "INTPTLAT": 36.440041, "INTPTLON": -118.8802803, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -118.877563, 36.438961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1407, "felt:has_geometry": true, "felt:h3_index": 644747747066560809, "STATEFP": 6, "PLACEFP": 71932, "PLACENS": 2585449, "GEOID": 671932, "NAME": "Silver City", "NAMELSAD": "Silver City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 302352, "AWATER": 0, "INTPTLAT": 36.4663058, "INTPTLON": -118.6495083, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -118.646851, 36.465472 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1389, "felt:has_geometry": true, "felt:h3_index": 644747747354917429, "STATEFP": 6, "PLACEFP": 70966, "PLACENS": 2585447, "GEOID": 670966, "NAME": "Sequoia Crest", "NAMELSAD": "Sequoia Crest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2646709, "AWATER": 0, "INTPTLAT": 36.1858823, "INTPTLON": -118.6256351, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -118.624878, 36.186659 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 626, "felt:has_geometry": true, "felt:h3_index": 644747748116088140, "STATEFP": 6, "PLACEFP": 10494, "PLACENS": 2585405, "GEOID": 610494, "NAME": "Camp Nelson", "NAMELSAD": "Camp Nelson CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3207672, "AWATER": 0, "INTPTLAT": 36.1419783, "INTPTLON": -118.61071, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -118.608398, 36.142311 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1269, "felt:has_geometry": true, "felt:h3_index": 644747748139715090, "STATEFP": 6, "PLACEFP": 57011, "PLACENS": 2585437, "GEOID": 657011, "NAME": "Pierpoint", "NAMELSAD": "Pierpoint CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1056404, "AWATER": 0, "INTPTLAT": 36.1404676, "INTPTLON": -118.6296151, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -118.630371, 36.142311 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 656, "felt:has_geometry": true, "felt:h3_index": 644747748155403045, "STATEFP": 6, "PLACEFP": 12314, "PLACENS": 2585406, "GEOID": 612314, "NAME": "Cedar Slope", "NAMELSAD": "Cedar Slope CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 746300, "AWATER": 0, "INTPTLAT": 36.1454644, "INTPTLON": -118.5788808, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -118.580933, 36.146747 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 915, "felt:has_geometry": true, "felt:h3_index": 644747751962263715, "STATEFP": 6, "PLACEFP": 32324, "PLACENS": 2585423, "GEOID": 632324, "NAME": "Hartland", "NAMELSAD": "Hartland CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 599099, "AWATER": 0, "INTPTLAT": 36.6538667, "INTPTLON": -118.9588124, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 36.655200 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1435, "felt:has_geometry": true, "felt:h3_index": 644747752687112604, "STATEFP": 6, "PLACEFP": 73794, "PLACENS": 2408799, "GEOID": 673794, "NAME": "Squaw Valley", "NAMELSAD": "Squaw Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 164758384, "AWATER": 142813, "INTPTLAT": 36.719141, "INTPTLON": -119.2026773, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 36.721274 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1574, "felt:has_geometry": true, "felt:h3_index": 644747755709400800, "STATEFP": 6, "PLACEFP": 85866, "PLACENS": 2585464, "GEOID": 685866, "NAME": "Wilsonia", "NAMELSAD": "Wilsonia CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 705824, "AWATER": 0, "INTPTLAT": 36.734598, "INTPTLON": -118.9558466, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -118.954468, 36.734482 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1391, "felt:has_geometry": true, "felt:h3_index": 644747757604606379, "STATEFP": 6, "PLACEFP": 71078, "PLACENS": 2585448, "GEOID": 671078, "NAME": "Seville", "NAMELSAD": "Seville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 712368, "AWATER": 0, "INTPTLAT": 36.4835333, "INTPTLON": -119.2258679, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -119.223633, 36.483141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 775, "felt:has_geometry": true, "felt:h3_index": 644747757646210161, "STATEFP": 6, "PLACEFP": 20942, "PLACENS": 2408715, "GEOID": 620942, "NAME": "East Orosi", "NAMELSAD": "East Orosi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 642248, "AWATER": 0, "INTPTLAT": 36.5480688, "INTPTLON": -119.2598526, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -119.262085, 36.549362 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 719, "felt:has_geometry": true, "felt:h3_index": 644747757734872203, "STATEFP": 6, "PLACEFP": 17708, "PLACENS": 2408636, "GEOID": 617708, "NAME": "Cutler", "NAMELSAD": "Cutler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3168966, "AWATER": 0, "INTPTLAT": 36.5246643, "INTPTLON": -119.2888288, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -119.289551, 36.522881 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1073, "felt:has_geometry": true, "felt:h3_index": 644747764256103088, "STATEFP": 6, "PLACEFP": 42580, "PLACENS": 2408123, "GEOID": 642580, "NAME": "Lone Pine", "NAMELSAD": "Lone Pine CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 49299705, "AWATER": 468049, "INTPTLAT": 36.5744471, "INTPTLON": -118.0806101, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -118.081055, 36.575835 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 639, "felt:has_geometry": true, "felt:h3_index": 644747764802586790, "STATEFP": 6, "PLACEFP": 11600, "PLACENS": 2407973, "GEOID": 611600, "NAME": "Cartago", "NAMELSAD": "Cartago CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3028826, "AWATER": 7192, "INTPTLAT": 36.3052395, "INTPTLON": -118.0271663, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -118.026123, 36.306272 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 684, "felt:has_geometry": true, "felt:h3_index": 644747777473030838, "STATEFP": 6, "PLACEFP": 14288, "PLACENS": 2628719, "GEOID": 614288, "NAME": "Coarsegold", "NAMELSAD": "Coarsegold CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44620400, "AWATER": 172119, "INTPTLAT": 37.2391838, "INTPTLON": -119.7009723, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -119.701538, 37.239075 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1590, "felt:has_geometry": true, "felt:h3_index": 644747778000791921, "STATEFP": 6, "PLACEFP": 86878, "PLACENS": 2409637, "GEOID": 686878, "NAME": "Yosemite Lakes", "NAMELSAD": "Yosemite Lakes CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54136050, "AWATER": 250537, "INTPTLAT": 37.1853582, "INTPTLON": -119.7721217, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -119.772949, 37.186579 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 536, "felt:has_geometry": true, "felt:h3_index": 644747779608432652, "STATEFP": 6, "PLACEFP": 4198, "PLACENS": 2628709, "GEOID": 604198, "NAME": "Bass Lake", "NAMELSAD": "Bass Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4874800, "AWATER": 1570518, "INTPTLAT": 37.3272815, "INTPTLON": -119.565326, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -119.564209, 37.326489 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1211, "felt:has_geometry": true, "felt:h3_index": 644747780242946254, "STATEFP": 6, "PLACEFP": 52764, "PLACENS": 2408967, "GEOID": 652764, "NAME": "Oakhurst", "NAMELSAD": "Oakhurst CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 86634988, "AWATER": 19415, "INTPTLAT": 37.3413962, "INTPTLON": -119.6262147, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -119.624634, 37.339592 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1192, "felt:has_geometry": true, "felt:h3_index": 644747780594680515, "STATEFP": 6, "PLACEFP": 51470, "PLACENS": 2628765, "GEOID": 651470, "NAME": "Nipinnawasee", "NAMELSAD": "Nipinnawasee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7990118, "AWATER": 0, "INTPTLAT": 37.4030526, "INTPTLON": -119.729269, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -119.729004, 37.405074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 489, "felt:has_geometry": true, "felt:h3_index": 644747781168871065, "STATEFP": 6, "PLACEFP": 478, "PLACENS": 2628702, "GEOID": 600478, "NAME": "Ahwahnee", "NAMELSAD": "Ahwahnee CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29896182, "AWATER": 0, "INTPTLAT": 37.3654228, "INTPTLON": -119.7165606, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 37.365791 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1200, "felt:has_geometry": true, "felt:h3_index": 644747784219067529, "STATEFP": 6, "PLACEFP": 51868, "PLACENS": 2804436, "GEOID": 651868, "NAME": "North Fork", "NAMELSAD": "North Fork CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83490248, "AWATER": 112922, "INTPTLAT": 37.2346317, "INTPTLON": -119.5210379, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -119.520264, 37.234702 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 543, "felt:has_geometry": true, "felt:h3_index": 644747786170317588, "STATEFP": 6, "PLACEFP": 4730, "PLACENS": 2582941, "GEOID": 604730, "NAME": "Bear Valley", "NAMELSAD": "Bear Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6318984, "AWATER": 3006, "INTPTLAT": 37.5747403, "INTPTLON": -120.1360978, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -120.135498, 37.575059 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1175, "felt:has_geometry": true, "felt:h3_index": 644747786771082475, "STATEFP": 6, "PLACEFP": 49726, "PLACENS": 2812657, "GEOID": 649726, "NAME": "Mt. Bullion", "NAMELSAD": "Mt. Bullion CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1580000, "AWATER": 1730, "INTPTLAT": 37.5086185, "INTPTLON": -120.0420805, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -120.042114, 37.509726 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1135, "felt:has_geometry": true, "felt:h3_index": 644747788719416102, "STATEFP": 6, "PLACEFP": 47374, "PLACENS": 2583080, "GEOID": 647374, "NAME": "Midpines", "NAMELSAD": "Midpines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11289069, "AWATER": 8983, "INTPTLAT": 37.5534113, "INTPTLON": -119.928791, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -119.926758, 37.553288 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 893, "felt:has_geometry": true, "felt:h3_index": 644747789362004803, "STATEFP": 6, "PLACEFP": 30900, "PLACENS": 2583028, "GEOID": 630900, "NAME": "Greeley Hill", "NAMELSAD": "Greeley Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61850758, "AWATER": 119779, "INTPTLAT": 37.7570432, "INTPTLON": -120.1307588, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -120.130005, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 651, "felt:has_geometry": true, "felt:h3_index": 644747790500096218, "STATEFP": 6, "PLACEFP": 12062, "PLACENS": 2582968, "GEOID": 612062, "NAME": "Catheys Valley", "NAMELSAD": "Catheys Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 61148098, "AWATER": 148425, "INTPTLAT": 37.4277063, "INTPTLON": -120.0960378, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -120.097046, 37.426888 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 940, "felt:has_geometry": true, "felt:h3_index": 644747791803659437, "STATEFP": 6, "PLACEFP": 34708, "PLACENS": 2628740, "GEOID": 634708, "NAME": "Hornitos", "NAMELSAD": "Hornitos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2989557, "AWATER": 0, "INTPTLAT": 37.5025245, "INTPTLON": -120.238859, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -120.239868, 37.501010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 583, "felt:has_geometry": true, "felt:h3_index": 644747792508084312, "STATEFP": 6, "PLACEFP": 7525, "PLACENS": 2407885, "GEOID": 607525, "NAME": "Bootjack", "NAMELSAD": "Bootjack CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9924991, "AWATER": 80795, "INTPTLAT": 37.4740444, "INTPTLON": -119.8837998, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -119.882812, 37.474858 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1111, "felt:has_geometry": true, "felt:h3_index": 644747792618013426, "STATEFP": 6, "PLACEFP": 45932, "PLACENS": 2408181, "GEOID": 645932, "NAME": "Mariposa", "NAMELSAD": "Mariposa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10455849, "AWATER": 8859, "INTPTLAT": 37.4912172, "INTPTLON": -119.973216, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -119.970703, 37.492294 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 561, "felt:has_geometry": true, "felt:h3_index": 644747799558897750, "STATEFP": 6, "PLACEFP": 6518, "PLACENS": 2628711, "GEOID": 606518, "NAME": "Big Creek", "NAMELSAD": "Big Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1191495, "AWATER": 0, "INTPTLAT": 37.2035645, "INTPTLON": -119.2484886, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -119.251099, 37.204082 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 845, "felt:has_geometry": true, "felt:h3_index": 644747804294008897, "STATEFP": 6, "PLACEFP": 24792, "PLACENS": 2830231, "GEOID": 624792, "NAME": "Foresta", "NAMELSAD": "Foresta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 958026, "AWATER": 0, "INTPTLAT": 37.6987793, "INTPTLON": -119.7482741, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -119.750977, 37.696861 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 811, "felt:has_geometry": true, "felt:h3_index": 644747804769739932, "STATEFP": 6, "PLACEFP": 22328, "PLACENS": 2583008, "GEOID": 622328, "NAME": "El Portal", "NAMELSAD": "El Portal CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4827205, "AWATER": 118590, "INTPTLAT": 37.6732408, "INTPTLON": -119.7877157, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -119.789429, 37.675125 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1591, "felt:has_geometry": true, "felt:h3_index": 644747807012362256, "STATEFP": 6, "PLACEFP": 86912, "PLACENS": 2409638, "GEOID": 686912, "NAME": "Yosemite Valley", "NAMELSAD": "Yosemite Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5330276, "AWATER": 158738, "INTPTLAT": 37.7425227, "INTPTLON": -119.577626, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -119.575195, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1545, "felt:has_geometry": true, "felt:h3_index": 644747807589428272, "STATEFP": 6, "PLACEFP": 83766, "PLACENS": 2583183, "GEOID": 683766, "NAME": "Wawona", "NAMELSAD": "Wawona CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2786953, "AWATER": 0, "INTPTLAT": 37.5446736, "INTPTLON": -119.6386738, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -119.641113, 37.544577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 837, "felt:has_geometry": true, "felt:h3_index": 644747808119313114, "STATEFP": 6, "PLACEFP": 24218, "PLACENS": 2583013, "GEOID": 624218, "NAME": "Fish Camp", "NAMELSAD": "Fish Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1036205, "AWATER": 5626, "INTPTLAT": 37.4799003, "INTPTLON": -119.6409112, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -119.641113, 37.479217 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1592, "felt:has_geometry": true, "felt:h3_index": 644747808967637762, "STATEFP": 6, "PLACEFP": 86916, "PLACENS": 2813254, "GEOID": 686916, "NAME": "Yosemite West", "NAMELSAD": "Yosemite West CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 708714, "AWATER": 0, "INTPTLAT": 37.6481932, "INTPTLON": -119.7182169, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 37.649034 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1224, "felt:has_geometry": true, "felt:h3_index": 644747812644395803, "STATEFP": 6, "PLACEFP": 53505, "PLACENS": 2583103, "GEOID": 653505, "NAME": "Old Fig Garden", "NAMELSAD": "Old Fig Garden CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4317800, "AWATER": 0, "INTPTLAT": 36.7988446, "INTPTLON": -119.8051281, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -119.805908, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1250, "felt:has_geometry": true, "felt:h3_index": 644747812842957570, "STATEFP": 6, "PLACEFP": 55842, "PLACENS": 2409036, "GEOID": 655842, "NAME": "Parkwood", "NAMELSAD": "Parkwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1804074, "AWATER": 0, "INTPTLAT": 36.929270699999999, "INTPTLON": -120.04819, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -120.047607, 36.927939 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 158, "felt:has_geometry": true, "felt:h3_index": 644747812986863784, "STATEFP": 6, "PLACEFP": 45022, "PLACENS": 2410906, "GEOID": 645022, "NAME": "Madera", "NAMELSAD": "Madera city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 42967631, "AWATER": 0, "INTPTLAT": 36.9631786, "INTPTLON": -120.0779135, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 36.963060 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1248, "felt:has_geometry": true, "felt:h3_index": 644747813093457032, "STATEFP": 6, "PLACEFP": 55751, "PLACENS": 2409034, "GEOID": 655751, "NAME": "Parksdale", "NAMELSAD": "Parksdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4500371, "AWATER": 0, "INTPTLAT": 36.9464877, "INTPTLON": -120.0211776, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -120.020142, 36.945502 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1039, "felt:has_geometry": true, "felt:h3_index": 644747813586403651, "STATEFP": 6, "PLACEFP": 40872, "PLACENS": 2628749, "GEOID": 640872, "NAME": "La Vina", "NAMELSAD": "La Vina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 260865, "AWATER": 0, "INTPTLAT": 36.8798651, "INTPTLON": -120.1148024, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 36.879621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 863, "felt:has_geometry": true, "felt:h3_index": 644747814374030657, "STATEFP": 6, "PLACEFP": 27014, "PLACENS": 2408265, "GEOID": 627014, "NAME": "Friant", "NAMELSAD": "Friant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3239537, "AWATER": 130737, "INTPTLAT": 36.9840123, "INTPTLON": -119.7080595, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -119.707031, 36.985003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1138, "felt:has_geometry": true, "felt:h3_index": 644747814384034897, "STATEFP": 6, "PLACEFP": 47592, "PLACENS": 2805244, "GEOID": 647592, "NAME": "Millerton", "NAMELSAD": "Millerton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5077394, "AWATER": 0, "INTPTLAT": 36.9769263, "INTPTLON": -119.6657745, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -119.663086, 36.976227 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 854, "felt:has_geometry": true, "felt:h3_index": 644747814434449683, "STATEFP": 6, "PLACEFP": 25300, "PLACENS": 2583015, "GEOID": 625300, "NAME": "Fort Washington", "NAMELSAD": "Fort Washington CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 321161, "AWATER": 0, "INTPTLAT": 36.8792978, "INTPTLON": -119.761256, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -119.761963, 36.879621 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1340, "felt:has_geometry": true, "felt:h3_index": 644747814620665040, "STATEFP": 6, "PLACEFP": 62625, "PLACENS": 2628784, "GEOID": 662625, "NAME": "Rolling Hills", "NAMELSAD": "Rolling Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1555414, "AWATER": 0, "INTPTLAT": 36.903962, "INTPTLON": -119.7966238, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.905980 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 578, "felt:has_geometry": true, "felt:h3_index": 644747815029937379, "STATEFP": 6, "PLACEFP": 7378, "PLACENS": 2805049, "GEOID": 607378, "NAME": "Bonadelle Ranchos", "NAMELSAD": "Bonadelle Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 23343618, "AWATER": 0, "INTPTLAT": 36.9688065, "INTPTLON": -119.8927786, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -119.893799, 36.967449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1100, "felt:has_geometry": true, "felt:h3_index": 644747815604085862, "STATEFP": 6, "PLACEFP": 45054, "PLACENS": 2805050, "GEOID": 645054, "NAME": "Madera Ranchos", "NAMELSAD": "Madera Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6747243, "AWATER": 0, "INTPTLAT": 36.92791, "INTPTLON": -119.8772833, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -119.877319, 36.927939 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1559, "felt:has_geometry": true, "felt:h3_index": 644747816066885171, "STATEFP": 6, "PLACEFP": 84680, "PLACENS": 2628799, "GEOID": 684680, "NAME": "West Park", "NAMELSAD": "West Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4640398, "AWATER": 0, "INTPTLAT": 36.7055261, "INTPTLON": -119.8515482, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -119.849854, 36.703660 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1309, "felt:has_geometry": true, "felt:h3_index": 644747816642026160, "STATEFP": 6, "PLACEFP": 59290, "PLACENS": 2409124, "GEOID": 659290, "NAME": "Raisin City", "NAMELSAD": "Raisin City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1967173, "AWATER": 0, "INTPTLAT": 36.6032623, "INTPTLON": -119.9091581, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -119.910278, 36.602299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 336, "felt:has_geometry": true, "felt:h3_index": 644747817176709852, "STATEFP": 6, "PLACEFP": 38226, "PLACENS": 2411536, "GEOID": 638226, "NAME": "Kerman", "NAMELSAD": "Kerman city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 8697690, "AWATER": 0, "INTPTLAT": 36.7250406, "INTPTLON": -120.0624734, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -120.064087, 36.725677 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 565, "felt:has_geometry": true, "felt:h3_index": 644747817615988385, "STATEFP": 6, "PLACEFP": 6728, "PLACENS": 2407849, "GEOID": 606728, "NAME": "Biola", "NAMELSAD": "Biola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1675805, "AWATER": 0, "INTPTLAT": 36.7999379, "INTPTLON": -120.0210376, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -120.020142, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1470, "felt:has_geometry": true, "felt:h3_index": 644747818230253200, "STATEFP": 6, "PLACEFP": 77960, "PLACENS": 2583159, "GEOID": 677960, "NAME": "Tarpey Village", "NAMELSAD": "Tarpey Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2043494, "AWATER": 0, "INTPTLAT": 36.7940453, "INTPTLON": -119.7011976, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -119.701538, 36.796090 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 380, "felt:has_geometry": true, "felt:h3_index": 644747818578917681, "STATEFP": 6, "PLACEFP": 14218, "PLACENS": 2409488, "GEOID": 614218, "NAME": "Clovis", "NAMELSAD": "Clovis city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 66957051, "AWATER": 309836, "INTPTLAT": 36.8289665, "INTPTLON": -119.6849217, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -119.685059, 36.826875 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 618, "felt:has_geometry": true, "felt:h3_index": 644747818737613745, "STATEFP": 6, "PLACEFP": 10032, "PLACENS": 2582958, "GEOID": 610032, "NAME": "Calwa", "NAMELSAD": "Calwa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1470052, "AWATER": 29829, "INTPTLAT": 36.7134766, "INTPTLON": -119.7608602, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -119.761963, 36.712467 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1454, "felt:has_geometry": true, "felt:h3_index": 644747818749805856, "STATEFP": 6, "PLACEFP": 75994, "PLACENS": 2583154, "GEOID": 675994, "NAME": "Sunnyside", "NAMELSAD": "Sunnyside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4954935, "AWATER": 0, "INTPTLAT": 36.7294192, "INTPTLON": -119.6945052, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -119.696045, 36.730080 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1104, "felt:has_geometry": true, "felt:h3_index": 644747818788599445, "STATEFP": 6, "PLACEFP": 45232, "PLACENS": 2408163, "GEOID": 645232, "NAME": "Malaga", "NAMELSAD": "Malaga CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 709465, "AWATER": 0, "INTPTLAT": 36.681602, "INTPTLON": -119.7317857, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -119.734497, 36.681636 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1117, "felt:has_geometry": true, "felt:h3_index": 644747818879343533, "STATEFP": 6, "PLACEFP": 46400, "PLACENS": 2583075, "GEOID": 646400, "NAME": "Mayfair", "NAMELSAD": "Mayfair CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1342684, "AWATER": 0, "INTPTLAT": 36.7693457, "INTPTLON": -119.7612619, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -119.761963, 36.769692 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 381, "felt:has_geometry": true, "felt:h3_index": 644747818899249181, "STATEFP": 6, "PLACEFP": 27000, "PLACENS": 2410546, "GEOID": 627000, "NAME": "Fresno", "NAMELSAD": "Fresno city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 299967554, "AWATER": 3127480, "INTPTLAT": 36.7826843, "INTPTLON": -119.7933595, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -119.794922, 36.782892 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 199, "felt:has_geometry": true, "felt:h3_index": 644747820390188740, "STATEFP": 6, "PLACEFP": 13294, "PLACENS": 2409459, "GEOID": 613294, "NAME": "Chowchilla", "NAMELSAD": "Chowchilla city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28713589, "AWATER": 119504, "INTPTLAT": 37.1161043, "INTPTLON": -120.2419783, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -120.239868, 37.116526 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 825, "felt:has_geometry": true, "felt:h3_index": 644747821194675803, "STATEFP": 6, "PLACEFP": 23210, "PLACENS": 2583011, "GEOID": 623210, "NAME": "Fairmead", "NAMELSAD": "Fairmead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20018088, "AWATER": 0, "INTPTLAT": 37.0774661, "INTPTLON": -120.1936593, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -120.195923, 37.077093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1044, "felt:has_geometry": true, "felt:h3_index": 644747824191334660, "STATEFP": 6, "PLACEFP": 41040, "PLACENS": 2408590, "GEOID": 641040, "NAME": "Le Grand", "NAMELSAD": "Le Grand CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2953204, "AWATER": 0, "INTPTLAT": 37.2288146, "INTPTLON": -120.2540024, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -120.256348, 37.230328 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1283, "felt:has_geometry": true, "felt:h3_index": 644747824221921803, "STATEFP": 6, "PLACEFP": 57582, "PLACENS": 2409081, "GEOID": 657582, "NAME": "Planada", "NAMELSAD": "Planada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4511785, "AWATER": 0, "INTPTLAT": 37.2902022, "INTPTLON": -120.3216317, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -120.322266, 37.291535 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1099, "felt:has_geometry": true, "felt:h3_index": 644747827306739501, "STATEFP": 6, "PLACEFP": 45050, "PLACENS": 2408158, "GEOID": 645050, "NAME": "Madera Acres", "NAMELSAD": "Madera Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 18560291, "AWATER": 0, "INTPTLAT": 37.0126384, "INTPTLON": -120.0797304, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -120.080566, 37.011326 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1394, "felt:has_geometry": true, "felt:h3_index": 644747832495626590, "STATEFP": 6, "PLACEFP": 71246, "PLACENS": 2408722, "GEOID": 671246, "NAME": "Shaver Lake", "NAMELSAD": "Shaver Lake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 83623481, "AWATER": 5897217, "INTPTLAT": 37.0991842, "INTPTLON": -119.3256772, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -119.328003, 37.099003 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 525, "felt:has_geometry": true, "felt:h3_index": 644747832813524064, "STATEFP": 6, "PLACEFP": 3190, "PLACENS": 2407779, "GEOID": 603190, "NAME": "Auberry", "NAMELSAD": "Auberry CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 120251753, "AWATER": 1032543, "INTPTLAT": 37.0886542, "INTPTLON": -119.4507568, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -119.448853, 37.090240 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1185, "felt:has_geometry": true, "felt:h3_index": 644747846698677542, "STATEFP": 6, "PLACEFP": 51028, "PLACENS": 2583090, "GEOID": 651028, "NAME": "New Cuyama", "NAMELSAD": "New Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1637550, "AWATER": 0, "INTPTLAT": 34.9430572, "INTPTLON": -119.6820182, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -119.679565, 34.944488 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 831, "felt:has_geometry": true, "felt:h3_index": 644747848426205812, "STATEFP": 6, "PLACEFP": 23812, "PLACENS": 2408207, "GEOID": 623812, "NAME": "Fellows", "NAMELSAD": "Fellows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1801266, "AWATER": 0, "INTPTLAT": 35.1779287, "INTPTLON": -119.5472109, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -119.547729, 35.178298 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 367, "felt:has_geometry": true, "felt:h3_index": 644747848510120284, "STATEFP": 6, "PLACEFP": 77574, "PLACENS": 2412026, "GEOID": 677574, "NAME": "Taft", "NAMELSAD": "Taft city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 39552120, "AWATER": 0, "INTPTLAT": 35.126696, "INTPTLON": -119.4241938, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -119.426880, 35.128894 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 844, "felt:has_geometry": true, "felt:h3_index": 644747848642569509, "STATEFP": 6, "PLACEFP": 24764, "PLACENS": 2408226, "GEOID": 624764, "NAME": "Ford City", "NAMELSAD": "Ford City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3974713, "AWATER": 0, "INTPTLAT": 35.1647352, "INTPTLON": -119.4584001, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -119.459839, 35.164828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1461, "felt:has_geometry": true, "felt:h3_index": 644747848720660534, "STATEFP": 6, "PLACEFP": 77588, "PLACENS": 2410047, "GEOID": 677588, "NAMELSAD": "Taft Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 766308, "AWATER": 0, "INTPTLAT": 35.1337502, "INTPTLON": -119.4711401, "NAME": "Taft Heights,South Taft", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -119.470825, 35.133387 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 307, "felt:has_geometry": true, "felt:h3_index": 644747849145864875, "STATEFP": 6, "PLACEFP": 45736, "PLACENS": 2411033, "GEOID": 645736, "NAME": "Maricopa", "NAMELSAD": "Maricopa city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4054515, "AWATER": 0, "INTPTLAT": 35.050942, "INTPTLON": -119.406605, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -119.404907, 35.052484 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 736, "felt:has_geometry": true, "felt:h3_index": 644747849762672988, "STATEFP": 6, "PLACEFP": 18926, "PLACENS": 2408660, "GEOID": 618926, "NAME": "Derby Acres", "NAMELSAD": "Derby Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9274814, "AWATER": 0, "INTPTLAT": 35.2440253, "INTPTLON": -119.603833, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -119.602661, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 721, "felt:has_geometry": true, "felt:h3_index": 644747850852946089, "STATEFP": 6, "PLACEFP": 17727, "PLACENS": 2582989, "GEOID": 617727, "NAME": "Cuyama", "NAMELSAD": "Cuyama CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1174244, "AWATER": 11429, "INTPTLAT": 34.9310567, "INTPTLON": -119.6148797, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -119.613647, 34.930979 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 762, "felt:has_geometry": true, "felt:h3_index": 644747864549918555, "STATEFP": 6, "PLACEFP": 20284, "PLACENS": 2408697, "GEOID": 620284, "NAME": "Dustin Acres", "NAMELSAD": "Dustin Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9521683, "AWATER": 0, "INTPTLAT": 35.2159286, "INTPTLON": -119.3749872, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -119.377441, 35.214210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 896, "felt:has_geometry": true, "felt:h3_index": 644747865589081875, "STATEFP": 6, "PLACEFP": 30987, "PLACENS": 2628815, "GEOID": 630987, "NAME": "Greenfield", "NAMELSAD": "Greenfield CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3433778, "AWATER": 0, "INTPTLAT": 35.269489, "INTPTLON": -119.0094914, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -119.009399, 35.268047 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1303, "felt:has_geometry": true, "felt:h3_index": 644747865612551794, "STATEFP": 6, "PLACEFP": 58940, "PLACENS": 2804427, "GEOID": 658940, "NAME": "Pumpkin Center", "NAMELSAD": "Pumpkin Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1209454, "AWATER": 0, "INTPTLAT": 35.2653012, "INTPTLON": -119.0324097, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -119.031372, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1546, "felt:has_geometry": true, "felt:h3_index": 644747865746768664, "STATEFP": 6, "PLACEFP": 83863, "PLACENS": 2409538, "GEOID": 683863, "NAME": "Weedpatch", "NAMELSAD": "Weedpatch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9212054, "AWATER": 11548, "INTPTLAT": 35.2358918, "INTPTLON": -118.9095605, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -118.910522, 35.236646 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 791, "felt:has_geometry": true, "felt:h3_index": 644747865892179356, "STATEFP": 6, "PLACEFP": 21691, "PLACENS": 2804119, "GEOID": 621691, "NAME": "El Adobe", "NAMELSAD": "El Adobe CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2594445, "AWATER": 0, "INTPTLAT": 35.2450825, "INTPTLON": -118.9588417, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.245619 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1225, "felt:has_geometry": true, "felt:h3_index": 644747867351624216, "STATEFP": 6, "PLACEFP": 53574, "PLACENS": 2804424, "GEOID": 653574, "NAME": "Old River", "NAMELSAD": "Old River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2550660, "AWATER": 0, "INTPTLAT": 35.2671232, "INTPTLON": -119.1055226, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -119.102783, 35.268047 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1024, "felt:has_geometry": true, "felt:h3_index": 644747867401926581, "STATEFP": 6, "PLACEFP": 39759, "PLACENS": 2804421, "GEOID": 639759, "NAME": "Lakeside", "NAMELSAD": "Lakeside CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4674201, "AWATER": 0, "INTPTLAT": 35.2346673, "INTPTLON": -119.0828583, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -119.080811, 35.236646 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1131, "felt:has_geometry": true, "felt:h3_index": 644747869765632337, "STATEFP": 6, "PLACEFP": 47164, "PLACENS": 2408825, "GEOID": 647164, "NAME": "Mettler", "NAMELSAD": "Mettler CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 602290, "AWATER": 0, "INTPTLAT": 35.0635633, "INTPTLON": -118.9729799, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -118.970947, 35.061477 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 608, "felt:has_geometry": true, "felt:h3_index": 644747872724656994, "STATEFP": 6, "PLACEFP": 9332, "PLACENS": 2407932, "GEOID": 609332, "NAME": "Buttonwillow", "NAMELSAD": "Buttonwillow CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 17941128, "AWATER": 0, "INTPTLAT": 35.4092286, "INTPTLON": -119.4406682, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -119.443359, 35.411438 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1132, "felt:has_geometry": true, "felt:h3_index": 644747874819988396, "STATEFP": 6, "PLACEFP": 47192, "PLACENS": 2629763, "GEOID": 647192, "NAMELSAD": "Mexican Colony CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 82312, "AWATER": 0, "INTPTLAT": 35.4689297, "INTPTLON": -119.2687123, "NAME": "Mexican Colony,Cherokee Strip,Smith Corner", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -119.267578, 35.469618 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1515, "felt:has_geometry": true, "felt:h3_index": 644747877064181579, "STATEFP": 6, "PLACEFP": 81722, "PLACENS": 2409395, "GEOID": 681722, "NAME": "Valley Acres", "NAMELSAD": "Valley Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10677289, "AWATER": 0, "INTPTLAT": 35.2086679, "INTPTLON": -119.4106505, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -119.410400, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1096, "felt:has_geometry": true, "felt:h3_index": 644747878039075036, "STATEFP": 6, "PLACEFP": 44924, "PLACENS": 2408203, "GEOID": 644924, "NAME": "McKittrick", "NAMELSAD": "McKittrick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6778294, "AWATER": 0, "INTPTLAT": 35.2980277, "INTPTLON": -119.6249215, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -119.624634, 35.299435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1439, "felt:has_geometry": true, "felt:h3_index": 644747878718695588, "STATEFP": 6, "PLACEFP": 74021, "PLACENS": 2804431, "GEOID": 674021, "NAME": "Stebbins", "NAMELSAD": "Stebbins CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2588072, "AWATER": 0, "INTPTLAT": 35.4056497, "INTPTLON": -119.3141782, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -119.311523, 35.406961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1502, "felt:has_geometry": true, "felt:h3_index": 644747878871016280, "STATEFP": 6, "PLACEFP": 80784, "PLACENS": 2409363, "GEOID": 680784, "NAME": "Tupman", "NAMELSAD": "Tupman CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1367277, "AWATER": 0, "INTPTLAT": 35.2987427, "INTPTLON": -119.3576736, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -119.355469, 35.299435 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 767, "felt:has_geometry": true, "felt:h3_index": 644747884789663564, "STATEFP": 6, "PLACEFP": 20574, "PLACENS": 2813349, "GEOID": 620574, "NAME": "Eastern Goleta Valley", "NAMELSAD": "Eastern Goleta Valley CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 42981068, "AWATER": 755520, "INTPTLAT": 34.4439133, "INTPTLON": -119.7854766, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -119.783936, 34.443159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1144, "felt:has_geometry": true, "felt:h3_index": 644747885118043265, "STATEFP": 6, "PLACEFP": 48147, "PLACENS": 2408843, "GEOID": 648147, "NAME": "Mission Canyon", "NAMELSAD": "Mission Canyon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4662212, "AWATER": 77753, "INTPTLAT": 34.4562519, "INTPTLON": -119.7169892, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -119.718018, 34.456748 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 423, "felt:has_geometry": true, "felt:h3_index": 644747885459913905, "STATEFP": 6, "PLACEFP": 30378, "PLACENS": 2015546, "GEOID": 630378, "NAME": "Goleta", "NAMELSAD": "Goleta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 20339515, "AWATER": 187022, "INTPTLAT": 34.4354411, "INTPTLON": -119.8589464, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -119.860840, 34.434098 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1511, "felt:has_geometry": true, "felt:h3_index": 644747885518328852, "STATEFP": 6, "PLACEFP": 81316, "PLACENS": 2813356, "GEOID": 681316, "NAMELSAD": "University of California-Santa Barbara CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3363537, "AWATER": 300642, "INTPTLAT": 34.4183146, "INTPTLON": -119.8509598, "NAME": "University of California-Santa Barbara,Isla Vista", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -119.849854, 34.420505 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 872, "felt:has_geometry": true, "felt:h3_index": 644747894815397417, "STATEFP": 6, "PLACEFP": 29070, "PLACENS": 2583023, "GEOID": 629070, "NAME": "Garey", "NAMELSAD": "Garey CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3275825, "AWATER": 9827, "INTPTLAT": 34.8858212, "INTPTLON": -120.3137504, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -120.311279, 34.885931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1409, "felt:has_geometry": true, "felt:h3_index": 644747894884981314, "STATEFP": 6, "PLACEFP": 72086, "PLACENS": 2583144, "GEOID": 672086, "NAME": "Sisquoc", "NAMELSAD": "Sisquoc CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5775123, "AWATER": 10614, "INTPTLAT": 34.8618175, "INTPTLON": -120.2943946, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -120.294800, 34.863398 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1275, "felt:has_geometry": true, "felt:h3_index": 644747899956521396, "STATEFP": 6, "PLACEFP": 57240, "PLACENS": 2409069, "GEOID": 657240, "NAME": "Pine Mountain Club", "NAMELSAD": "Pine Mountain Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 43647394, "AWATER": 16918, "INTPTLAT": 34.8408949, "INTPTLON": -119.1685406, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -119.168701, 34.840859 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 652, "felt:has_geometry": true, "felt:h3_index": 644747915418359645, "STATEFP": 6, "PLACEFP": 12132, "PLACENS": 2407994, "GEOID": 612132, "NAME": "Cayucos", "NAMELSAD": "Cayucos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8028952, "AWATER": 2418782, "INTPTLAT": 35.4395808, "INTPTLON": -120.8898281, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -120.888062, 35.438296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 621, "felt:has_geometry": true, "felt:h3_index": 644747916666027178, "STATEFP": 6, "PLACEFP": 10074, "PLACENS": 2407941, "GEOID": 610074, "NAME": "Cambria", "NAMELSAD": "Cambria CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21803724, "AWATER": 0, "INTPTLAT": 35.5520688, "INTPTLON": -121.0841373, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -121.085815, 35.550105 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 453, "felt:has_geometry": true, "felt:h3_index": 644747917244440605, "STATEFP": 6, "PLACEFP": 22300, "PLACENS": 2410415, "GEOID": 622300, "NAME": "El Paso de Robles (Paso Robles)", "NAMELSAD": "El Paso de Robles (Paso Robles) city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 51579271, "AWATER": 29864, "INTPTLAT": 35.6285131, "INTPTLON": -120.6503559, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -120.651855, 35.630512 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1475, "felt:has_geometry": true, "felt:h3_index": 644747917556128365, "STATEFP": 6, "PLACEFP": 78162, "PLACENS": 2410065, "GEOID": 678162, "NAME": "Templeton", "NAMELSAD": "Templeton CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20484546, "AWATER": 0, "INTPTLAT": 35.5560235, "INTPTLON": -120.7181665, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -120.717773, 35.554574 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1017, "felt:has_geometry": true, "felt:h3_index": 644747918461971753, "STATEFP": 6, "PLACEFP": 39670, "PLACENS": 2408546, "GEOID": 639670, "NAME": "Lake Nacimiento", "NAMELSAD": "Lake Nacimiento CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27172014, "AWATER": 60669, "INTPTLAT": 35.730962, "INTPTLON": -120.8695164, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -120.871582, 35.733136 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 454, "felt:has_geometry": true, "felt:h3_index": 644747919127909449, "STATEFP": 6, "PLACEFP": 49362, "PLACENS": 2411169, "GEOID": 649362, "NAME": "Morro Bay", "NAMELSAD": "Morro Bay city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 13826501, "AWATER": 12914764, "INTPTLAT": 35.3667732, "INTPTLON": -120.8682895, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -120.866089, 35.366656 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1079, "felt:has_geometry": true, "felt:h3_index": 644747920002423320, "STATEFP": 6, "PLACEFP": 44182, "PLACENS": 2407812, "GEOID": 644182, "NAME": "Los Osos", "NAMELSAD": "Los Osos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33057047, "AWATER": 52650, "INTPTLAT": 35.3070832, "INTPTLON": -120.8245216, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -120.822144, 35.308401 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 375, "felt:has_geometry": true, "felt:h3_index": 644747921741987202, "STATEFP": 6, "PLACEFP": 3064, "PLACENS": 2409745, "GEOID": 603064, "NAME": "Atascadero", "NAMELSAD": "Atascadero city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 67524872, "AWATER": 161112, "INTPTLAT": 35.4857179, "INTPTLON": -120.687942, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -120.690308, 35.487511 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 871, "felt:has_geometry": true, "felt:h3_index": 644747922093441386, "STATEFP": 6, "PLACEFP": 28210, "PLACENS": 2583022, "GEOID": 628210, "NAME": "Garden Farms", "NAMELSAD": "Garden Farms CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2831739, "AWATER": 0, "INTPTLAT": 35.4157817, "INTPTLON": -120.6140342, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -120.613403, 35.415915 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1376, "felt:has_geometry": true, "felt:h3_index": 644747922165226253, "STATEFP": 6, "PLACEFP": 69182, "PLACENS": 2583128, "GEOID": 669182, "NAME": "Santa Margarita", "NAMELSAD": "Santa Margarita CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1340019, "AWATER": 0, "INTPTLAT": 35.3894265, "INTPTLON": -120.6081585, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1066, "felt:has_geometry": true, "felt:h3_index": 644747925786418421, "STATEFP": 6, "PLACEFP": 42146, "PLACENS": 2583058, "GEOID": 642146, "NAME": "Lockwood", "NAMELSAD": "Lockwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28157116, "AWATER": 86923, "INTPTLAT": 35.9400827, "INTPTLON": -121.078282, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -121.080322, 35.937988 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 852, "felt:has_geometry": true, "felt:h3_index": 644747926684172352, "STATEFP": 6, "PLACEFP": 25093, "PLACENS": 2805235, "GEOID": 625093, "NAME": "Fort Hunter Liggett", "NAMELSAD": "Fort Hunter Liggett CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7198561, "AWATER": 79767, "INTPTLAT": 35.992329, "INTPTLON": -121.2348698, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -121.234131, 35.991341 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1375, "felt:has_geometry": true, "felt:h3_index": 644747928544318214, "STATEFP": 6, "PLACEFP": 68434, "PLACENS": 2583127, "GEOID": 668434, "NAME": "San Simeon", "NAMELSAD": "San Simeon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2063264, "AWATER": 0, "INTPTLAT": 35.6182056, "INTPTLON": -121.137438, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -121.135254, 35.617116 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1214, "felt:has_geometry": true, "felt:h3_index": 644747930143155597, "STATEFP": 6, "PLACEFP": 53160, "PLACENS": 2583101, "GEOID": 653160, "NAME": "Oak Shores", "NAMELSAD": "Oak Shores CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13178331, "AWATER": 2012447, "INTPTLAT": 35.7607589, "INTPTLON": -120.9828249, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -120.981445, 35.759886 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1392, "felt:has_geometry": true, "felt:h3_index": 644747932226194357, "STATEFP": 6, "PLACEFP": 71134, "PLACENS": 2408721, "GEOID": 671134, "NAME": "Shandon", "NAMELSAD": "Shandon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7639224, "AWATER": 113009, "INTPTLAT": 35.6536085, "INTPTLON": -120.3831476, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -120.382690, 35.652833 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1568, "felt:has_geometry": true, "felt:h3_index": 644747933888473602, "STATEFP": 6, "PLACEFP": 85222, "PLACENS": 2583185, "GEOID": 685222, "NAME": "Whitley Gardens", "NAMELSAD": "Whitley Gardens CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3396918, "AWATER": 28851, "INTPTLAT": 35.6563222, "INTPTLON": -120.5081122, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -120.509033, 35.657296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 713, "felt:has_geometry": true, "felt:h3_index": 644747937433283797, "STATEFP": 6, "PLACEFP": 17232, "PLACENS": 2628724, "GEOID": 617232, "NAME": "Creston", "NAMELSAD": "Creston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1460395, "AWATER": 12359, "INTPTLAT": 35.5170972, "INTPTLON": -120.518136, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -120.520020, 35.518814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1366, "felt:has_geometry": true, "felt:h3_index": 644747941889770099, "STATEFP": 6, "PLACEFP": 64476, "PLACENS": 2409249, "GEOID": 664476, "NAME": "San Ardo", "NAMELSAD": "San Ardo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1163657, "AWATER": 0, "INTPTLAT": 36.023699, "INTPTLON": -120.9073068, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -120.910034, 36.022447 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1373, "felt:has_geometry": true, "felt:h3_index": 644747944890350233, "STATEFP": 6, "PLACEFP": 68266, "PLACENS": 2409265, "GEOID": 668266, "NAME": "San Miguel", "NAMELSAD": "San Miguel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4350219, "AWATER": 0, "INTPTLAT": 35.753402, "INTPTLON": -120.6923925, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -120.690308, 35.755428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 591, "felt:has_geometry": true, "felt:h3_index": 644747946277486941, "STATEFP": 6, "PLACEFP": 7974, "PLACENS": 2407899, "GEOID": 607974, "NAME": "Bradley", "NAMELSAD": "Bradley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 222711, "AWATER": 0, "INTPTLAT": 35.8628398, "INTPTLON": -120.8042676, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -120.805664, 35.862344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 789, "felt:has_geometry": true, "felt:h3_index": 644747967039661315, "STATEFP": 6, "PLACEFP": 21565, "PLACENS": 2583005, "GEOID": 621565, "NAME": "Edna", "NAMELSAD": "Edna CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3158448, "AWATER": 0, "INTPTLAT": 35.2107858, "INTPTLON": -120.6059679, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.209722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 455, "felt:has_geometry": true, "felt:h3_index": 644747967536964293, "STATEFP": 6, "PLACEFP": 68154, "PLACENS": 2411796, "GEOID": 668154, "NAME": "San Luis Obispo", "NAMELSAD": "San Luis Obispo city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 34883862, "AWATER": 380513, "INTPTLAT": 35.2661952, "INTPTLON": -120.6684376, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -120.668335, 35.268047 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 614, "felt:has_geometry": true, "felt:h3_index": 644747967904224288, "STATEFP": 6, "PLACEFP": 9835, "PLACENS": 2805238, "GEOID": 609835, "NAME": "California Polytechnic State University", "NAMELSAD": "California Polytechnic State University CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3983144, "AWATER": 22384, "INTPTLAT": 35.3069806, "INTPTLON": -120.6672761, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -120.668335, 35.308401 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1080, "felt:has_geometry": true, "felt:h3_index": 644747968310007968, "STATEFP": 6, "PLACEFP": 44242, "PLACENS": 2583065, "GEOID": 644242, "NAME": "Los Ranchos", "NAMELSAD": "Los Ranchos CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7482152, "AWATER": 8695, "INTPTLAT": 35.2126991, "INTPTLON": -120.6280302, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -120.629883, 35.214210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1193, "felt:has_geometry": true, "felt:h3_index": 644747970713575779, "STATEFP": 6, "PLACEFP": 51476, "PLACENS": 2408927, "GEOID": 651476, "NAME": "Nipomo", "NAMELSAD": "Nipomo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 39044101, "AWATER": 985, "INTPTLAT": 35.0306599, "INTPTLON": -120.4977565, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -120.498047, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1077, "felt:has_geometry": true, "felt:h3_index": 644747970854218868, "STATEFP": 6, "PLACEFP": 44042, "PLACENS": 2583063, "GEOID": 644042, "NAME": "Los Berros", "NAMELSAD": "Los Berros CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6507454, "AWATER": 0, "INTPTLAT": 35.0809068, "INTPTLON": -120.5450358, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -120.547485, 35.079460 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 567, "felt:has_geometry": true, "felt:h3_index": 644747971356265233, "STATEFP": 6, "PLACEFP": 6935, "PLACENS": 2582945, "GEOID": 606935, "NAME": "Blacklake", "NAMELSAD": "Blacklake CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2707660, "AWATER": 0, "INTPTLAT": 35.0496895, "INTPTLON": -120.538642, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -120.536499, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 615, "felt:has_geometry": true, "felt:h3_index": 644747971377453494, "STATEFP": 6, "PLACEFP": 9948, "PLACENS": 2582956, "GEOID": 609948, "NAME": "Callender", "NAMELSAD": "Callender CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5921649, "AWATER": 0, "INTPTLAT": 35.0479717, "INTPTLON": -120.5759076, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -120.574951, 35.047987 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1581, "felt:has_geometry": true, "felt:h3_index": 644747971418579338, "STATEFP": 6, "PLACEFP": 86380, "PLACENS": 2583186, "GEOID": 686380, "NAME": "Woodlands", "NAMELSAD": "Woodlands CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4279720, "AWATER": 0, "INTPTLAT": 35.0288731, "INTPTLON": -120.5523934, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -120.552979, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 377, "felt:has_geometry": true, "felt:h3_index": 644747971776234794, "STATEFP": 6, "PLACEFP": 57414, "PLACENS": 2411429, "GEOID": 657414, "NAME": "Pismo Beach", "NAMELSAD": "Pismo Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9057591, "AWATER": 25582378, "INTPTLAT": 35.1531734, "INTPTLON": -120.6738743, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -120.673828, 35.151354 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 529, "felt:has_geometry": true, "felt:h3_index": 644747971911081101, "STATEFP": 6, "PLACEFP": 3330, "PLACENS": 2582937, "GEOID": 603330, "NAME": "Avila Beach", "NAMELSAD": "Avila Beach CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15761159, "AWATER": 580356, "INTPTLAT": 35.1993549, "INTPTLON": -120.7207571, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -120.723267, 35.200745 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 376, "felt:has_geometry": true, "felt:h3_index": 644747972085499150, "STATEFP": 6, "PLACEFP": 31393, "PLACENS": 2410668, "GEOID": 631393, "NAME": "Grover Beach", "NAMELSAD": "Grover Beach city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5988133, "AWATER": 11431, "INTPTLAT": 35.1208877, "INTPTLON": -120.6196642, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -120.618896, 35.119909 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 378, "felt:has_geometry": true, "felt:h3_index": 644747972100843614, "STATEFP": 6, "PLACEFP": 2868, "PLACENS": 2409734, "GEOID": 602868, "NAME": "Arroyo Grande", "NAMELSAD": "Arroyo Grande city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 15382199, "AWATER": 0, "INTPTLAT": 35.1241492, "INTPTLON": -120.5845327, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -120.585938, 35.124402 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1219, "felt:has_geometry": true, "felt:h3_index": 644747972561421937, "STATEFP": 6, "PLACEFP": 53294, "PLACENS": 2408974, "GEOID": 653294, "NAME": "Oceano", "NAMELSAD": "Oceano CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3979427, "AWATER": 39216, "INTPTLAT": 35.1016077, "INTPTLON": -120.608217, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -120.607910, 35.101934 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1013, "felt:has_geometry": true, "felt:h3_index": 644747983533164040, "STATEFP": 6, "PLACEFP": 39570, "PLACENS": 2408538, "GEOID": 639570, "NAME": "Lake Isabella", "NAMELSAD": "Lake Isabella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 56239883, "AWATER": 1098346, "INTPTLAT": 35.6370977, "INTPTLON": -118.4826097, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -118.482056, 35.634977 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1171, "felt:has_geometry": true, "felt:h3_index": 644747983810348164, "STATEFP": 6, "PLACEFP": 49600, "PLACENS": 2408881, "GEOID": 649600, "NAME": "Mountain Mesa", "NAMELSAD": "Mountain Mesa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2246361, "AWATER": 0, "INTPTLAT": 35.6411374, "INTPTLON": -118.4046454, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -118.405151, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1436, "felt:has_geometry": true, "felt:h3_index": 644747983878400802, "STATEFP": 6, "PLACEFP": 73815, "PLACENS": 2408800, "GEOID": 673815, "NAME": "Squirrel Mountain Valley", "NAMELSAD": "Squirrel Mountain Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4663884, "AWATER": 0, "INTPTLAT": 35.6175244, "INTPTLON": -118.4046684, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -118.405151, 35.617116 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 575, "felt:has_geometry": true, "felt:h3_index": 644747984072293270, "STATEFP": 6, "PLACEFP": 7274, "PLACENS": 2407873, "GEOID": 607274, "NAME": "Bodfish", "NAMELSAD": "Bodfish CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 21273286, "AWATER": 31784, "INTPTLAT": 35.5734164, "INTPTLON": -118.4864408, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -118.487549, 35.572449 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 879, "felt:has_geometry": true, "felt:h3_index": 644747984836650157, "STATEFP": 6, "PLACEFP": 30126, "PLACENS": 2804407, "GEOID": 630126, "NAME": "Glennville", "NAMELSAD": "Glennville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4889260, "AWATER": 0, "INTPTLAT": 35.7241937, "INTPTLON": -118.7152172, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -118.712769, 35.724218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 505, "felt:has_geometry": true, "felt:h3_index": 644747984907617924, "STATEFP": 6, "PLACEFP": 1358, "PLACENS": 2804107, "GEOID": 601358, "NAME": "Alta Sierra", "NAMELSAD": "Alta Sierra CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2631092, "AWATER": 1178, "INTPTLAT": 35.7257758, "INTPTLON": -118.5451664, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -118.542480, 35.724218 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1548, "felt:has_geometry": true, "felt:h3_index": 644747986326460268, "STATEFP": 6, "PLACEFP": 83948, "PLACENS": 2409540, "GEOID": 683948, "NAME": "Weldon", "NAMELSAD": "Weldon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 69057891, "AWATER": 391674, "INTPTLAT": 35.6441026, "INTPTLON": -118.3090882, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -118.311768, 35.643905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1230, "felt:has_geometry": true, "felt:h3_index": 644747986590942795, "STATEFP": 6, "PLACEFP": 53910, "PLACENS": 2408991, "GEOID": 653910, "NAME": "Onyx", "NAMELSAD": "Onyx CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29658338, "AWATER": 203115, "INTPTLAT": 35.67022, "INTPTLON": -118.2271631, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -118.229370, 35.670685 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1578, "felt:has_geometry": true, "felt:h3_index": 644747987398547217, "STATEFP": 6, "PLACEFP": 86174, "PLACENS": 2409619, "GEOID": 686174, "NAME": "Wofford Heights", "NAMELSAD": "Wofford Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16579394, "AWATER": 460, "INTPTLAT": 35.714951, "INTPTLON": -118.4726643, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -118.471069, 35.715298 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 984, "felt:has_geometry": true, "felt:h3_index": 644747987560177964, "STATEFP": 6, "PLACEFP": 38310, "PLACENS": 2408474, "GEOID": 638310, "NAME": "Kernville", "NAMELSAD": "Kernville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 32727820, "AWATER": 797180, "INTPTLAT": 35.7550172, "INTPTLON": -118.4309073, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -118.432617, 35.755428 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 207, "felt:has_geometry": true, "felt:h3_index": 644747993372731018, "STATEFP": 6, "PLACEFP": 58240, "PLACENS": 2411470, "GEOID": 658240, "NAME": "Porterville", "NAMELSAD": "Porterville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 48294868, "AWATER": 141831, "INTPTLAT": 36.063542, "INTPTLON": -119.0336003, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -119.031372, 36.062422 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 777, "felt:has_geometry": true, "felt:h3_index": 644747993605562733, "STATEFP": 6, "PLACEFP": 21012, "PLACENS": 2408032, "GEOID": 621012, "NAME": "East Porterville", "NAMELSAD": "East Porterville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5496322, "AWATER": 0, "INTPTLAT": 36.0581549, "INTPTLON": -118.9748923, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -118.976440, 36.057981 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1478, "felt:has_geometry": true, "felt:h3_index": 644747993753774225, "STATEFP": 6, "PLACEFP": 78288, "PLACENS": 2410068, "GEOID": 678288, "NAME": "Terra Bella", "NAMELSAD": "Terra Bella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5668357, "AWATER": 0, "INTPTLAT": 35.9600114, "INTPTLON": -119.0385283, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -119.036865, 35.960223 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1434, "felt:has_geometry": true, "felt:h3_index": 644747995392888155, "STATEFP": 6, "PLACEFP": 73710, "PLACENS": 2408798, "GEOID": 673710, "NAME": "Springville", "NAMELSAD": "Springville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3933608, "AWATER": 35439, "INTPTLAT": 36.1208672, "INTPTLON": -118.822825, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -118.822632, 36.120128 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1584, "felt:has_geometry": true, "felt:h3_index": 644747997053888913, "STATEFP": 6, "PLACEFP": 86496, "PLACENS": 2804433, "GEOID": 686496, "NAME": "Woody", "NAMELSAD": "Woody CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10453539, "AWATER": 0, "INTPTLAT": 35.7081483, "INTPTLON": -118.8143965, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 35.706377 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 759, "felt:has_geometry": true, "felt:h3_index": 644747997624067506, "STATEFP": 6, "PLACEFP": 20032, "PLACENS": 2408692, "GEOID": 620032, "NAME": "Ducor", "NAMELSAD": "Ducor CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1442359, "AWATER": 0, "INTPTLAT": 35.892701, "INTPTLON": -119.0470096, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -119.047852, 35.893500 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 612, "felt:has_geometry": true, "felt:h3_index": 644747998616816278, "STATEFP": 6, "PLACEFP": 9822, "PLACENS": 2585404, "GEOID": 609822, "NAMELSAD": "California Hot Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2334885, "AWATER": 0, "INTPTLAT": 35.8875684, "INTPTLON": -118.6550221, "NAME": "California Hot Springs,Pine Flat", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -118.652344, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 945, "felt:has_geometry": true, "felt:h3_index": 644747999107826817, "STATEFP": 6, "PLACEFP": 36168, "PLACENS": 2585425, "GEOID": 636168, "NAMELSAD": "Idlewild CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1189519, "AWATER": 0, "INTPTLAT": 35.809588, "INTPTLON": -118.6704627, "NAME": "Idlewild,Posey", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -118.668823, 35.808904 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1091, "felt:has_geometry": true, "felt:h3_index": 644747999141301597, "STATEFP": 6, "PLACEFP": 44770, "PLACENS": 2585431, "GEOID": 644770, "NAMELSAD": "McClenney Tract CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1595077, "AWATER": 0, "INTPTLAT": 35.8219843, "INTPTLON": -118.6478386, "NAME": "McClenney Tract,Poso Park", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -118.646851, 35.822267 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1450, "felt:has_geometry": true, "felt:h3_index": 644747999393235232, "STATEFP": 6, "PLACEFP": 75592, "PLACENS": 2585451, "GEOID": 675592, "NAMELSAD": "Sugarloaf Saw Mill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 252263, "AWATER": 0, "INTPTLAT": 35.8342994, "INTPTLON": -118.6165411, "NAME": "Sugarloaf Saw Mill,Sugarloaf Village", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -118.613892, 35.835628 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1244, "felt:has_geometry": true, "felt:h3_index": 644747999452729696, "STATEFP": 6, "PLACEFP": 55506, "PLACENS": 2585435, "GEOID": 655506, "NAME": "Panorama Heights", "NAMELSAD": "Panorama Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1230480, "AWATER": 0, "INTPTLAT": 35.8067676, "INTPTLON": -118.6270528, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -118.624878, 35.808904 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1257, "felt:has_geometry": true, "felt:h3_index": 644748003553121640, "STATEFP": 6, "PLACEFP": 56294, "PLACENS": 2409043, "GEOID": 656294, "NAME": "Pearsonville", "NAMELSAD": "Pearsonville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10648134, "AWATER": 210748, "INTPTLAT": 35.8229451, "INTPTLON": -117.87825, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -117.877808, 35.822267 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 670, "felt:has_geometry": true, "felt:h3_index": 644748007264425394, "STATEFP": 6, "PLACEFP": 13157, "PLACENS": 2408027, "GEOID": 613157, "NAME": "China Lake Acres", "NAMELSAD": "China Lake Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13491529, "AWATER": 2579, "INTPTLAT": 35.6400189, "INTPTLON": -117.7664577, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -117.767944, 35.639441 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 954, "felt:has_geometry": true, "felt:h3_index": 644748007861981726, "STATEFP": 6, "PLACEFP": 36658, "PLACENS": 2408430, "GEOID": 636658, "NAME": "Inyokern", "NAMELSAD": "Inyokern CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28301165, "AWATER": 2685, "INTPTLAT": 35.6543866, "INTPTLON": -117.8194759, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -117.817383, 35.652833 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1327, "felt:has_geometry": true, "felt:h3_index": 644748008066535826, "STATEFP": 6, "PLACEFP": 60705, "PLACENS": 2804429, "GEOID": 660705, "NAME": "Ridgecrest Heights", "NAMELSAD": "Ridgecrest Heights CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1564204, "AWATER": 0, "INTPTLAT": 35.6019004, "INTPTLON": -117.7041798, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -117.702026, 35.603719 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1290, "felt:has_geometry": true, "felt:h3_index": 644748011080167693, "STATEFP": 6, "PLACEFP": 58134, "PLACENS": 2585440, "GEOID": 658134, "NAME": "Ponderosa", "NAMELSAD": "Ponderosa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2099863, "AWATER": 9090, "INTPTLAT": 36.1046931, "INTPTLON": -118.5319148, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -118.531494, 36.106815 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 979, "felt:has_geometry": true, "felt:h3_index": 644748016219490121, "STATEFP": 6, "PLACEFP": 38076, "PLACENS": 2585427, "GEOID": 638076, "NAME": "Kennedy Meadows", "NAMELSAD": "Kennedy Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15080914, "AWATER": 0, "INTPTLAT": 36.0076393, "INTPTLON": -118.1099468, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -118.108521, 36.009117 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 975, "felt:has_geometry": true, "felt:h3_index": 644748017925478132, "STATEFP": 6, "PLACEFP": 37946, "PLACENS": 2408467, "GEOID": 637946, "NAME": "Keene", "NAMELSAD": "Keene CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 24459682, "AWATER": 13903, "INTPTLAT": 35.2317801, "INTPTLON": -118.6130668, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -118.613892, 35.232159 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 544, "felt:has_geometry": true, "felt:h3_index": 644748018489412126, "STATEFP": 6, "PLACEFP": 4734, "PLACENS": 2407815, "GEOID": 604734, "NAME": "Bear Valley Springs", "NAMELSAD": "Bear Valley Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 100685639, "AWATER": 173880, "INTPTLAT": 35.1783554, "INTPTLON": -118.669618, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -118.668823, 35.178298 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 787, "felt:has_geometry": true, "felt:h3_index": 644748019120552274, "STATEFP": 6, "PLACEFP": 21544, "PLACENS": 2804117, "GEOID": 621544, "NAME": "Edison", "NAMELSAD": "Edison CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2621330, "AWATER": 0, "INTPTLAT": 35.347313, "INTPTLON": -118.8698256, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -118.872070, 35.348736 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 788, "felt:has_geometry": true, "felt:h3_index": 644748019513837110, "STATEFP": 6, "PLACEFP": 21558, "PLACENS": 2629761, "GEOID": 621558, "NAME": "Edmundson Acres", "NAMELSAD": "Edmundson Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 172230, "AWATER": 0, "INTPTLAT": 35.2272959, "INTPTLON": -118.823252, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -118.822632, 35.227672 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 746, "felt:has_geometry": true, "felt:h3_index": 644748019522180110, "STATEFP": 6, "PLACEFP": 19248, "PLACENS": 2804113, "GEOID": 619248, "NAME": "Di Giorgio", "NAMELSAD": "Di Giorgio CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 221326, "AWATER": 0, "INTPTLAT": 35.2491183, "INTPTLON": -118.8441536, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -118.844604, 35.250105 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1028, "felt:has_geometry": true, "felt:h3_index": 644748019729748112, "STATEFP": 6, "PLACEFP": 40088, "PLACENS": 2408568, "GEOID": 640088, "NAME": "Lamont", "NAMELSAD": "Lamont CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12423016, "AWATER": 66020, "INTPTLAT": 35.2651422, "INTPTLON": -118.9160415, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 35.263562 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1437, "felt:has_geometry": true, "felt:h3_index": 644748022420525610, "STATEFP": 6, "PLACEFP": 73868, "PLACENS": 2408801, "GEOID": 673868, "NAME": "Stallion Springs", "NAMELSAD": "Stallion Springs CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 35163160, "AWATER": 63046, "INTPTLAT": 35.0920157, "INTPTLON": -118.6576491, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -118.657837, 35.092945 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 283, "felt:has_geometry": true, "felt:h3_index": 644748023430717729, "STATEFP": 6, "PLACEFP": 2924, "PLACENS": 2409738, "GEOID": 602924, "NAME": "Arvin", "NAMELSAD": "Arvin city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12482061, "AWATER": 0, "INTPTLAT": 35.1943611, "INTPTLON": -118.8305687, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -118.828125, 35.196256 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 285, "felt:has_geometry": true, "felt:h3_index": 644748024436175472, "STATEFP": 6, "PLACEFP": 78092, "PLACENS": 2412041, "GEOID": 678092, "NAME": "Tehachapi", "NAMELSAD": "Tehachapi city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 26563140, "AWATER": 250130, "INTPTLAT": 35.1429585, "INTPTLON": -118.4460356, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -118.443604, 35.142371 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 880, "felt:has_geometry": true, "felt:h3_index": 644748025051825883, "STATEFP": 6, "PLACEFP": 30282, "PLACENS": 2408306, "GEOID": 630282, "NAME": "Golden Hills", "NAMELSAD": "Golden Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28267176, "AWATER": 44673, "INTPTLAT": 35.1364219, "INTPTLON": -118.4975917, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -118.498535, 35.137879 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1170, "felt:has_geometry": true, "felt:h3_index": 644748025229612966, "STATEFP": 6, "PLACEFP": 49592, "PLACENS": 2804422, "GEOID": 649592, "NAME": "Mountain Meadows", "NAMELSAD": "Mountain Meadows CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10651128, "AWATER": 19545, "INTPTLAT": 35.0935654, "INTPTLON": -118.4326871, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -118.432617, 35.092945 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 927, "felt:has_geometry": true, "felt:h3_index": 644748030809134761, "STATEFP": 6, "PLACEFP": 33689, "PLACENS": 2804409, "GEOID": 633689, "NAME": "Hillcrest", "NAMELSAD": "Hillcrest CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3569985, "AWATER": 0, "INTPTLAT": 35.3789699, "INTPTLON": -118.9578535, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -118.959961, 35.380093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 996, "felt:has_geometry": true, "felt:h3_index": 644748030827861812, "STATEFP": 6, "PLACEFP": 39052, "PLACENS": 2804420, "GEOID": 639052, "NAMELSAD": "La Cresta CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2710186, "AWATER": 0, "INTPTLAT": 35.3972011, "INTPTLON": -118.9893122, "NAME": "La Cresta,East Bakersfield", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -118.987427, 35.398006 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 702, "felt:has_geometry": true, "felt:h3_index": 644748030845869186, "STATEFP": 6, "PLACEFP": 16623, "PLACENS": 2804112, "GEOID": 616623, "NAME": "Cottonwood", "NAMELSAD": "Cottonwood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1017555, "AWATER": 0, "INTPTLAT": 35.3455883, "INTPTLON": -118.9858564, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -118.987427, 35.344255 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1296, "felt:has_geometry": true, "felt:h3_index": 644748030878629203, "STATEFP": 6, "PLACEFP": 58471, "PLACENS": 2804426, "GEOID": 658471, "NAME": "Potomac Park", "NAMELSAD": "Potomac Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3693101, "AWATER": 0, "INTPTLAT": 35.363538, "INTPTLON": -118.9649632, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -118.965454, 35.362176 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1221, "felt:has_geometry": true, "felt:h3_index": 644748030961134821, "STATEFP": 6, "PLACEFP": 53448, "PLACENS": 2408979, "GEOID": 653448, "NAME": "Oildale", "NAMELSAD": "Oildale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20484539, "AWATER": 0, "INTPTLAT": 35.4292605, "INTPTLON": -119.0305761, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -119.031372, 35.429344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 532, "felt:has_geometry": true, "felt:h3_index": 644748031071160428, "STATEFP": 6, "PLACEFP": 3546, "PLACENS": 2804108, "GEOID": 603546, "NAME": "Bakersfield Country Club", "NAMELSAD": "Bakersfield Country Club CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1963093, "AWATER": 0, "INTPTLAT": 35.3898914, "INTPTLON": -118.9409146, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -118.943481, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 772, "felt:has_geometry": true, "felt:h3_index": 644748031133014646, "STATEFP": 6, "PLACEFP": 20903, "PLACENS": 2804115, "GEOID": 620903, "NAME": "East Niles", "NAMELSAD": "East Niles CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14134961, "AWATER": 0, "INTPTLAT": 35.3682728, "INTPTLON": -118.9224616, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -118.921509, 35.366656 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 884, "felt:has_geometry": true, "felt:h3_index": 644748031182788440, "STATEFP": 6, "PLACEFP": 30412, "PLACENS": 2804408, "GEOID": 630412, "NAME": "Goodmanville", "NAMELSAD": "Goodmanville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1753841, "AWATER": 0, "INTPTLAT": 35.4289943, "INTPTLON": -118.9437185, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -118.943481, 35.429344 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1334, "felt:has_geometry": true, "felt:h3_index": 644748031214936964, "STATEFP": 6, "PLACEFP": 61108, "PLACENS": 2804430, "GEOID": 661108, "NAME": "Rivergrove", "NAMELSAD": "Rivergrove CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1703927, "AWATER": 0, "INTPTLAT": 35.440294, "INTPTLON": -118.9410846, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -118.943481, 35.438296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1323, "felt:has_geometry": true, "felt:h3_index": 644748031325824525, "STATEFP": 6, "PLACEFP": 60370, "PLACENS": 2804428, "GEOID": 660370, "NAME": "Rexland Acres", "NAMELSAD": "Rexland Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1345980, "AWATER": 0, "INTPTLAT": 35.3050527, "INTPTLON": -118.9969915, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -118.998413, 35.303919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 642, "felt:has_geometry": true, "felt:h3_index": 644748031369765467, "STATEFP": 6, "PLACEFP": 11696, "PLACENS": 2805239, "GEOID": 611696, "NAME": "Casa Loma", "NAMELSAD": "Casa Loma CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1007621, "AWATER": 0, "INTPTLAT": 35.3432304, "INTPTLON": -118.9987108, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -118.998413, 35.344255 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 279, "felt:has_geometry": true, "felt:h3_index": 644748031452316486, "STATEFP": 6, "PLACEFP": 3526, "PLACENS": 2409774, "GEOID": 603526, "NAMELSAD": "Bakersfield city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 389204786, "AWATER": 3792006, "INTPTLAT": 35.3531712, "INTPTLON": -119.0379186, "NAME": "Bakersfield,Old Stine", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -119.036865, 35.353216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1223, "felt:has_geometry": true, "felt:h3_index": 644748031533073477, "STATEFP": 6, "PLACEFP": 53503, "PLACENS": 2804423, "GEOID": 653503, "NAME": "Olde Stockdale", "NAMELSAD": "Olde Stockdale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1054819, "AWATER": 0, "INTPTLAT": 35.3475989, "INTPTLON": -119.0793718, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -119.080811, 35.348736 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 553, "felt:has_geometry": true, "felt:h3_index": 644748031550909872, "STATEFP": 6, "PLACEFP": 5356, "PLACENS": 2804109, "GEOID": 605356, "NAME": "Benton Park", "NAMELSAD": "Benton Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1942378, "AWATER": 0, "INTPTLAT": 35.3464387, "INTPTLON": -119.0298149, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -119.031372, 35.344255 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 823, "felt:has_geometry": true, "felt:h3_index": 644748031631495910, "STATEFP": 6, "PLACEFP": 23158, "PLACENS": 2804405, "GEOID": 623158, "NAME": "Fairfax", "NAMELSAD": "Fairfax CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2466696, "AWATER": 0, "INTPTLAT": 35.3468854, "INTPTLON": -118.9338065, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -118.932495, 35.348736 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 866, "felt:has_geometry": true, "felt:h3_index": 644748031691234020, "STATEFP": 6, "PLACEFP": 27190, "PLACENS": 2629762, "GEOID": 627190, "NAME": "Fuller Acres", "NAMELSAD": "Fuller Acres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1953739, "AWATER": 0, "INTPTLAT": 35.3022538, "INTPTLON": -118.9142955, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -118.916016, 35.303919 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 321, "felt:has_geometry": true, "felt:h3_index": 644748031996254085, "STATEFP": 6, "PLACEFP": 71106, "PLACENS": 2411873, "GEOID": 671106, "NAME": "Shafter", "NAMELSAD": "Shafter city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 100221605, "AWATER": 0, "INTPTLAT": 35.4794212, "INTPTLON": -119.2012851, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -119.201660, 35.478565 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1344, "felt:has_geometry": true, "felt:h3_index": 644748032414919902, "STATEFP": 6, "PLACEFP": 62854, "PLACENS": 2409211, "GEOID": 662854, "NAME": "Rosedale", "NAMELSAD": "Rosedale CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 75813312, "AWATER": 0, "INTPTLAT": 35.3886076, "INTPTLON": -119.2057422, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -119.207153, 35.389050 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 894, "felt:has_geometry": true, "felt:h3_index": 644748032743610773, "STATEFP": 6, "PLACEFP": 30938, "PLACENS": 2628814, "GEOID": 630938, "NAME": "Greenacres", "NAMELSAD": "Greenacres CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4931784, "AWATER": 0, "INTPTLAT": 35.3831587, "INTPTLON": -119.1183805, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -119.119263, 35.384572 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1469, "felt:has_geometry": true, "felt:h3_index": 644748033572608050, "STATEFP": 6, "PLACEFP": 77934, "PLACENS": 2804432, "GEOID": 677934, "NAME": "Tarina", "NAMELSAD": "Tarina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11542573, "AWATER": 0, "INTPTLAT": 35.3807004, "INTPTLON": -118.8170881, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -118.817139, 35.380093 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 672, "felt:has_geometry": true, "felt:h3_index": 644748033596702771, "STATEFP": 6, "PLACEFP": 13278, "PLACENS": 2804111, "GEOID": 613278, "NAME": "Choctaw Valley", "NAMELSAD": "Choctaw Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5885507, "AWATER": 0, "INTPTLAT": 35.4485545, "INTPTLON": -118.8871907, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -118.888550, 35.447246 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 331, "felt:has_geometry": true, "felt:h3_index": 644748247045125961, "STATEFP": 6, "PLACEFP": 50734, "PLACENS": 2411220, "GEOID": 650734, "NAME": "Needles", "NAMELSAD": "Needles city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 79196617, "AWATER": 1289442, "INTPTLAT": 34.8134263, "INTPTLON": -114.6266387, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -114.625854, 34.813803 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 564, "felt:has_geometry": true, "felt:h3_index": 644748481924483172, "STATEFP": 6, "PLACEFP": 6635, "PLACENS": 2407844, "GEOID": 606635, "NAME": "Big River", "NAMELSAD": "Big River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 28050915, "AWATER": 1344398, "INTPTLAT": 34.1398232, "INTPTLON": -114.3620987, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -114.362183, 34.139088 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 572, "felt:has_geometry": true, "felt:h3_index": 644748484593699356, "STATEFP": 6, "PLACEFP": 7172, "PLACENS": 2407869, "GEOID": 607172, "NAME": "Bluewater", "NAMELSAD": "Bluewater CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2711814, "AWATER": 766390, "INTPTLAT": 34.1754314, "INTPTLON": -114.2649617, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -114.263306, 34.175453 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 738, "felt:has_geometry": true, "felt:h3_index": 644748511879802058, "STATEFP": 6, "PLACEFP": 18982, "PLACENS": 2582993, "GEOID": 618982, "NAME": "Desert Center", "NAMELSAD": "Desert Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78799210, "AWATER": 0, "INTPTLAT": 33.7377986, "INTPTLON": -115.3666216, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -115.367432, 33.738045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 280, "felt:has_geometry": true, "felt:h3_index": 644748516873606566, "STATEFP": 6, "PLACEFP": 7218, "PLACENS": 2409872, "GEOID": 607218, "NAME": "Blythe", "NAMELSAD": "Blythe city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 68645916, "AWATER": 2000747, "INTPTLAT": 33.6535205, "INTPTLON": -114.6218227, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -114.620361, 33.655781 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1129, "felt:has_geometry": true, "felt:h3_index": 644748522181272144, "STATEFP": 6, "PLACEFP": 47066, "PLACENS": 2583079, "GEOID": 647066, "NAME": "Mesa Verde", "NAMELSAD": "Mesa Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11139877, "AWATER": 0, "INTPTLAT": 33.5956999, "INTPTLON": -114.7316045, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -114.730225, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1297, "felt:has_geometry": true, "felt:h3_index": 645287510434742996, "STATEFP": 6, "PLACEFP": 58478, "PLACENS": 2628778, "GEOID": 658478, "NAME": "Potrero", "NAMELSAD": "Potrero CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8157788, "AWATER": 0, "INTPTLAT": 32.6130891, "INTPTLON": -116.6068146, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -116.608887, 32.611616 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 627, "felt:has_geometry": true, "felt:h3_index": 645287510650479435, "STATEFP": 6, "PLACEFP": 10508, "PLACENS": 2582962, "GEOID": 610508, "NAME": "Campo", "NAMELSAD": "Campo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 60877895, "AWATER": 16844, "INTPTLAT": 32.6409655, "INTPTLON": -116.4745158, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -116.477051, 32.639375 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 589, "felt:has_geometry": true, "felt:h3_index": 645287511563970892, "STATEFP": 6, "PLACEFP": 7694, "PLACENS": 2582949, "GEOID": 607694, "NAME": "Boulevard", "NAMELSAD": "Boulevard CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10115840, "AWATER": 0, "INTPTLAT": 32.6640221, "INTPTLON": -116.2896012, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -116.290283, 32.662500 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 958, "felt:has_geometry": true, "felt:h3_index": 645287511715930501, "STATEFP": 6, "PLACEFP": 37022, "PLACENS": 2583040, "GEOID": 637022, "NAME": "Jacumba", "NAMELSAD": "Jacumba CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15848184, "AWATER": 18532, "INTPTLAT": 32.6364781, "INTPTLON": -116.190706, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -116.191406, 32.634749 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1220, "felt:has_geometry": true, "felt:h3_index": 645287527842001954, "STATEFP": 6, "PLACEFP": 53378, "PLACENS": 2408976, "GEOID": 653378, "NAME": "Ocotillo", "NAMELSAD": "Ocotillo CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 22959357, "AWATER": 0, "INTPTLAT": 32.7431265, "INTPTLON": -116.0018794, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -115.999146, 32.741082 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1605, "felt:has_geometry": true, "felt:h3_index": 645287528099885134, "STATEFP": 6, "PLACEFP": 70798, "PLACENS": 2409303, "GEOID": 670798, "NAME": "Seeley", "NAMELSAD": "Seeley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3660150, "AWATER": 78319, "INTPTLAT": 32.7904047, "INTPTLON": -115.685047, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -115.686035, 32.791892 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 792, "felt:has_geometry": true, "felt:h3_index": 645287528565971236, "STATEFP": 6, "PLACEFP": 21788, "PLACENS": 2805234, "GEOID": 621788, "NAME": "El Centro Naval Air Facility", "NAMELSAD": "El Centro Naval Air Facility CDP", "LSAD": 57, "CLASSFP": "M2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10855446, "AWATER": 0, "INTPTLAT": 32.8252316, "INTPTLON": -115.6680724, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -115.669556, 32.824211 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1606, "felt:has_geometry": true, "felt:h3_index": 645287644837329651, "STATEFP": 6, "PLACEFP": 86020, "PLACENS": 2409615, "GEOID": 686020, "NAME": "Winterhaven", "NAMELSAD": "Winterhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 630958, "AWATER": 0, "INTPTLAT": 32.7371834, "INTPTLON": -114.6377979, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -114.636841, 32.736462 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1331, "felt:has_geometry": true, "felt:h3_index": 645287667033610280, "STATEFP": 6, "PLACEFP": 61012, "PLACENS": 2583122, "GEOID": 661012, "NAME": "Ripley", "NAMELSAD": "Ripley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4404857, "AWATER": 0, "INTPTLAT": 33.5237876, "INTPTLON": -114.6529919, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -114.653320, 33.523079 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1243, "felt:has_geometry": true, "felt:h3_index": 645287667289983361, "STATEFP": 6, "PLACEFP": 55422, "PLACENS": 2409022, "GEOID": 655422, "NAME": "Palo Verde", "NAMELSAD": "Palo Verde CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1502113, "AWATER": 0, "INTPTLAT": 33.4278429, "INTPTLON": -114.7270947, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -114.724731, 33.426857 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 438, "felt:has_geometry": true, "felt:h3_index": 645287681026633739, "STATEFP": 6, "PLACEFP": 34246, "PLACENS": 2410780, "GEOID": 634246, "NAME": "Holtville", "NAMELSAD": "Holtville city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 2988033, "AWATER": 11902, "INTPTLAT": 32.8137812, "INTPTLON": -115.3783188, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -115.378418, 32.814978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 439, "felt:has_geometry": true, "felt:h3_index": 645287681701005467, "STATEFP": 6, "PLACEFP": 36280, "PLACENS": 2410097, "GEOID": 636280, "NAME": "Imperial", "NAMELSAD": "Imperial city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 16536838, "AWATER": 0, "INTPTLAT": 32.8388748, "INTPTLON": -115.5718415, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -115.570679, 32.838058 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 437, "felt:has_geometry": true, "felt:h3_index": 645287682155536658, "STATEFP": 6, "PLACEFP": 21782, "PLACENS": 2410409, "GEOID": 621782, "NAME": "El Centro", "NAMELSAD": "El Centro city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 31280475, "AWATER": 45518, "INTPTLAT": 32.7863511, "INTPTLON": -115.5602059, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -115.559692, 32.787275 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 436, "felt:has_geometry": true, "felt:h3_index": 645287686261300440, "STATEFP": 6, "PLACEFP": 9710, "PLACENS": 2409958, "GEOID": 609710, "NAME": "Calexico", "NAMELSAD": "Calexico city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 22324358, "AWATER": 0, "INTPTLAT": 32.6849313, "INTPTLON": -115.4943572, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -115.493774, 32.685620 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 919, "felt:has_geometry": true, "felt:h3_index": 645287686372214601, "STATEFP": 6, "PLACEFP": 33084, "PLACENS": 2408367, "GEOID": 633084, "NAME": "Heber", "NAMELSAD": "Heber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3718242, "AWATER": 0, "INTPTLAT": 32.7324941, "INTPTLON": -115.5293983, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -115.526733, 32.731841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "felt:feature": 604, "felt:has_geometry": true, "felt:h3_index": 644718571927151218, "STATEFP": 6, "PLACEFP": 9150, "PLACENS": 2582954, "GEOID": 609150, "NAME": "Burnt Ranch", "NAMELSAD": "Burnt Ranch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 34655000, "AWATER": 3143, "INTPTLAT": 40.8113348, "INTPTLON": -123.5082607, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -123.508301, 40.809652 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1573, "felt:has_geometry": true, "felt:h3_index": 644718575030985218, "STATEFP": 6, "PLACEFP": 85642, "PLACENS": 2409598, "GEOID": 685642, "NAME": "Willow Creek", "NAMELSAD": "Willow Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 78501415, "AWATER": 777004, "INTPTLAT": 40.9393305, "INTPTLON": -123.6410997, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -123.640137, 40.938415 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1362, "felt:has_geometry": true, "felt:h3_index": 644718575706457891, "STATEFP": 6, "PLACEFP": 64378, "PLACENS": 2804442, "GEOID": 664378, "NAME": "Salyer", "NAMELSAD": "Salyer CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13662482, "AWATER": 113638, "INTPTLAT": 40.8767681, "INTPTLON": -123.5735007, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -123.574219, 40.876141 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1498, "felt:has_geometry": true, "felt:h3_index": 644718575734532462, "STATEFP": 6, "PLACEFP": 80483, "PLACENS": 2611452, "GEOID": 680483, "NAME": "Trinity Village", "NAMELSAD": "Trinity Village CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10394620, "AWATER": 0, "INTPTLAT": 40.8789159, "INTPTLON": -123.5132075, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -123.513794, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 562, "felt:has_geometry": true, "felt:h3_index": 644718581673278022, "STATEFP": 6, "PLACEFP": 6567, "PLACENS": 2611424, "GEOID": 606567, "NAME": "Big Lagoon", "NAMELSAD": "Big Lagoon CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1573136, "AWATER": 0, "INTPTLAT": 41.1594267, "INTPTLON": -124.1297465, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -124.129028, 41.157978 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 170, "felt:has_geometry": true, "felt:h3_index": 644718581837530794, "STATEFP": 6, "PLACEFP": 80448, "PLACENS": 2412093, "GEOID": 680448, "NAME": "Trinidad", "NAMELSAD": "Trinidad city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1263717, "AWATER": 412146, "INTPTLAT": 41.0577077, "INTPTLON": -124.143255, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.058644 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1554, "felt:has_geometry": true, "felt:h3_index": 644718582140418460, "STATEFP": 6, "PLACEFP": 84385, "PLACENS": 2409573, "GEOID": 684385, "NAME": "Westhaven-Moonstone", "NAMELSAD": "Westhaven-Moonstone CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 20954630, "AWATER": 70662, "INTPTLAT": 41.0361167, "INTPTLON": -124.0908296, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -124.090576, 41.037931 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 167, "felt:has_geometry": true, "felt:h3_index": 644718585258590224, "STATEFP": 6, "PLACEFP": 7162, "PLACENS": 2409868, "GEOID": 607162, "NAME": "Blue Lake", "NAMELSAD": "Blue Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1601834, "AWATER": 79994, "INTPTLAT": 40.8809929, "INTPTLON": -123.994912, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -123.997192, 40.880295 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1095, "felt:has_geometry": true, "felt:h3_index": 644718585915844358, "STATEFP": 6, "PLACEFP": 44910, "PLACENS": 2408201, "GEOID": 644910, "NAME": "McKinleyville", "NAMELSAD": "McKinleyville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 54083206, "AWATER": 657148, "INTPTLAT": 40.9515707, "INTPTLON": -124.077357, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.950863 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 835, "felt:has_geometry": true, "felt:h3_index": 644718585930130026, "STATEFP": 6, "PLACEFP": 24008, "PLACENS": 2611430, "GEOID": 624008, "NAME": "Fieldbrook", "NAMELSAD": "Fieldbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 27111305, "AWATER": 9982, "INTPTLAT": 40.9729581, "INTPTLON": -124.0285865, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -124.030151, 40.971604 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 971, "felt:has_geometry": true, "felt:h3_index": 644718593154745173, "STATEFP": 6, "PLACEFP": 37596, "PLACENS": 2583043, "GEOID": 637596, "NAME": "Junction City", "NAMELSAD": "Junction City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68728396, "AWATER": 87697, "INTPTLAT": 40.736022, "INTPTLON": -123.0846436, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -123.085327, 40.734771 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1547, "felt:has_geometry": true, "felt:h3_index": 644718599181999498, "STATEFP": 6, "PLACEFP": 83906, "PLACENS": 2805256, "GEOID": 683906, "NAME": "Weitchpec", "NAMELSAD": "Weitchpec CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9919744, "AWATER": 145898, "INTPTLAT": 41.1945932, "INTPTLON": -123.6888465, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -123.689575, 41.195190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 937, "felt:has_geometry": true, "felt:h3_index": 644718603466353835, "STATEFP": 6, "PLACEFP": 34540, "PLACENS": 2585654, "GEOID": 634540, "NAME": "Hoopa", "NAMELSAD": "Hoopa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 52865786, "AWATER": 2013972, "INTPTLAT": 41.0796391, "INTPTLON": -123.6976603, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -123.695068, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 836, "felt:has_geometry": true, "felt:h3_index": 644718615895212352, "STATEFP": 6, "PLACEFP": 24022, "PLACENS": 2628730, "GEOID": 624022, "NAME": "Fields Landing", "NAMELSAD": "Fields Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 716672, "AWATER": 7676, "INTPTLAT": 40.7242363, "INTPTLON": -124.2186025, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -124.216919, 40.722283 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 941, "felt:has_geometry": true, "felt:h3_index": 644718615998629462, "STATEFP": 6, "PLACEFP": 34928, "PLACENS": 2408406, "GEOID": 634928, "NAME": "Humboldt Hill", "NAMELSAD": "Humboldt Hill CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10762229, "AWATER": 37912, "INTPTLAT": 40.722316, "INTPTLON": -124.1973808, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -124.194946, 40.722283 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1183, "felt:has_geometry": true, "felt:h3_index": 644718617862603099, "STATEFP": 6, "PLACEFP": 50188, "PLACENS": 2408896, "GEOID": 650188, "NAME": "Myrtletown", "NAMELSAD": "Myrtletown CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5432288, "AWATER": 192918, "INTPTLAT": 40.7887307, "INTPTLON": -124.1306576, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -124.129028, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1106, "felt:has_geometry": true, "felt:h3_index": 644718617907779420, "STATEFP": 6, "PLACEFP": 45414, "PLACENS": 2628755, "GEOID": 645414, "NAME": "Manila", "NAMELSAD": "Manila CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1805140, "AWATER": 17823, "INTPTLAT": 40.8508972, "INTPTLON": -124.1631934, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -124.161987, 40.851216 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 950, "felt:has_geometry": true, "felt:h3_index": 644718618129342877, "STATEFP": 6, "PLACEFP": 36420, "PLACENS": 2628741, "GEOID": 636420, "NAME": "Indianola", "NAMELSAD": "Indianola CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3651825, "AWATER": 483, "INTPTLAT": 40.8099643, "INTPTLON": -124.0784473, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -124.079590, 40.809652 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 172, "felt:has_geometry": true, "felt:h3_index": 644718618271660166, "STATEFP": 6, "PLACEFP": 2476, "PLACENS": 2409723, "GEOID": 602476, "NAME": "Arcata", "NAMELSAD": "Arcata city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24388526, "AWATER": 5063020, "INTPTLAT": 40.8622905, "INTPTLON": -124.0749667, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -124.074097, 40.863680 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 720, "felt:has_geometry": true, "felt:h3_index": 644718618362166534, "STATEFP": 6, "PLACEFP": 17722, "PLACENS": 2408637, "GEOID": 617722, "NAME": "Cutten", "NAMELSAD": "Cutten CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3325001, "AWATER": 0, "INTPTLAT": 40.7656839, "INTPTLON": -124.1444615, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 40.763901 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1274, "felt:has_geometry": true, "felt:h3_index": 644718618387504037, "STATEFP": 6, "PLACEFP": 57204, "PLACENS": 2409067, "GEOID": 657204, "NAME": "Pine Hills", "NAMELSAD": "Pine Hills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 26200654, "AWATER": 107779, "INTPTLAT": 40.732892, "INTPTLON": -124.1610949, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -124.161987, 40.734771 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 824, "felt:has_geometry": true, "felt:h3_index": 644718618447979912, "STATEFP": 6, "PLACEFP": 23196, "PLACENS": 2628729, "GEOID": 623196, "NAME": "Fairhaven", "NAMELSAD": "Fairhaven CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1682712, "AWATER": 0, "INTPTLAT": 40.7882931, "INTPTLON": -124.2014211, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -124.200439, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 173, "felt:has_geometry": true, "felt:h3_index": 644718618483436825, "STATEFP": 6, "PLACEFP": 23042, "PLACENS": 2410463, "GEOID": 623042, "NAME": "Eureka", "NAMELSAD": "Eureka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 24777988, "AWATER": 16942072, "INTPTLAT": 40.7975938, "INTPTLON": -124.1541913, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -124.156494, 40.797177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1363, "felt:has_geometry": true, "felt:h3_index": 644718618494440300, "STATEFP": 6, "PLACEFP": 64392, "PLACENS": 2628788, "GEOID": 664392, "NAME": "Samoa", "NAMELSAD": "Samoa CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2166605, "AWATER": 0, "INTPTLAT": 40.814609, "INTPTLON": -124.1892153, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -124.189453, 40.813809 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 539, "felt:has_geometry": true, "felt:h3_index": 644718618509053075, "STATEFP": 6, "PLACEFP": 4478, "PLACENS": 2407810, "GEOID": 604478, "NAME": "Bayview", "NAMELSAD": "Bayview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1908100, "AWATER": 0, "INTPTLAT": 40.7653596, "INTPTLON": -124.1786242, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -124.178467, 40.763901 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1234, "felt:has_geometry": true, "felt:h3_index": 644718664269433441, "STATEFP": 6, "PLACEFP": 54218, "PLACENS": 2611444, "GEOID": 654218, "NAME": "Orick", "NAMELSAD": "Orick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12290818, "AWATER": 270118, "INTPTLAT": 41.2902156, "INTPTLON": -124.0703021, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 41.290190 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1089, "felt:has_geometry": true, "felt:h3_index": 644719535431090306, "STATEFP": 6, "PLACEFP": 44700, "PLACENS": 2408194, "GEOID": 644700, "NAME": "McArthur", "NAMELSAD": "McArthur CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2593485, "AWATER": 78202, "INTPTLAT": 41.0419947, "INTPTLON": -121.4052401, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -121.404419, 41.042074 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 558, "felt:has_geometry": true, "felt:h3_index": 644719536896074354, "STATEFP": 6, "PLACEFP": 6336, "PLACENS": 2582944, "GEOID": 606336, "NAME": "Bieber", "NAMELSAD": "Bieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8944480, "AWATER": 148149, "INTPTLAT": 41.1384505, "INTPTLON": -121.1170059, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -121.118774, 41.137296 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1208, "felt:has_geometry": true, "felt:h3_index": 644719537632617362, "STATEFP": 6, "PLACEFP": 52610, "PLACENS": 2628767, "GEOID": 652610, "NAME": "Nubieber", "NAMELSAD": "Nubieber CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1939993, "AWATER": 20921, "INTPTLAT": 41.0966269, "INTPTLON": -121.1821632, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -121.184692, 41.095912 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1062, "felt:has_geometry": true, "felt:h3_index": 644719539417787625, "STATEFP": 6, "PLACEFP": 41908, "PLACENS": 2611439, "GEOID": 641908, "NAME": "Little Valley", "NAMELSAD": "Little Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1076095, "AWATER": 26795, "INTPTLAT": 40.8930488, "INTPTLON": -121.1780413, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -121.179199, 40.892753 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1052, "felt:has_geometry": true, "felt:h3_index": 644719554914367770, "STATEFP": 6, "PLACEFP": 41390, "PLACENS": 2583057, "GEOID": 641390, "NAME": "Likely", "NAMELSAD": "Likely CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3441973, "AWATER": 11716, "INTPTLAT": 41.2268272, "INTPTLON": -120.5012358, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -120.503540, 41.228249 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1098, "felt:has_geometry": true, "felt:h3_index": 644719557509073669, "STATEFP": 6, "PLACEFP": 45008, "PLACENS": 2804434, "GEOID": 645008, "NAME": "Madeline", "NAMELSAD": "Madeline CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 137117, "AWATER": 0, "INTPTLAT": 41.0514103, "INTPTLON": -120.4754336, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -120.476074, 41.050360 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 631, "felt:has_geometry": true, "felt:h3_index": 644719562283701620, "STATEFP": 6, "PLACEFP": 10732, "PLACENS": 2582963, "GEOID": 610732, "NAME": "Canby", "NAMELSAD": "Canby CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5933540, "AWATER": 76979, "INTPTLAT": 41.4522933, "INTPTLON": -120.8883186, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -120.888062, 41.450961 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 486, "felt:has_geometry": true, "felt:h3_index": 644719563810683392, "STATEFP": 6, "PLACEFP": 310, "PLACENS": 2582927, "GEOID": 600310, "NAME": "Adin", "NAMELSAD": "Adin CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7587701, "AWATER": 15858, "INTPTLAT": 41.1993122, "INTPTLON": -120.9567786, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -120.959473, 41.199323 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1075, "felt:has_geometry": true, "felt:h3_index": 644719565413754960, "STATEFP": 6, "PLACEFP": 43126, "PLACENS": 2583062, "GEOID": 643126, "NAME": "Lookout", "NAMELSAD": "Lookout CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14152115, "AWATER": 322967, "INTPTLAT": 41.210401, "INTPTLON": -121.1529597, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -121.151733, 41.211722 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1226, "felt:has_geometry": true, "felt:h3_index": 644719569396630731, "STATEFP": 6, "PLACEFP": 53602, "PLACENS": 2628770, "GEOID": 653602, "NAME": "Old Station", "NAMELSAD": "Old Station CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5749143, "AWATER": 3443, "INTPTLAT": 40.6732039, "INTPTLON": -121.4133483, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -121.415405, 40.672306 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 603, "felt:has_geometry": true, "felt:h3_index": 644719576860681504, "STATEFP": 6, "PLACEFP": 9122, "PLACENS": 2407926, "GEOID": 609122, "NAME": "Burney", "NAMELSAD": "Burney CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13915869, "AWATER": 12780, "INTPTLAT": 40.8893625, "INTPTLON": -121.6754646, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -121.673584, 40.888601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 964, "felt:has_geometry": true, "felt:h3_index": 644719577030895305, "STATEFP": 6, "PLACEFP": 37442, "PLACENS": 2813351, "GEOID": 637442, "NAME": "Johnson Park", "NAMELSAD": "Johnson Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2337519, "AWATER": 0, "INTPTLAT": 40.9211789, "INTPTLON": -121.6295305, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -121.629639, 40.921814 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 829, "felt:has_geometry": true, "felt:h3_index": 644719579180700011, "STATEFP": 6, "PLACEFP": 23532, "PLACENS": 2408112, "GEOID": 623532, "NAME": "Fall River Mills", "NAMELSAD": "Fall River Mills CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6859381, "AWATER": 269074, "INTPTLAT": 41.0072414, "INTPTLON": -121.4411337, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -121.442871, 41.008921 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 645, "felt:has_geometry": true, "felt:h3_index": 644719579505466404, "STATEFP": 6, "PLACEFP": 11782, "PLACENS": 2611427, "GEOID": 611782, "NAME": "Cassel", "NAMELSAD": "Cassel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5246417, "AWATER": 193675, "INTPTLAT": 40.9250207, "INTPTLON": -121.5484758, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -121.547241, 40.925965 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 918, "felt:has_geometry": true, "felt:h3_index": 644719583149349674, "STATEFP": 6, "PLACEFP": 32408, "PLACENS": 2583033, "GEOID": 632408, "NAME": "Hat Creek", "NAMELSAD": "Hat Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 129532652, "AWATER": 442608, "INTPTLAT": 40.7898058, "INTPTLON": -121.4745149, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 40.788860 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1444, "felt:has_geometry": true, "felt:h3_index": 644719585220727168, "STATEFP": 6, "PLACEFP": 75122, "PLACENS": 2805901, "GEOID": 675122, "NAME": "Stones Landing", "NAMELSAD": "Stones Landing CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5494204, "AWATER": 0, "INTPTLAT": 40.6915486, "INTPTLON": -120.7346283, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -120.734253, 40.693134 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1429, "felt:has_geometry": true, "felt:h3_index": 644719585765267051, "STATEFP": 6, "PLACEFP": 73554, "PLACENS": 2583148, "GEOID": 673554, "NAME": "Spaulding", "NAMELSAD": "Spaulding CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8621924, "AWATER": 0, "INTPTLAT": 40.6556642, "INTPTLON": -120.7862597, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -120.783691, 40.655639 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 40, "felt:has_geometry": true, "felt:h3_index": 644719602400139557, "STATEFP": 6, "PLACEFP": 83850, "PLACENS": 2412201, "GEOID": 683850, "NAME": "Weed", "NAMELSAD": "Weed city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 12479111, "AWATER": 13340, "INTPTLAT": 41.4120866, "INTPTLON": -122.3809655, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 41.413896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 786, "felt:has_geometry": true, "felt:h3_index": 644719602563303620, "STATEFP": 6, "PLACEFP": 21530, "PLACENS": 2408045, "GEOID": 621530, "NAME": "Edgewood", "NAMELSAD": "Edgewood CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2656702, "AWATER": 12263, "INTPTLAT": 41.4607727, "INTPTLON": -122.4256868, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 638, "felt:has_geometry": true, "felt:h3_index": 644719602869519795, "STATEFP": 6, "PLACEFP": 11481, "PLACENS": 2407970, "GEOID": 611481, "NAME": "Carrick", "NAMELSAD": "Carrick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 152301, "AWATER": 0, "INTPTLAT": 41.4467465, "INTPTLON": -122.3634572, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 41.446844 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 875, "felt:has_geometry": true, "felt:h3_index": 644719603752455388, "STATEFP": 6, "PLACEFP": 29252, "PLACENS": 2408286, "GEOID": 629252, "NAME": "Gazelle", "NAMELSAD": "Gazelle CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1739436, "AWATER": 1757, "INTPTLAT": 41.5118701, "INTPTLON": -122.5219457, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 41.512691 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1022, "felt:has_geometry": true, "felt:h3_index": 644719606499957170, "STATEFP": 6, "PLACEFP": 39728, "PLACENS": 2805902, "GEOID": 639728, "NAME": "Lake Shastina", "NAMELSAD": "Lake Shastina CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 10393370, "AWATER": 2563420, "INTPTLAT": 41.5231272, "INTPTLON": -122.3763662, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 41.525030 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 300, "felt:has_geometry": true, "felt:h3_index": 644719609596492310, "STATEFP": 6, "PLACEFP": 49852, "PLACENS": 2411181, "GEOID": 649852, "NAME": "Mount Shasta", "NAMELSAD": "Mount Shasta city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 9754373, "AWATER": 9660, "INTPTLAT": 41.3208797, "INTPTLON": -122.3154809, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.316284, 41.319076 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 314, "felt:has_geometry": true, "felt:h3_index": 644719613690727203, "STATEFP": 6, "PLACEFP": 86944, "PLACENS": 2412324, "GEOID": 686944, "NAME": "Yreka", "NAMELSAD": "Yreka city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 25861889, "AWATER": 188154, "INTPTLAT": 41.7240335, "INTPTLON": -122.6315699, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 39, "felt:has_geometry": true, "felt:h3_index": 644719614003651185, "STATEFP": 6, "PLACEFP": 48690, "PLACENS": 2411140, "GEOID": 648690, "NAME": "Montague", "NAMELSAD": "Montague city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4604513, "AWATER": 39458, "INTPTLAT": 41.7270878, "INTPTLON": -122.5305115, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 41.726230 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 38, "felt:has_geometry": true, "felt:h3_index": 644719616714914477, "STATEFP": 6, "PLACEFP": 25128, "PLACENS": 2410527, "GEOID": 625128, "NAME": "Fort Jones", "NAMELSAD": "Fort Jones city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1559876, "AWATER": 0, "INTPTLAT": 41.6084521, "INTPTLON": -122.8410656, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.843628, 41.607228 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 900, "felt:has_geometry": true, "felt:h3_index": 644719617245522853, "STATEFP": 6, "PLACEFP": 31134, "PLACENS": 2408333, "GEOID": 631134, "NAME": "Greenview", "NAMELSAD": "Greenview CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3354179, "AWATER": 218772, "INTPTLAT": 41.5449224, "INTPTLON": -122.9209638, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.920532, 41.545589 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 902, "felt:has_geometry": true, "felt:h3_index": 644719617777944278, "STATEFP": 6, "PLACEFP": 31246, "PLACENS": 2408337, "GEOID": 631246, "NAME": "Grenada", "NAMELSAD": "Grenada CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1335962, "AWATER": 3010, "INTPTLAT": 41.6401003, "INTPTLON": -122.5266271, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 41.640078 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1476, "felt:has_geometry": true, "felt:h3_index": 644719619704741017, "STATEFP": 6, "PLACEFP": 78176, "PLACENS": 2410067, "GEOID": 678176, "NAME": "Tennant", "NAMELSAD": "Tennant CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 878560, "AWATER": 1194, "INTPTLAT": 41.5788841, "INTPTLON": -121.9174644, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -121.915283, 41.578471 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1093, "felt:has_geometry": true, "felt:h3_index": 644719631186676889, "STATEFP": 6, "PLACEFP": 44812, "PLACENS": 2408156, "GEOID": 644812, "NAME": "Macdoel", "NAMELSAD": "Macdoel CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 432723, "AWATER": 0, "INTPTLAT": 41.8261734, "INTPTLON": -122.0058849, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 41.824549 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1176, "felt:has_geometry": true, "felt:h3_index": 644719635111010990, "STATEFP": 6, "PLACEFP": 49768, "PLACENS": 2408876, "GEOID": 649768, "NAME": "Mount Hebron", "NAMELSAD": "Mount Hebron CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1922181, "AWATER": 0, "INTPTLAT": 41.785628, "INTPTLON": -122.0079795, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.008667, 41.783601 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 686, "felt:has_geometry": true, "felt:h3_index": 644719637833025609, "STATEFP": 6, "PLACEFP": 14406, "PLACENS": 2582977, "GEOID": 614406, "NAME": "Coffee Creek", "NAMELSAD": "Coffee Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 29833225, "AWATER": 48535, "INTPTLAT": 41.0796733, "INTPTLON": -122.716906, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.717285, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1497, "felt:has_geometry": true, "felt:h3_index": 644719642529950797, "STATEFP": 6, "PLACEFP": 80476, "PLACENS": 2583167, "GEOID": 680476, "NAME": "Trinity Center", "NAMELSAD": "Trinity Center CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13547616, "AWATER": 0, "INTPTLAT": 40.9840636, "INTPTLON": -122.7083246, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.706299, 40.984045 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1011, "felt:has_geometry": true, "felt:h3_index": 644719643816705163, "STATEFP": 6, "PLACEFP": 39514, "PLACENS": 2408556, "GEOID": 639514, "NAME": "Lakehead", "NAMELSAD": "Lakehead CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12160323, "AWATER": 1511480, "INTPTLAT": 40.9034358, "INTPTLON": -122.3996577, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 40.905210 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 37, "felt:has_geometry": true, "felt:h3_index": 644719648604727949, "STATEFP": 6, "PLACEFP": 22972, "PLACENS": 2410458, "GEOID": 622972, "NAME": "Etna", "NAMELSAD": "Etna city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1984757, "AWATER": 2444, "INTPTLAT": 41.4581989, "INTPTLON": -122.8958191, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.898560, 41.459195 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 36, "felt:has_geometry": true, "felt:h3_index": 644719655223859273, "STATEFP": 6, "PLACEFP": 20242, "PLACENS": 2410372, "GEOID": 620242, "NAME": "Dunsmuir", "NAMELSAD": "Dunsmuir city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 4155427, "AWATER": 91444, "INTPTLAT": 41.231526, "INTPTLON": -122.2709386, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.272339, 41.232380 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1092, "felt:has_geometry": true, "felt:h3_index": 644719655508391001, "STATEFP": 6, "PLACEFP": 44784, "PLACENS": 2408196, "GEOID": 644784, "NAME": "McCloud", "NAMELSAD": "McCloud CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6273613, "AWATER": 170633, "INTPTLAT": 41.2547389, "INTPTLON": -122.1362211, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.135010, 41.253032 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 647, "felt:has_geometry": true, "felt:h3_index": 644719655759495833, "STATEFP": 6, "PLACEFP": 11824, "PLACENS": 2813347, "GEOID": 611824, "NAME": "Castella", "NAMELSAD": "Castella CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2898121, "AWATER": 173038, "INTPTLAT": 41.1772527, "INTPTLON": -122.2872374, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.288818, 41.178654 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 560, "felt:has_geometry": true, "felt:h3_index": 644719658497383694, "STATEFP": 6, "PLACEFP": 6475, "PLACENS": 2407839, "GEOID": 606475, "NAME": "Big Bend", "NAMELSAD": "Big Bend CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14852515, "AWATER": 230960, "INTPTLAT": 41.0116239, "INTPTLON": -121.9304344, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -121.931763, 41.013066 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1187, "felt:has_geometry": true, "felt:h3_index": 644719683479093780, "STATEFP": 6, "PLACEFP": 51168, "PLACENS": 2583092, "GEOID": 651168, "NAME": "New Pine Creek", "NAMELSAD": "New Pine Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5870148, "AWATER": 0, "INTPTLAT": 41.9872704, "INTPTLON": -120.3009638, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -120.300293, 41.988077 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 850, "felt:has_geometry": true, "felt:h3_index": 644719686301103334, "STATEFP": 6, "PLACEFP": 25030, "PLACENS": 2583014, "GEOID": 625030, "NAME": "Fort Bidwell", "NAMELSAD": "Fort Bidwell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8299175, "AWATER": 43567, "INTPTLAT": 41.8633015, "INTPTLON": -120.1593945, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -120.157471, 41.861379 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 764, "felt:has_geometry": true, "felt:h3_index": 644719709431437988, "STATEFP": 6, "PLACEFP": 20424, "PLACENS": 2628727, "GEOID": 620424, "NAME": "Eagleville", "NAMELSAD": "Eagleville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2525306, "AWATER": 0, "INTPTLAT": 41.3189931, "INTPTLON": -120.1146071, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -120.113525, 41.319076 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 723, "felt:has_geometry": true, "felt:h3_index": 644719715936167001, "STATEFP": 6, "PLACEFP": 17995, "PLACENS": 2582990, "GEOID": 617995, "NAME": "Daphnedale Park", "NAMELSAD": "Daphnedale Park CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 2142441, "AWATER": 4621, "INTPTLAT": 41.5068637, "INTPTLON": -120.548069, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -120.547485, 41.508577 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 384, "felt:has_geometry": true, "felt:h3_index": 644719716002435619, "STATEFP": 6, "PLACEFP": 1444, "PLACENS": 2409688, "GEOID": 601444, "NAME": "Alturas", "NAMELSAD": "Alturas city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 7345639, "AWATER": 46987, "INTPTLAT": 41.4891359, "INTPTLON": -120.5512862, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -120.552979, 41.488006 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1008, "felt:has_geometry": true, "felt:h3_index": 644719716665661684, "STATEFP": 6, "PLACEFP": 39472, "PLACENS": 2583049, "GEOID": 639472, "NAME": "Lake City", "NAMELSAD": "Lake City CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 15065516, "AWATER": 6524, "INTPTLAT": 41.6453171, "INTPTLON": -120.222097, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -120.223389, 41.644183 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 657, "felt:has_geometry": true, "felt:h3_index": 644719717021977715, "STATEFP": 6, "PLACEFP": 12328, "PLACENS": 2582971, "GEOID": 612328, "NAME": "Cedarville", "NAMELSAD": "Cedarville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 14095280, "AWATER": 8675, "INTPTLAT": 41.5286833, "INTPTLON": -120.1744329, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -120.173950, 41.529142 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 613, "felt:has_geometry": true, "felt:h3_index": 644719720153001358, "STATEFP": 6, "PLACEFP": 9834, "PLACENS": 2582955, "GEOID": 609834, "NAME": "California Pines", "NAMELSAD": "California Pines CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 19236734, "AWATER": 366425, "INTPTLAT": 41.413786, "INTPTLON": -120.6653096, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -120.662842, 41.413896 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1186, "felt:has_geometry": true, "felt:h3_index": 644719745745081189, "STATEFP": 6, "PLACEFP": 51042, "PLACENS": 2583091, "GEOID": 651042, "NAME": "Newell", "NAMELSAD": "Newell CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 6233913, "AWATER": 14912, "INTPTLAT": 41.8887312, "INTPTLON": -121.3602488, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -121.360474, 41.890010 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 299, "felt:has_geometry": true, "felt:h3_index": 644719784625908842, "STATEFP": 6, "PLACEFP": 19584, "PLACENS": 2410347, "GEOID": 619584, "NAME": "Dorris", "NAMELSAD": "Dorris city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1819374, "AWATER": 40653, "INTPTLAT": 41.9649654, "INTPTLON": -121.9203865, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -121.920776, 41.963575 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 60, "felt:has_geometry": true, "felt:h3_index": 644719785796805700, "STATEFP": 6, "PLACEFP": 80686, "PLACENS": 2412108, "GEOID": 680686, "NAME": "Tulelake", "NAMELSAD": "Tulelake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 1061321, "AWATER": 6167, "INTPTLAT": 41.9534596, "INTPTLON": -121.4748966, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -121.475830, 41.955405 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1600, "felt:has_geometry": true, "felt:h3_index": 644719887123175302, "STATEFP": 6, "PLACEFP": 83794, "PLACENS": 2409537, "GEOID": 683794, "NAME": "Weaverville", "NAMELSAD": "Weaverville CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 33363065, "AWATER": 0, "INTPTLAT": 40.7406549, "INTPTLON": -122.9290224, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.931519, 40.738933 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1599, "felt:has_geometry": true, "felt:h3_index": 644719887281349729, "STATEFP": 6, "PLACEFP": 41278, "PLACENS": 2408603, "GEOID": 641278, "NAME": "Lewiston", "NAMELSAD": "Lewiston CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 51843522, "AWATER": 0, "INTPTLAT": 40.6969309, "INTPTLON": -122.8225094, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.821655, 40.697299 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 861, "felt:has_geometry": true, "felt:h3_index": 644719888692847857, "STATEFP": 6, "PLACEFP": 26056, "PLACENS": 2408262, "GEOID": 626056, "NAME": "French Gulch", "NAMELSAD": "French Gulch CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31940354, "AWATER": 94840, "INTPTLAT": 40.7187929, "INTPTLON": -122.6293566, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.629395, 40.718119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 967, "felt:has_geometry": true, "felt:h3_index": 644719903786844169, "STATEFP": 6, "PLACEFP": 37533, "PLACENS": 2813352, "GEOID": 637533, "NAME": "Jones Valley", "NAMELSAD": "Jones Valley CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 16659447, "AWATER": 14027, "INTPTLAT": 40.7013152, "INTPTLON": -122.2420038, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.239380, 40.701464 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1160, "felt:has_geometry": true, "felt:h3_index": 644719905524223196, "STATEFP": 6, "PLACEFP": 48998, "PLACENS": 2408863, "GEOID": 648998, "NAME": "Montgomery Creek", "NAMELSAD": "Montgomery Creek CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8536890, "AWATER": 11338, "INTPTLAT": 40.8428384, "INTPTLON": -121.9206607, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -121.920776, 40.842905 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1349, "felt:has_geometry": true, "felt:h3_index": 644719906000834627, "STATEFP": 6, "PLACEFP": 63134, "PLACENS": 2409216, "GEOID": 663134, "NAME": "Round Mountain", "NAMELSAD": "Round Mountain CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 4342857, "AWATER": 17581, "INTPTLAT": 40.7974631, "INTPTLON": -121.9379875, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -121.937256, 40.797177 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 274, "felt:has_geometry": true, "felt:h3_index": 644719908610551070, "STATEFP": 6, "PLACEFP": 71225, "PLACENS": 2411877, "GEOID": 671225, "NAME": "Shasta Lake", "NAMELSAD": "Shasta Lake city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 28229509, "AWATER": 14724, "INTPTLAT": 40.6765637, "INTPTLON": -122.3809091, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 40.676472 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 547, "felt:has_geometry": true, "felt:h3_index": 644719908744222592, "STATEFP": 6, "PLACEFP": 4926, "PLACENS": 2582942, "GEOID": 604926, "NAME": "Bella Vista", "NAMELSAD": "Bella Vista CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 68485004, "AWATER": 508710, "INTPTLAT": 40.6512049, "INTPTLON": -122.2563699, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.255859, 40.651471 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1168, "felt:has_geometry": true, "felt:h3_index": 644719908809770788, "STATEFP": 6, "PLACEFP": 49558, "PLACENS": 2628760, "GEOID": 649558, "NAME": "Mountain Gate", "NAMELSAD": "Mountain Gate CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5115620, "AWATER": 0, "INTPTLAT": 40.7184558, "INTPTLON": -122.3262249, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.327271, 40.718119 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1213, "felt:has_geometry": true, "felt:h3_index": 644719909505289381, "STATEFP": 6, "PLACEFP": 53140, "PLACENS": 2813353, "GEOID": 653140, "NAME": "Oak Run", "NAMELSAD": "Oak Run CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 7803833, "AWATER": 12670, "INTPTLAT": 40.6941964, "INTPTLON": -122.0250083, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.025146, 40.693134 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 910, "felt:has_geometry": true, "felt:h3_index": 644720381597798566, "STATEFP": 6, "PLACEFP": 32030, "PLACENS": 2611423, "GEOID": 632030, "NAME": "Happy Camp", "NAMELSAD": "Happy Camp CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 31357295, "AWATER": 618829, "INTPTLAT": 41.8158932, "INTPTLON": -123.3927961, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -123.392944, 41.816361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 983, "felt:has_geometry": true, "felt:h3_index": 644720397047770401, "STATEFP": 6, "PLACEFP": 38177, "PLACENS": 2813399, "GEOID": 638177, "NAME": "Kep'el", "NAMELSAD": "Kep'el CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 9442634, "AWATER": 0, "INTPTLAT": 41.2841423, "INTPTLON": -123.8190065, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -123.821411, 41.286062 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1544, "felt:has_geometry": true, "felt:h3_index": 644720397144171416, "STATEFP": 6, "PLACEFP": 83730, "PLACENS": 2805900, "GEOID": 683730, "NAME": "Wautec", "NAMELSAD": "Wautec CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 5973832, "AWATER": 0, "INTPTLAT": 41.3543145, "INTPTLON": -123.8622878, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -123.859863, 41.356196 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 157, "felt:has_geometry": true, "felt:h3_index": 644720401678927874, "STATEFP": 6, "PLACEFP": 17022, "PLACENS": 2410262, "GEOID": 617022, "NAME": "Crescent City", "NAMELSAD": "Crescent City city", "LSAD": 25, "CLASSFP": "C1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4110", "FUNCSTAT": "A", "ALAND": 5084451, "AWATER": 1170287, "INTPTLAT": 41.7645143, "INTPTLON": -124.2007785, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -124.200439, 41.763117 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 556, "felt:has_geometry": true, "felt:h3_index": 644720401727131841, "STATEFP": 6, "PLACEFP": 6150, "PLACENS": 2407832, "GEOID": 606150, "NAME": "Bertsch-Oceanview", "NAMELSAD": "Bertsch-Oceanview CDP", "LSAD": 57, "CLASSFP": "U2", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 13659961, "AWATER": 776446, "INTPTLAT": 41.7517274, "INTPTLON": -124.1702139, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -124.167480, 41.750824 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 874, "felt:has_geometry": true, "felt:h3_index": 644720403911032021, "STATEFP": 6, "PLACEFP": 29154, "PLACENS": 2611434, "GEOID": 629154, "NAME": "Gasquet", "NAMELSAD": "Gasquet CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 12318649, "AWATER": 171875, "INTPTLAT": 41.8360753, "INTPTLON": -123.9760308, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -123.975220, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 929, "felt:has_geometry": true, "felt:h3_index": 644720404104548882, "STATEFP": 6, "PLACEFP": 33935, "PLACENS": 2611435, "GEOID": 633935, "NAME": "Hiouchi", "NAMELSAD": "Hiouchi CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 1501797, "AWATER": 0, "INTPTLAT": 41.7936644, "INTPTLON": -124.0661133, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -124.068604, 41.791793 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 851, "felt:has_geometry": true, "felt:h3_index": 644720404510817413, "STATEFP": 6, "PLACEFP": 25086, "PLACENS": 2611432, "GEOID": 625086, "NAME": "Fort Dick", "NAMELSAD": "Fort Dick CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 8331464, "AWATER": 662, "INTPTLAT": 41.8695264, "INTPTLON": -124.1672064, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -124.167480, 41.869561 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 1414, "felt:has_geometry": true, "felt:h3_index": 644720404921656548, "STATEFP": 6, "PLACEFP": 72380, "PLACENS": 2611450, "GEOID": 672380, "NAME": "Smith River", "NAMELSAD": "Smith River CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 11461740, "AWATER": 38079, "INTPTLAT": 41.923802, "INTPTLON": -124.1478252, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -124.145508, 41.922716 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 991, "felt:has_geometry": true, "felt:h3_index": 644720408322448306, "STATEFP": 6, "PLACEFP": 38702, "PLACENS": 2408492, "GEOID": 638702, "NAME": "Klamath", "NAMELSAD": "Klamath CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 44592620, "AWATER": 0, "INTPTLAT": 41.5728585, "INTPTLON": -124.0556058, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -124.057617, 41.574361 ] } } +, +{ "type": "Feature", "properties": { "felt:feature": 939, "felt:has_geometry": true, "felt:h3_index": 644720535259223248, "STATEFP": 6, "PLACEFP": 34694, "PLACENS": 2408401, "GEOID": 634694, "NAME": "Hornbrook", "NAMELSAD": "Hornbrook CDP", "LSAD": 57, "CLASSFP": "U1", "PCICBSA": "", "PCINECTA": "", "MTFCC": "G4210", "FUNCSTAT": "S", "ALAND": 3017332, "AWATER": 29395, "INTPTLAT": 41.9045054, "INTPTLON": -122.5583187, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.557983, 41.906365 ] } } +] } +] } +] } diff --git a/tile.cpp b/tile.cpp index 6c4ceaf09..b81bb9529 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1255,6 +1255,11 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * } else if (preserve_multiplier_density_threshold > 0 && sf.index - next_feature_state.prev_not_dropped_index > ((1LL << (32 - z)) / preserve_multiplier_density_threshold) * ((1LL << (32 - z)) / preserve_multiplier_density_threshold)) { sf.dropped = FEATURE_ADDED_FOR_MULTIPLIER_DENSITY; + } else if (preserve_multiplier_density_bits_by_zoom.size() > 0 && + (size_t) z < preserve_multiplier_density_bits_by_zoom.size() && + (sf.index >> (64 - preserve_multiplier_density_bits_by_zoom[z])) != + (next_feature_state.prev_not_dropped_index >> (64 - preserve_multiplier_density_bits_by_zoom[z]))) { + sf.dropped = FEATURE_ADDED_FOR_MULTIPLIER_DENSITY; } else { sf.dropped = FEATURE_DROPPED; }